From 2083d52d3e44823a12456ffe62ecb9996173cd4e Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 6 Mar 2023 11:23:32 -0500 Subject: [PATCH 01/51] WIP move to Node18 --- .nvmrc | 2 +- lib/es-client.js | 76 + lib/preflight_check.js | 2 +- lib/resources.js | 10 +- package-lock.json | 4443 +++++++++++++++++++++++----------------- package.json | 4 +- 6 files changed, 2594 insertions(+), 1943 deletions(-) create mode 100644 lib/es-client.js diff --git a/.nvmrc b/.nvmrc index 3c024323..3c032078 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -6.10.3 +18 diff --git a/lib/es-client.js b/lib/es-client.js new file mode 100644 index 00000000..2aba3d01 --- /dev/null +++ b/lib/es-client.js @@ -0,0 +1,76 @@ +const { Client } = require('@elastic/elasticsearch') +const { deepValue } = require('./util') + +const clientWrapper = {} + +/** + * Get an ES base client + */ +clientWrapper.esClient = function () { + if (!this._esClient) { + const node = process.env.ELASTICSEARCH_NODE + console.log(`Connecting to ${node}`) + this._esClient = new Client({ node }) + } + return this._esClient +}.bind(clientWrapper) + +/** + * Given an es request body (typically including a `query` property), queries + * the configured ES + */ +clientWrapper.search = function (body) { + console.log('Searching: ', body) + return this.esClient().search({ + index: process.env.RESOURCES_INDEX, + body + }) +}.bind(clientWrapper) + +/** + * Given a bnum, returns item statuses as an array of ES aggregation buckets + */ +clientWrapper.nonRecapItemStatusAggregation = (bnum) => { + const esQuery = { + size: 0, + query: { bool: { must: [ { term: { + uris: bnum + } } ] } }, + _source: { includes: [ 'uri' ] }, + aggs: { + statuses: { + nested: { + path: 'items' + }, + aggs: { + nonrecap_statuses: { + filter: { + bool: { + must_not: { + regexp: { + 'items.holdingLocation.id': 'loc:rc.*' + } + } + } + }, + aggs: { + nonrecap_status_buckets: { + terms: { + size: 100, + field: 'items.status_packed' + } + } + } + } + } + } + } + } + + return clientWrapper.search(esQuery) + .then((resp) => { + return deepValue(resp, 'aggregations.statuses.nonrecap_statuses.nonrecap_status_buckets.buckets') + }) +} + +module.exports = clientWrapper diff --git a/lib/preflight_check.js b/lib/preflight_check.js index afe7624f..d57a3c2e 100644 --- a/lib/preflight_check.js +++ b/lib/preflight_check.js @@ -3,7 +3,7 @@ let logger = require('./logger') const requiredEnvVars = { 'SCSB_URL': process.env.SCSB_URL, 'SCSB_API_KEY': process.env.SCSB_API_KEY, - 'ELASTICSEARCH_HOST': process.env.ELASTICSEARCH_HOST, + 'ELASTICSEARCH_NODE': process.env.ELASTICSEARCH_NODE, 'RESOURCES_INDEX': process.env.RESOURCES_INDEX, 'NYPL_API_BASE_URL': process.env.NYPL_API_BASE_URL, 'NYPL_OAUTH_URL': process.env.NYPL_OAUTH_URL, diff --git a/lib/resources.js b/lib/resources.js index fb419d8a..553af6f5 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -414,10 +414,12 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#search', RESOURCES_INDEX, body) - return app.esClient.search({ - index: RESOURCES_INDEX, - body: body - }).then((resp) => { + console.log('About to search...') + return app.esClient.search(body) + .catch((e) => { + console.log('Got errorrrrrror: ', e) + }) + .then((resp) => { if (shouldAddInnerHits) { resp.hits.hits.forEach((hit) => { if (hit.inner_hits) { diff --git a/package-lock.json b/package-lock.json index 0be597ec..2e89b919 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,23 +1,95 @@ { "name": "discovery-api", "version": "1.1.2", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@nypl/nypl-core-objects": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@nypl/nypl-core-objects/-/nypl-core-objects-1.3.2.tgz", - "integrity": "sha512-GUXPyjpsRkrv533TZ/eORlYtEQyzPhOpC8+S4fsAiQSIsnIixlxj2pJIMAgDZl/qfoVXzdckKaQSFslJenwXng==", - "requires": { + "packages": { + "": { + "name": "discovery-api", + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "@elastic/elasticsearch": "^5.6.22", + "@nypl/nypl-core-objects": "1.4.0", + "@nypl/nypl-data-api-client": "^1.0.1", + "@nypl/scsb-rest-client": "1.0.6", + "config": "1.12.0", + "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", + "dotenv": "^4.0.0", + "express": "^4.14.0", + "fast-csv": "^2.3.0", + "jsonld": "^2.0.2", + "nypl-registry-utils-lexicon": "nypl-registry/utils-lexicon", + "ramda": "^0.21.0", + "request": "2.88.2", + "string_score": "^0.1.22", + "winston": "2.3.1" + }, + "devDependencies": { + "chai": "^4.1.2", + "md5": "^2.2.1", + "minimist": "^1.2.5", + "mocha": "^6.2.3", + "qs": "^6.5.1", + "request-promise": "^4.1.1", + "should": "^7.0.2", + "sinon": "^4.3.0", + "standard": "^6.0.8" + } + }, + "node_modules/@elastic/elasticsearch": { + "version": "5.6.22", + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.1", + "decompress-response": "^4.2.0", + "into-stream": "^5.1.0", + "ms": "^2.1.1", + "once": "^1.4.0", + "pump": "^3.0.0", + "secure-json-parse": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@elastic/elasticsearch/node_modules/debug": { + "version": "4.3.4", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@elastic/elasticsearch/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/@elastic/elasticsearch/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "node_modules/@nypl/nypl-core-objects": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "csv": "^5.3.2", + "csv-stringify": "^5.6.0", "just-flatten": "^1.0.0", - "sync-request": "^4.1.0" + "sync-request": "^6.1.0" } }, - "@nypl/nypl-data-api-client": { + "node_modules/@nypl/nypl-data-api-client": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@nypl/nypl-data-api-client/-/nypl-data-api-client-1.0.1.tgz", - "integrity": "sha512-g55PNKByo8gJiO9wjbO/isHjeaqtS+QO+dSZ2KkVZjXt8lKJaHigOxgAss9csyoKqH+B3g0U4NTgHT7z9I+VZg==", - "requires": { + "license": "ISC", + "dependencies": { "avsc": "^5.0.2", "colors": "^1.1.2", "diff": "^3.2.0", @@ -29,252 +101,282 @@ "oauth": "^0.9.15", "prompt": "^1.0.0", "request": "^2.88.2" + }, + "bin": { + "nypl-data-api": "bin/nypl-data-api.js" } }, - "@nypl/scsb-rest-client": { + "node_modules/@nypl/scsb-rest-client": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@nypl/scsb-rest-client/-/scsb-rest-client-1.0.6.tgz", - "integrity": "sha512-T7XxIRiiJ5NiaDYpuOvERath+rgcjxgJ1LGrcV7MNZAxgGLfBht447toqs1Elbj1wNyPDoimBiERMg5r2ZE6/w==", - "requires": { + "license": "MIT", + "dependencies": { "request": "^2.88.2" } }, - "@sinonjs/commons": { + "node_modules/@sinonjs/commons": { "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.7.2.tgz", - "integrity": "sha512-+DUO6pnp3udV/v2VfUWgaY5BIE1IfT7lLfeDzPVeMT1XKkaAp9LgSI9x5RtrFQoZ9Oi0PgXQQHPaoKu7dCjVxw==", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "type-detect": "4.0.8" } }, - "@sinonjs/formatio": { + "node_modules/@sinonjs/formatio": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-2.0.0.tgz", - "integrity": "sha1-hNt+nrVTHfGKjF4L+25EnlXmVLI=", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "samsam": "1.3.0" } }, - "@sinonjs/samsam": { + "node_modules/@sinonjs/samsam": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.3.tgz", - "integrity": "sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ==", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "@sinonjs/commons": "^1.3.0", "array-from": "^2.1.1", "lodash": "^4.17.15" } }, - "@sinonjs/text-encoding": { + "node_modules/@sinonjs/text-encoding": { "version": "0.7.1", - "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz", - "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==", - "dev": true + "dev": true, + "license": "(Unlicense OR Apache-2.0)" + }, + "node_modules/@types/concat-stream": { + "version": "1.6.1", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/form-data": { + "version": "0.0.33", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "10.17.60", + "license": "MIT" }, - "accepts": { + "node_modules/@types/qs": { + "version": "6.9.7", + "license": "MIT" + }, + "node_modules/accepts": { "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", - "requires": { + "license": "MIT", + "dependencies": { "mime-types": "~2.1.18", "negotiator": "0.6.1" + }, + "engines": { + "node": ">= 0.6" } }, - "acorn": { + "node_modules/acorn": { "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "acorn-jsx": { + "node_modules/acorn-jsx": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "requires": { - "acorn": "^3.0.4" - }, + "license": "MIT", "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } + "acorn": "^3.0.4" } }, - "agentkeepalive": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.4.1.tgz", - "integrity": "sha512-MPIwsZU9PP9kOrZpyu2042kYA8Fdt/AedQYkYXucHgF9QoD9dXVp0ypuGnHXSR0hTstBxdt85Xkh4JolYfK5wg==", - "requires": { - "humanize-ms": "^1.2.1" + "node_modules/acorn-jsx/node_modules/acorn": { + "version": "3.3.0", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "ajv": { + "node_modules/ajv": { "version": "6.12.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", - "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", - "requires": { + "license": "MIT", + "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, - "ajv-keywords": { + "node_modules/ajv-keywords": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", - "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=" + "license": "MIT", + "peerDependencies": { + "ajv": ">=4.10.0" + } }, - "ansi-colors": { + "node_modules/ansi-colors": { "version": "3.2.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", - "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "ansi-escapes": { + "node_modules/ansi-escapes": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "ansi-regex": { + "node_modules/ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "ansi-styles": { + "node_modules/ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "argparse": { + "node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", - "requires": { + "license": "MIT", + "dependencies": { "sprintf-js": "~1.0.2" } }, - "arguments-extended": { + "node_modules/arguments-extended": { "version": "0.0.3", - "resolved": "https://registry.npmjs.org/arguments-extended/-/arguments-extended-0.0.3.tgz", - "integrity": "sha1-YQfkkX0OtvCk3WYyD8Fa/HLvSUY=", - "requires": { + "license": "MIT", + "dependencies": { "extended": "~0.0.3", "is-extended": "~0.0.8" } }, - "array-extended": { + "node_modules/array-extended": { "version": "0.0.11", - "resolved": "https://registry.npmjs.org/array-extended/-/array-extended-0.0.11.tgz", - "integrity": "sha1-1xRK50jek8pybxIQCdv/FibRZL0=", - "requires": { + "license": "MIT", + "dependencies": { "arguments-extended": "~0.0.3", "extended": "~0.0.3", "is-extended": "~0.0.3" } }, - "array-flatten": { + "node_modules/array-flatten": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "license": "MIT" }, - "array-from": { + "node_modules/array-from": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz", - "integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=", - "dev": true + "dev": true, + "license": "MIT" }, - "array-union": { + "node_modules/array-union": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "requires": { + "license": "MIT", + "dependencies": { "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "array-uniq": { + "node_modules/array-uniq": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "arrify": { + "node_modules/arrify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "asap": { + "node_modules/asap": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "license": "MIT" }, - "asn1": { + "node_modules/asn1": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + "license": "MIT" }, - "assert-plus": { + "node_modules/assert-plus": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + "license": "MIT", + "engines": { + "node": ">=0.8" + } }, - "assertion-error": { + "node_modules/assertion-error": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha1-5gtrDo8wG9l+U3UhW9pAbIURjAs=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } }, - "async": { + "node_modules/async": { "version": "0.9.2", - "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + "license": "MIT" }, - "asynckit": { + "node_modules/asynckit": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "license": "MIT" }, - "avsc": { + "node_modules/avsc": { "version": "5.4.21", - "resolved": "https://registry.npmjs.org/avsc/-/avsc-5.4.21.tgz", - "integrity": "sha512-Vr733yyksCfwwXVZ6WjgttDF1TLlUeYWBJDHpO61qeOo6GnaIaVRiJ64ZgpwXfFtbPv1fCuLFV0qz++QUFCZPw==" + "license": "MIT", + "engines": { + "node": ">=0.11" + } }, - "aws-sign2": { + "node_modules/aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + "license": "Apache-2.0", + "engines": { + "node": "*" + } }, - "aws4": { + "node_modules/aws4": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", - "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + "license": "MIT" }, - "balanced-match": { + "node_modules/balanced-match": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "license": "MIT" }, - "bcrypt-pbkdf": { + "node_modules/bcrypt-pbkdf": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", + "license": "BSD-3-Clause", "optional": true, - "requires": { + "dependencies": { "tweetnacl": "^0.14.3" } }, - "bluebird": { + "node_modules/bluebird": { "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha1-2VUfnemPH82h5oPRfukaBgLuLrk=", - "dev": true + "dev": true, + "license": "MIT" }, - "body-parser": { + "node_modules/body-parser": { "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "requires": { + "license": "MIT", + "dependencies": { "bytes": "3.0.0", "content-type": "~1.0.4", "debug": "2.6.9", @@ -286,377 +388,446 @@ "raw-body": "2.3.2", "type-is": "~1.6.15" }, - "dependencies": { - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha1-NJzfbu+J7EXBLX1es/wMhwNDptg=" - } + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.5.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" } }, - "brace-expansion": { + "node_modules/brace-expansion": { "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", - "requires": { + "license": "MIT", + "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, - "browser-stdout": { + "node_modules/browser-stdout": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "dev": true + "dev": true, + "license": "ISC" }, - "buffer-from": { + "node_modules/buffer-from": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz", - "integrity": "sha1-TLiDLSNhJYmwQG6eKVbBfwb99TE=" + "license": "MIT" }, - "buffer-writer": { + "node_modules/buffer-writer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-1.0.1.tgz", - "integrity": "sha1-Iqk2kB4wKa/NdUfrRIfOtpejvwg=" + "license": "MIT" }, - "bytes": { + "node_modules/bytes": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "caller-path": { + "node_modules/caller-path": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", - "requires": { + "license": "MIT", + "dependencies": { "callsites": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "callsites": { + "node_modules/callsites": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "camelcase": { + "node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "canonicalize": { + "node_modules/canonicalize": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.1.tgz", - "integrity": "sha512-N3cmB3QLhS5TJ5smKFf1w42rJXWe6C1qP01z4dxJiI5v269buii4fLHWETDyf7yEd0azGLNC63VxNMiPd2u0Cg==" + "license": "Apache-2.0" }, - "caseless": { + "node_modules/caseless": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + "license": "Apache-2.0" }, - "chai": { + "node_modules/chai": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz", - "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "assertion-error": "^1.0.1", "check-error": "^1.0.1", "deep-eql": "^3.0.0", "get-func-name": "^2.0.0", "pathval": "^1.0.0", "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=4" } }, - "chalk": { + "node_modules/chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { + "license": "MIT", + "dependencies": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", "has-ansi": "^2.0.0", "strip-ansi": "^3.0.0", "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "charenc": { + "node_modules/charenc": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", - "dev": true + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } }, - "check-error": { + "node_modules/check-error": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", - "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } }, - "circular-json": { + "node_modules/circular-json": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=" + "deprecated": "CircularJSON is in maintenance only, flatted is its successor.", + "license": "MIT" }, - "cli-cursor": { + "node_modules/cli-cursor": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", - "requires": { + "license": "MIT", + "dependencies": { "restore-cursor": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "cli-width": { + "node_modules/cli-width": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" + "license": "ISC" }, - "cliui": { + "node_modules/cliui": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "string-width": "^3.1.0", "strip-ansi": "^5.2.0", "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" } }, - "clone": { + "node_modules/clone": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + "license": "MIT", + "engines": { + "node": ">=0.8" + } }, - "co": { + "node_modules/co": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } }, - "code-point-at": { + "node_modules/code-point-at": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "color-convert": { + "node_modules/color-convert": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "color-name": "1.1.3" } }, - "color-name": { + "node_modules/color-name": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "dev": true, + "license": "MIT" }, - "colors": { + "node_modules/colors": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } }, - "combined-stream": { + "node_modules/combined-stream": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", - "requires": { + "license": "MIT", + "dependencies": { "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, - "concat-map": { + "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "license": "MIT" }, - "concat-stream": { + "node_modules/concat-stream": { "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=", - "requires": { + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" } }, - "config": { + "node_modules/config": { "version": "1.12.0", - "resolved": "https://registry.npmjs.org/config/-/config-1.12.0.tgz", - "integrity": "sha1-Aq0dgWyS1tqxxxPXNN1emTlE5Bg=" + "engines": { + "node": ">0.4.x" + } }, - "content-disposition": { + "node_modules/content-disposition": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "content-type": { + "node_modules/content-type": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "cookie": { + "node_modules/cookie": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "cookie-signature": { + "node_modules/cookie-signature": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "license": "MIT" }, - "core-util-is": { + "node_modules/core-util-is": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "license": "MIT" }, - "crypt": { + "node_modules/crypt": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "dev": true + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/csv": { + "version": "5.5.3", + "license": "MIT", + "dependencies": { + "csv-generate": "^3.4.3", + "csv-parse": "^4.16.3", + "csv-stringify": "^5.6.5", + "stream-transform": "^2.1.3" + }, + "engines": { + "node": ">= 0.1.90" + } + }, + "node_modules/csv-generate": { + "version": "3.4.3", + "license": "MIT" }, - "cycle": { + "node_modules/csv-parse": { + "version": "4.16.3", + "license": "MIT" + }, + "node_modules/csv-stringify": { + "version": "5.6.5", + "license": "MIT" + }, + "node_modules/cycle": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", - "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=" + "engines": { + "node": ">=0.4.0" + } }, - "d": { + "node_modules/d": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", - "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", - "requires": { + "license": "MIT", + "dependencies": { "es5-ext": "^0.10.9" } }, - "dashdash": { + "node_modules/dashdash": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { + "license": "MIT", + "dependencies": { "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" } }, - "date-extended": { + "node_modules/date-extended": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/date-extended/-/date-extended-0.0.6.tgz", - "integrity": "sha1-I4AtV90b94GIE/4MMuhRqG2iZ8k=", - "requires": { + "license": "MIT", + "dependencies": { "array-extended": "~0.0.3", "extended": "~0.0.3", "is-extended": "~0.0.3" } }, - "debug": { + "node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", - "requires": { + "license": "MIT", + "dependencies": { "ms": "2.0.0" } }, - "debug-log": { + "node_modules/debug-log": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", - "integrity": "sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "decamelize": { + "node_modules/decamelize": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "declare.js": { + "node_modules/declare.js": { "version": "0.0.8", - "resolved": "https://registry.npmjs.org/declare.js/-/declare.js-0.0.8.tgz", - "integrity": "sha1-BHit/5VkwAT1Hfc9i8E0AZ0o3N4=" + "license": "MIT" }, - "deep-eql": { + "node_modules/decompress-response": { + "version": "4.2.1", + "license": "MIT", + "dependencies": { + "mimic-response": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/deep-eql": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", - "integrity": "sha1-38lARACtHI/gI+faHfHBR8S0RN8=", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=0.12" } }, - "deep-equal": { + "node_modules/deep-equal": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz", - "integrity": "sha1-hLdFiW80xoTpjyzg5Cq69Du6AX0=" + "license": "MIT" }, - "deep-is": { + "node_modules/deep-is": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + "license": "MIT" }, - "defaults": { + "node_modules/defaults": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", - "requires": { - "clone": "^1.0.2" - }, + "license": "MIT", "dependencies": { - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" - } + "clone": "^1.0.2" + } + }, + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "license": "MIT", + "engines": { + "node": ">=0.8" } }, - "define-properties": { + "node_modules/define-properties": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" } }, - "deglob": { + "node_modules/deglob": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/deglob/-/deglob-1.1.2.tgz", - "integrity": "sha1-dtV3wl/j9zKUEqK1nq3qV6xQDj8=", - "requires": { + "license": "ISC", + "dependencies": { "find-root": "^1.0.0", "glob": "^7.0.5", "ignore": "^3.0.9", @@ -664,20 +835,16 @@ "run-parallel": "^1.1.2", "uniq": "^1.0.1", "xtend": "^4.0.0" - }, - "dependencies": { - "ignore": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.8.tgz", - "integrity": "sha1-P46cNdOHCKOn4Omrtsc+fudweys=" - } } }, - "del": { + "node_modules/deglob/node_modules/ignore": { + "version": "3.3.8", + "license": "MIT" + }, + "node_modules/del": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "requires": { + "license": "MIT", + "dependencies": { "globby": "^5.0.0", "is-path-cwd": "^1.0.0", "is-path-in-cwd": "^1.0.0", @@ -685,117 +852,125 @@ "pify": "^2.0.0", "pinkie-promise": "^2.0.0", "rimraf": "^2.2.8" + }, + "engines": { + "node": ">=0.10.0" } }, - "delayed-stream": { + "node_modules/delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } }, - "depd": { + "node_modules/depd": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "destroy": { + "node_modules/destroy": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "license": "MIT" }, - "diff": { + "node_modules/diff": { "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha1-gAwN0eCov7yVg1wgKtIg/jF+WhI=" + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } }, - "discovery-store-models": { - "version": "git+https://github.com/NYPL-discovery/discovery-store-models.git#07abeeb5b19a9e6afec63606ccf0fdccebc3fe65", - "from": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", - "requires": { + "node_modules/discovery-store-models": { + "version": "1.3.2", + "resolved": "git+ssh://git@github.com/NYPL-discovery/discovery-store-models.git#07abeeb5b19a9e6afec63606ccf0fdccebc3fe65", + "license": "ISC", + "dependencies": { "@nypl/nypl-core-objects": "^1.3.2", "pg-promise": "^7.4.0", "winston": "^2.4.0" - }, + } + }, + "node_modules/discovery-store-models/node_modules/async": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/discovery-store-models/node_modules/colors": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/discovery-store-models/node_modules/winston": { + "version": "2.4.5", + "license": "MIT", "dependencies": { - "async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - }, - "winston": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.5.tgz", - "integrity": "sha512-TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A==", - "requires": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" - } - } + "async": "~1.0.0", + "colors": "1.0.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "stack-trace": "0.0.x" + }, + "engines": { + "node": ">= 0.10.0" } }, - "doctrine": { + "node_modules/doctrine": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", - "requires": { + "dependencies": { "esutils": "^2.0.2", "isarray": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "dotenv": { + "node_modules/dotenv": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz", - "integrity": "sha1-hk7xN5rO1Vzm+V3r7NzhefegzR0=" + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.6.0" + } }, - "ecc-jsbn": { + "node_modules/ecc-jsbn": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "license": "MIT", "optional": true, - "requires": { + "dependencies": { "jsbn": "~0.1.0" } }, - "ee-first": { + "node_modules/ee-first": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "elasticsearch": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/elasticsearch/-/elasticsearch-15.0.0.tgz", - "integrity": "sha1-2IjOuFi7owIhtoaY1yxUvc/fL7o=", - "requires": { - "agentkeepalive": "^3.4.1", - "chalk": "^1.0.0", - "lodash": "^4.17.10" - } + "license": "MIT" }, - "emoji-regex": { + "node_modules/emoji-regex": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true + "dev": true, + "license": "MIT" }, - "encodeurl": { + "node_modules/encodeurl": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "es-abstract": { + "node_modules/end-of-stream": { + "version": "1.4.4", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/es-abstract": { "version": "1.17.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz", - "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "has": "^1.0.3", @@ -807,44 +982,52 @@ "object.assign": "^4.1.0", "string.prototype.trimleft": "^2.1.1", "string.prototype.trimright": "^2.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es-to-primitive": { + "node_modules/es-to-primitive": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es5-ext": { + "node_modules/es5-ext": { "version": "0.10.42", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz", - "integrity": "sha1-jAfdM68E1dzRMQtc7xO+pjqJuo0=", - "requires": { + "license": "ISC", + "dependencies": { "es6-iterator": "~2.0.3", "es6-symbol": "~3.1.1", "next-tick": "1" } }, - "es6-iterator": { + "node_modules/es6-iterator": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "^0.10.35", "es6-symbol": "^3.1.1" } }, - "es6-map": { + "node_modules/es6-map": { "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "~0.10.14", "es6-iterator": "~2.0.1", @@ -853,11 +1036,10 @@ "event-emitter": "~0.3.5" } }, - "es6-set": { + "node_modules/es6-set": { "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "~0.10.14", "es6-iterator": "~2.0.1", @@ -865,52 +1047,52 @@ "event-emitter": "~0.3.5" } }, - "es6-symbol": { + "node_modules/es6-symbol": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "~0.10.14" } }, - "es6-weak-map": { + "node_modules/es6-weak-map": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", - "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "^0.10.14", "es6-iterator": "^2.0.1", "es6-symbol": "^3.1.1" } }, - "escape-html": { + "node_modules/escape-html": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "license": "MIT" }, - "escape-string-regexp": { + "node_modules/escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } }, - "escope": { + "node_modules/escope": { "version": "3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", - "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "es6-map": "^0.1.3", "es6-weak-map": "^2.0.1", "esrecurse": "^4.1.0", "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=0.4.0" } }, - "eslint": { + "node_modules/eslint": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.2.0.tgz", - "integrity": "sha1-bI10OpFUZZW6GG7e0JZoL0dZjeg=", - "requires": { + "license": "MIT", + "dependencies": { "chalk": "^1.0.0", "concat-stream": "^1.4.6", "debug": "^2.1.1", @@ -945,107 +1127,137 @@ "text-table": "~0.2.0", "user-home": "^2.0.0" }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": ">=0.10" } }, - "eslint-config-standard": { + "node_modules/eslint-config-standard": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-5.1.0.tgz", - "integrity": "sha1-ZwvzyQ2Z0EuKcFz+6nCWpn0XpmE=" + "license": "MIT", + "peerDependencies": { + "eslint": "^2.0.0-rc.0", + "eslint-plugin-promise": "^1.0.8", + "eslint-plugin-standard": "^1.3.1" + } }, - "eslint-config-standard-jsx": { + "node_modules/eslint-config-standard-jsx": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-1.1.1.tgz", - "integrity": "sha1-CYqnD16nBvJbqn2bc+cT9dodkqQ=" + "license": "MIT", + "peerDependencies": { + "eslint": "^2.0.0-rc.0", + "eslint-plugin-react": ">=2.7.1" + } }, - "eslint-plugin-promise": { + "node_modules/eslint-plugin-promise": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-1.3.2.tgz", - "integrity": "sha1-/OMy1vX/UjIApTdwSGPsPCQiunw=" + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } }, - "eslint-plugin-react": { + "node_modules/eslint-plugin-react": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-4.3.0.tgz", - "integrity": "sha1-x5qsgGnWLeJ4h8E7gpjVkgiN43g=" + "license": "MIT" }, - "eslint-plugin-standard": { + "node_modules/eslint-plugin-standard": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-1.3.3.tgz", - "integrity": "sha1-owhUUVI0MedvQJxwy4+U4yvw7H8=" + "license": "MIT" + }, + "node_modules/eslint/node_modules/glob": { + "version": "6.0.4", + "license": "ISC", + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } }, - "espree": { + "node_modules/espree": { "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha1-sPRHGHyKi+2US4FaZgvd9d610ac=", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "acorn": "^5.5.0", "acorn-jsx": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "esprima": { + "node_modules/esprima": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz", - "integrity": "sha1-RJnt3NERDgshi6zy+n9/WfVcqAQ=" + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } }, - "esrecurse": { + "node_modules/esrecurse": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha1-AHo7n9vCs7uH5IeeoZyS/b05Qs8=", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "estraverse": "^4.1.0" + }, + "engines": { + "node": ">=4.0" } }, - "estraverse": { + "node_modules/estraverse": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } }, - "estraverse-fb": { + "node_modules/estraverse-fb": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.2.tgz", - "integrity": "sha1-0yOky15awzHOoDNBOpJT4WQ+B8Q=" + "license": "MIT", + "peerDependencies": { + "estraverse": "*" + } }, - "esutils": { + "node_modules/esutils": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + "engines": { + "node": ">=0.10.0" + } }, - "etag": { + "node_modules/etag": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "event-emitter": { + "node_modules/event-emitter": { "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "requires": { + "license": "MIT", + "dependencies": { "d": "1", "es5-ext": "~0.10.14" } }, - "exit-hook": { + "node_modules/exit-hook": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "express": { + "node_modules/express": { "version": "4.16.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz", - "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", - "requires": { + "license": "MIT", + "dependencies": { "accepts": "~1.3.5", "array-flatten": "1.1.1", "body-parser": "1.18.2", @@ -1077,99 +1289,103 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "dependencies": { - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha1-NJzfbu+J7EXBLX1es/wMhwNDptg=" - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=" - } + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/qs": { + "version": "6.5.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" } }, - "extend": { + "node_modules/express/node_modules/safe-buffer": { + "version": "5.1.1", + "license": "MIT" + }, + "node_modules/extend": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "license": "MIT" }, - "extended": { + "node_modules/extended": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/extended/-/extended-0.0.6.tgz", - "integrity": "sha1-f7i/e52uOXWG5IVwrP1kLHjlBmk=", - "requires": { + "license": "MIT", + "dependencies": { "extender": "~0.0.5" } }, - "extender": { + "node_modules/extender": { "version": "0.0.10", - "resolved": "https://registry.npmjs.org/extender/-/extender-0.0.10.tgz", - "integrity": "sha1-WJwHSCvmGhRgttgfnCSqZ+jzJM0=", - "requires": { + "license": "MIT", + "dependencies": { "declare.js": "~0.0.4" } }, - "extsprintf": { + "node_modules/extsprintf": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" }, - "eyes": { + "node_modules/eyes": { "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", - "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=" + "engines": { + "node": "> 0.1.90" + } }, - "fast-csv": { + "node_modules/fast-csv": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-2.4.1.tgz", - "integrity": "sha1-vX3SaDkfcpNntZRFuN0K0CaIGyY=", - "requires": { + "license": "MIT", + "dependencies": { "extended": "0.0.6", "is-extended": "0.0.10", "object-extended": "0.0.7", "string-extended": "0.0.8" + }, + "engines": { + "node": ">=4.0.0" } }, - "fast-deep-equal": { + "node_modules/fast-deep-equal": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + "license": "MIT" }, - "fast-json-stable-stringify": { + "node_modules/fast-json-stable-stringify": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + "license": "MIT" }, - "fast-levenshtein": { + "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "license": "MIT" }, - "figures": { + "node_modules/figures": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "requires": { + "license": "MIT", + "dependencies": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "file-entry-cache": { + "node_modules/file-entry-cache": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", - "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=", - "requires": { + "license": "MIT", + "dependencies": { "flat-cache": "^1.2.1", "object-assign": "^4.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "finalhandler": { + "node_modules/finalhandler": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha1-7r9O2EAHnIP0JJA4ydcDAIMBsQU=", - "requires": { + "license": "MIT", + "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -1177,305 +1393,354 @@ "parseurl": "~1.3.2", "statuses": "~1.4.0", "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "find-root": { + "node_modules/find-root": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=" + "license": "MIT" }, - "find-up": { + "node_modules/find-up": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "flat": { + "node_modules/flat": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", - "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "is-buffer": "~2.0.3" }, - "dependencies": { - "is-buffer": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", - "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", - "dev": true - } + "bin": { + "flat": "cli.js" } }, - "flat-cache": { + "node_modules/flat-cache": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", - "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", - "requires": { + "license": "MIT", + "dependencies": { "circular-json": "^0.3.1", "del": "^2.0.2", "graceful-fs": "^4.1.2", "write": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flat/node_modules/is-buffer": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" } }, - "forever-agent": { + "node_modules/forever-agent": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + "license": "Apache-2.0", + "engines": { + "node": "*" + } }, - "form-data": { + "node_modules/form-data": { "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", - "requires": { + "license": "MIT", + "dependencies": { "asynckit": "^0.4.0", "combined-stream": "1.0.6", "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" } }, - "forwarded": { + "node_modules/forwarded": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "fresh": { + "node_modules/fresh": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } }, - "fs.realpath": { + "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "license": "ISC" }, - "function-bind": { + "node_modules/function-bind": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true + "dev": true, + "license": "MIT" }, - "generate-function": { + "node_modules/generate-function": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=" + "license": "MIT" }, - "generate-object-property": { + "node_modules/generate-object-property": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "requires": { + "license": "MIT", + "dependencies": { "is-property": "^1.0.0" } }, - "get-caller-file": { + "node_modules/get-caller-file": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } }, - "get-func-name": { + "node_modules/get-func-name": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", - "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } }, - "get-port": { + "node_modules/get-port": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "get-stdin": { + "node_modules/get-stdin": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", - "integrity": "sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=" + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } }, - "getpass": { + "node_modules/getpass": { "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { + "license": "MIT", + "dependencies": { "assert-plus": "^1.0.0" } }, - "glob": { + "node_modules/glob": { "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=", - "requires": { + "license": "ISC", + "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" } }, - "globals": { + "node_modules/globals": { "version": "8.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz", - "integrity": "sha1-k9SmK9ysOM+vr8R9awNHaMsP/LQ=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "globby": { + "node_modules/globby": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "requires": { + "license": "MIT", + "dependencies": { "array-union": "^1.0.1", "arrify": "^1.0.0", "glob": "^7.0.3", "object-assign": "^4.0.1", "pify": "^2.0.0", "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "graceful-fs": { + "node_modules/graceful-fs": { "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + "license": "ISC", + "engines": { + "node": ">=0.4.0" + } }, - "growl": { + "node_modules/growl": { "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.x" + } }, - "har-schema": { + "node_modules/har-schema": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + "license": "ISC", + "engines": { + "node": ">=4" + } }, - "har-validator": { + "node_modules/har-validator": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "requires": { + "license": "MIT", + "dependencies": { "ajv": "^6.5.5", "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "has": { + "node_modules/has": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" } }, - "has-ansi": { + "node_modules/has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { + "license": "MIT", + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-flag": { + "node_modules/has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "has-symbols": { + "node_modules/has-symbols": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "he": { + "node_modules/he": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true - }, - "http-basic": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz", - "integrity": "sha1-jORHvbW2xXf4pj4/p4BW7Eu02/s=", - "requires": { - "caseless": "~0.11.0", - "concat-stream": "^1.4.6", - "http-response-object": "^1.0.0" - }, + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/http-basic": { + "version": "8.1.3", + "license": "MIT", "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - } + "caseless": "^0.12.0", + "concat-stream": "^1.6.2", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0" } }, - "http-errors": { + "node_modules/http-errors": { "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { + "license": "MIT", + "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "http-response-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz", - "integrity": "sha1-p8TnWq6C87tJBOT0P2FWc7TVGMM=" + "node_modules/http-response-object": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "@types/node": "^10.0.3" + } }, - "http-signature": { + "node_modules/http-signature": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { + "license": "MIT", + "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "requires": { - "ms": "^2.0.0" - } - }, - "i": { + "node_modules/i": { "version": "0.3.6", - "resolved": "https://registry.npmjs.org/i/-/i-0.3.6.tgz", - "integrity": "sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0=" + "engines": { + "node": ">=0.4" + } }, - "iconv-lite": { + "node_modules/iconv-lite": { "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha1-90aPYBNfXl2tM5nAqBvpoWA6CCs=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "ignore": { + "node_modules/ignore": { "version": "2.2.19", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-2.2.19.tgz", - "integrity": "sha1-TIRaYfflC0pBD2FWqqOLatleDI8=" + "deprecated": "several bugs fixed in v3.2.1", + "license": "MIT" }, - "inflight": { + "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { + "license": "ISC", + "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, - "inherits": { + "node_modules/inherits": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "license": "ISC" }, - "inquirer": { + "node_modules/inquirer": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", - "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=", - "requires": { + "license": "MIT", + "dependencies": { "ansi-escapes": "^1.1.0", "ansi-regex": "^2.0.0", "chalk": "^1.0.0", @@ -1491,55 +1756,76 @@ "through": "^2.3.6" } }, - "ipaddr.js": { + "node_modules/into-stream": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ipaddr.js": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz", - "integrity": "sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=" + "license": "MIT", + "engines": { + "node": ">= 0.10" + } }, - "is-buffer": { + "node_modules/is-buffer": { "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4=", - "dev": true + "dev": true, + "license": "MIT" }, - "is-callable": { + "node_modules/is-callable": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz", - "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-date-object": { + "node_modules/is-date-object": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "is-extended": { + "node_modules/is-extended": { "version": "0.0.10", - "resolved": "https://registry.npmjs.org/is-extended/-/is-extended-0.0.10.tgz", - "integrity": "sha1-JE4UDfdbscmjEG9BL/GC+1NKbWI=", - "requires": { + "license": "MIT", + "dependencies": { "extended": "~0.0.3" } }, - "is-fullwidth-code-point": { + "node_modules/is-fullwidth-code-point": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { + "license": "MIT", + "dependencies": { "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-my-ip-valid": { + "node_modules/is-my-ip-valid": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", - "integrity": "sha1-ezUbjo7dTTmV1NBmaA5mTZRpaCQ=" + "license": "MIT" }, - "is-my-json-valid": { + "node_modules/is-my-json-valid": { "version": "2.17.2", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz", - "integrity": "sha1-ayEDoojpTvPeXPFdKd2F/Et41lw=", - "requires": { + "license": "MIT", + "dependencies": { "generate-function": "^2.0.0", "generate-object-property": "^1.1.0", "is-my-ip-valid": "^1.0.0", @@ -1547,124 +1833,128 @@ "xtend": "^4.0.0" } }, - "is-path-cwd": { + "node_modules/is-path-cwd": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "is-path-in-cwd": { + "node_modules/is-path-in-cwd": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha1-WsSLNF72dTOb1sekipEhELJBz1I=", - "requires": { + "license": "MIT", + "dependencies": { "is-path-inside": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-path-inside": { + "node_modules/is-path-inside": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "requires": { + "license": "MIT", + "dependencies": { "path-is-inside": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "is-property": { + "node_modules/is-property": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" + "license": "MIT" }, - "is-regex": { + "node_modules/is-regex": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", - "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-resolvable": { + "node_modules/is-resolvable": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=" + "license": "ISC" }, - "is-symbol": { + "node_modules/is-symbol": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-typedarray": { + "node_modules/is-typedarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "license": "MIT" }, - "isarray": { + "node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "license": "MIT" }, - "isexe": { + "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true + "dev": true, + "license": "ISC" }, - "isstream": { + "node_modules/isstream": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + "license": "MIT" }, - "js-yaml": { + "node_modules/js-yaml": { "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "requires": { + "license": "MIT", + "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "jsbn": { + "node_modules/jsbn": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "license": "MIT", "optional": true }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "node_modules/json-schema": { + "version": "0.2.3" }, - "json-schema-traverse": { + "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "license": "MIT" }, - "json-stable-stringify": { + "node_modules/json-stable-stringify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "requires": { + "license": "MIT", + "dependencies": { "jsonify": "~0.0.0" } }, - "json-stringify-safe": { + "node_modules/json-stringify-safe": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + "license": "ISC" }, - "jsonify": { + "node_modules/jsonify": { "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + "license": "Public Domain" }, - "jsonld": { + "node_modules/jsonld": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsonld/-/jsonld-2.0.2.tgz", - "integrity": "sha512-/TQzRe75/3h2khu57IUojha5oat+M82bm8RYw0jLhlmmPrW/kTWAZ9nGzKPfZWnPYnVVJJMQVc/pU8HCmpv9xg==", - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "canonicalize": "^1.0.1", "lru-cache": "^5.1.1", "rdf-canonize": "^1.0.2", @@ -1672,205 +1962,252 @@ "semver": "^6.3.0", "xmldom": "0.1.19" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonld/node_modules/semver": { + "version": "6.3.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "jsonpointer": { + "node_modules/jsonpointer": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "jsprim": { + "node_modules/jsprim": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.2.3", "verror": "1.10.0" } }, - "just-flatten": { + "node_modules/just-flatten": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/just-flatten/-/just-flatten-1.0.0.tgz", - "integrity": "sha1-PxMolnGrcJkllCWnbym4aTQynqE=" + "license": "WTFPL" }, - "levn": { + "node_modules/levn": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "requires": { + "license": "MIT", + "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "locate-path": { + "node_modules/locate-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "lodash": { + "node_modules/lodash": { "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + "license": "MIT" }, - "lodash.get": { + "node_modules/lodash.get": { "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", - "dev": true + "dev": true, + "license": "MIT" }, - "log-symbols": { + "node_modules/log-symbols": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "chalk": "^2.0.1" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "loglevel": { + "node_modules/loglevel": { "version": "1.6.8", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.8.tgz", - "integrity": "sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==" + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-loglevel?utm_medium=referral&utm_source=npm_fund" + } }, - "loglevel-plugin-prefix": { + "node_modules/loglevel-plugin-prefix": { "version": "0.5.3", - "resolved": "https://registry.npmjs.org/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.5.3.tgz", - "integrity": "sha512-zRAJw3WYCQAJ6xfEIi04/oqlmR6jkwg3hmBcMW82Zic3iPWyju1gwntcgic0m5NgqYNJ62alCmb0g/div26WjQ==" + "license": "MIT" }, - "lolex": { + "node_modules/lolex": { "version": "2.6.0", - "resolved": "https://registry.npmjs.org/lolex/-/lolex-2.6.0.tgz", - "integrity": "sha1-z5Fm88nezjzetdawH85Q8UoSA+M=", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, - "lru-cache": { + "node_modules/lru-cache": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { + "license": "ISC", + "dependencies": { "yallist": "^3.0.2" } }, - "manakin": { + "node_modules/manakin": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/manakin/-/manakin-0.5.2.tgz", - "integrity": "sha512-pfDSB7QYoVg0Io4KMV9hhPoXpj6p0uBscgtyUSKCOFZe8bqgbpStfgnKIbF/ulnr6U3ICu4OqdyxAqBgOhZwBQ==" + "license": "MIT", + "engines": { + "node": ">=0.12", + "npm": ">=1.4" + } }, - "md5": { + "node_modules/md5": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", - "integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "charenc": "~0.0.1", "crypt": "~0.0.1", "is-buffer": "~1.1.1" } }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "merge-descriptors": { + "node_modules/merge-descriptors": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + "license": "MIT" }, - "methods": { + "node_modules/methods": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "mime": { + "node_modules/mime": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha1-Eh+evEnjdm8xGnbh+hyAA8SwOqY=" + "license": "MIT", + "bin": { + "mime": "cli.js" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.33.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha1-o0kgUKXLm2NFBUHjnZeI0icng9s=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.18", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", - "integrity": "sha1-bzI/YKg9ERRvgx/xH9ZuL+VQO7g=", - "requires": { + "license": "MIT", + "dependencies": { "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-response": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "minimatch": { + "node_modules/minimatch": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", - "requires": { + "license": "ISC", + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { + "node_modules/minimist": { "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "license": "MIT" }, - "mkdirp": { + "node_modules/mixme": { "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { + "license": "MIT", + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "license": "MIT", + "dependencies": { "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "mocha": { + "node_modules/mocha": { "version": "6.2.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", - "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "ansi-colors": "3.2.3", "browser-stdout": "1.3.1", "debug": "3.2.6", @@ -1895,361 +2232,416 @@ "yargs-parser": "13.1.2", "yargs-unparser": "1.6.0" }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/mocha/node_modules/debug": { + "version": "3.2.6", + "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "dev": true, + "license": "MIT", "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "mkdirp": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", - "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "supports-color": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", - "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } + "ms": "^2.1.1" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "7.1.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mocha/node_modules/mkdirp": { + "version": "0.5.4", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/mocha/node_modules/strip-json-comments": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "ms": { + "node_modules/mocha/node_modules/supports-color": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "license": "MIT" }, - "multiline": { + "node_modules/multiline": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multiline/-/multiline-1.0.2.tgz", - "integrity": "sha1-abHyX/B00oKJBPJE3dBrfZbvbJM=", - "requires": { + "license": "MIT", + "dependencies": { "strip-indent": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "mute-stream": { + "node_modules/mute-stream": { "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + "license": "ISC" }, - "ncp": { + "node_modules/ncp": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz", - "integrity": "sha1-0VNn5cuHQyuhF9K/gP30Wuz7QkY=" + "license": "MIT", + "bin": { + "ncp": "bin/ncp" + } }, - "negotiator": { + "node_modules/negotiator": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "next-tick": { + "node_modules/next-tick": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "license": "MIT" }, - "nise": { + "node_modules/nise": { "version": "1.5.3", - "resolved": "https://registry.npmjs.org/nise/-/nise-1.5.3.tgz", - "integrity": "sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "@sinonjs/formatio": "^3.2.1", "@sinonjs/text-encoding": "^0.7.1", "just-extend": "^4.0.2", "lolex": "^5.0.1", "path-to-regexp": "^1.7.0" - }, + } + }, + "node_modules/nise/node_modules/@sinonjs/formatio": { + "version": "3.2.2", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "@sinonjs/formatio": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.2.tgz", - "integrity": "sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ==", - "dev": true, - "requires": { - "@sinonjs/commons": "^1", - "@sinonjs/samsam": "^3.1.0" - } - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "just-extend": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.1.0.tgz", - "integrity": "sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==", - "dev": true - }, - "lolex": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz", - "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", - "dev": true, - "requires": { - "@sinonjs/commons": "^1.7.0" - } - }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", - "dev": true, - "requires": { - "isarray": "0.0.1" - } - } + "@sinonjs/commons": "^1", + "@sinonjs/samsam": "^3.1.0" + } + }, + "node_modules/nise/node_modules/isarray": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/nise/node_modules/just-extend": { + "version": "4.1.0", + "dev": true, + "license": "MIT" + }, + "node_modules/nise/node_modules/lolex": { + "version": "5.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/nise/node_modules/path-to-regexp": { + "version": "1.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "isarray": "0.0.1" } }, - "node-cache": { + "node_modules/node-cache": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/node-cache/-/node-cache-4.2.1.tgz", - "integrity": "sha512-BOb67bWg2dTyax5kdef5WfU3X8xu4wPg+zHzkvls0Q/QpYycIFRLEEIdAx9Wma43DxG6Qzn4illdZoYseKWa4A==", - "requires": { + "license": "MIT", + "dependencies": { "clone": "2.x", "lodash": "^4.17.15" + }, + "engines": { + "node": ">= 0.4.6" } }, - "node-environment-flags": { + "node_modules/node-environment-flags": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", - "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", "dev": true, - "requires": { + "license": "Apache-2.0", + "dependencies": { "object.getownpropertydescriptors": "^2.0.3", "semver": "^5.7.0" } }, - "node-forge": { + "node_modules/node-forge": { "version": "0.9.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.1.tgz", - "integrity": "sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ==" + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 4.5.0" + } }, - "number-is-nan": { + "node_modules/number-is-nan": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "nypl-registry-utils-lexicon": { - "version": "github:nypl-registry/utils-lexicon#330e7258c7d2243b7689dec9850173541664db1e", - "from": "github:nypl-registry/utils-lexicon", - "requires": { + "node_modules/nypl-registry-utils-lexicon": { + "version": "1.0.0", + "resolved": "git+ssh://git@github.com/nypl-registry/utils-lexicon.git#330e7258c7d2243b7689dec9850173541664db1e", + "license": "MIT", + "dependencies": { "glob": "^7.0.0", "standard": "^6.0.7" } }, - "oauth": { + "node_modules/oauth": { "version": "0.9.15", - "resolved": "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz", - "integrity": "sha1-vR/vr2hslrdUda7VGWQS/2DPucE=" + "license": "MIT" }, - "oauth-sign": { + "node_modules/oauth-sign": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "license": "Apache-2.0", + "engines": { + "node": "*" + } }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "object-extended": { + "node_modules/object-extended": { "version": "0.0.7", - "resolved": "https://registry.npmjs.org/object-extended/-/object-extended-0.0.7.tgz", - "integrity": "sha1-hP0j9WsVWCrrPoiwXLVdJDLWijM=", - "requires": { + "license": "MIT", + "dependencies": { "array-extended": "~0.0.4", "extended": "~0.0.3", "is-extended": "~0.0.3" } }, - "object-inspect": { + "node_modules/object-inspect": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", - "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", - "dev": true + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "object-keys": { + "node_modules/object-keys": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "object.assign": { + "node_modules/object.assign": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.2", "function-bind": "^1.1.1", "has-symbols": "^1.0.0", "object-keys": "^1.0.11" + }, + "engines": { + "node": ">= 0.4" } }, - "object.getownpropertydescriptors": { + "node_modules/object.getownpropertydescriptors": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.0-next.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "on-finished": { + "node_modules/on-finished": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { + "license": "MIT", + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "once": { + "node_modules/once": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { + "license": "ISC", + "dependencies": { "wrappy": "1" } }, - "onetime": { + "node_modules/onetime": { "version": "1.1.0", - "resolved": "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "optionator": { + "node_modules/optionator": { "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "requires": { + "license": "MIT", + "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.4", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "wordwrap": "~1.0.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "os-homedir": { + "node_modules/os-homedir": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-is-promise": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "p-limit": { + "node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-locate": { + "node_modules/p-locate": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "packet-reader": { + "node_modules/packet-reader": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-0.3.1.tgz", - "integrity": "sha1-zWLmCvjX/qinBexP+ZCHHEaHHyc=" + "license": "MIT" + }, + "node_modules/parse-cache-control": { + "version": "1.0.1" }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "path-exists": { + "node_modules/path-exists": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "path-is-inside": { + "node_modules/path-is-inside": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "license": "(WTFPL OR MIT)" }, - "path-parse": { + "node_modules/path-parse": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" + "license": "MIT" }, - "path-to-regexp": { + "node_modules/path-to-regexp": { "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + "license": "MIT" }, - "pathval": { + "node_modules/pathval": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", - "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } }, - "performance-now": { + "node_modules/performance-now": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "license": "MIT" }, - "pg": { + "node_modules/pg": { "version": "7.4.3", - "resolved": "https://registry.npmjs.org/pg/-/pg-7.4.3.tgz", - "integrity": "sha1-97b5P1NA7MJZavu5ShPj1rYJg0s=", - "requires": { + "license": "MIT", + "dependencies": { "buffer-writer": "1.0.1", "packet-reader": "0.3.1", "pg-connection-string": "0.1.3", @@ -2258,148 +2650,173 @@ "pgpass": "1.x", "semver": "4.3.2" }, - "dependencies": { - "semver": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz", - "integrity": "sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=" - } + "engines": { + "node": ">= 4.5.0" } }, - "pg-connection-string": { + "node_modules/pg-connection-string": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz", - "integrity": "sha1-2hhHsglA5C7hSSvq9l1J2RskXfc=" + "license": "MIT" }, - "pg-minify": { + "node_modules/pg-minify": { "version": "0.5.5", - "resolved": "https://registry.npmjs.org/pg-minify/-/pg-minify-0.5.5.tgz", - "integrity": "sha512-7Pf9h6nV1RFqED1hkRosePqvpPwNUUtW06TT4+lHwzesxa5gffxkShTjYH6JXV5sSSfh5+2yHOTTWEkCyCQ0Eg==" + "license": "MIT", + "engines": { + "node": ">=0.12", + "npm": ">=1.4" + } }, - "pg-pool": { + "node_modules/pg-pool": { "version": "2.0.10", - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-2.0.10.tgz", - "integrity": "sha512-qdwzY92bHf3nwzIUcj+zJ0Qo5lpG/YxchahxIN8+ZVmXqkahKXsnl2aiJPHLYN9o5mB/leG+Xh6XKxtP7e0sjg==" + "license": "MIT", + "peerDependencies": { + "pg": ">5.0" + } }, - "pg-promise": { + "node_modules/pg-promise": { "version": "7.5.4", - "resolved": "https://registry.npmjs.org/pg-promise/-/pg-promise-7.5.4.tgz", - "integrity": "sha512-wuL+13P+Ris8MEUpdatv7OH5eHEahWBNmgGHEwLd88fym/eMAjxrFV+3jRKO7bFAyDTvo3wNcmuntYwR9eJnvg==", - "requires": { + "deprecated": "This version of pg-promise is obsolete. You should update to a newer version.", + "license": "MIT", + "dependencies": { "manakin": "~0.5.1", "pg": "~7.4.1", "pg-minify": "~0.5.4", "spex": "~2.0.2" + }, + "engines": { + "node": ">=4.5", + "npm": ">=2.15" } }, - "pg-types": { + "node_modules/pg-types": { "version": "1.12.1", - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-1.12.1.tgz", - "integrity": "sha1-1kCH45A7WP+q0nnnWVxSIIoUw9I=", - "requires": { + "license": "MIT", + "dependencies": { "postgres-array": "~1.0.0", "postgres-bytea": "~1.0.0", "postgres-date": "~1.0.0", "postgres-interval": "^1.1.0" } }, - "pgpass": { + "node_modules/pg/node_modules/semver": { + "version": "4.3.2", + "license": "BSD", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/pgpass": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.4.tgz", - "integrity": "sha512-YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w==", - "requires": { + "license": "MIT", + "dependencies": { "split2": "^3.1.1" } }, - "pify": { + "node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "pinkie": { + "node_modules/pinkie": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "pinkie-promise": { + "node_modules/pinkie-promise": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { + "license": "MIT", + "dependencies": { "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "pkg-config": { + "node_modules/pkg-config": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", - "integrity": "sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q=", - "requires": { + "license": "MIT", + "dependencies": { "debug-log": "^1.0.0", "find-root": "^1.0.0", "xtend": "^4.0.1" + }, + "engines": { + "node": ">=0.10" } }, - "pkginfo": { + "node_modules/pkginfo": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz", - "integrity": "sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8=" + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } }, - "pluralize": { + "node_modules/pluralize": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", - "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + "license": "MIT" }, - "postgres-array": { + "node_modules/postgres-array": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-1.0.3.tgz", - "integrity": "sha512-5wClXrAP0+78mcsNX3/ithQ5exKvCyK5lr5NEEEeGwwM6NJdQgzIJBVxLvRW+huFpX92F2QnZ5CcokH0VhK2qQ==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "postgres-bytea": { + "node_modules/postgres-bytea": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha1-AntTPAqokOJtFy1Hz5zOzFIazTU=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "postgres-date": { + "node_modules/postgres-date": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "postgres-interval": { + "node_modules/postgres-interval": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "requires": { + "license": "MIT", + "dependencies": { "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "prelude-ls": { + "node_modules/prelude-ls": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "engines": { + "node": ">= 0.8.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o=" + "license": "MIT" }, - "progress": { + "node_modules/progress": { "version": "1.1.8", - "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", - "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=" + "engines": { + "node": ">=0.4.0" + } }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" + "node_modules/promise": { + "version": "8.3.0", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" } }, - "prompt": { + "node_modules/prompt": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz", - "integrity": "sha1-jlcSPDlquYiJf7Mn/Trtw+c15P4=", - "requires": { + "license": "MIT", + "dependencies": { "colors": "^1.1.2", "pkginfo": "0.x.x", "read": "1.0.x", @@ -2407,138 +2824,159 @@ "utile": "0.3.x", "winston": "2.1.x" }, + "engines": { + "node": ">= 0.6.6" + } + }, + "node_modules/prompt/node_modules/async": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/prompt/node_modules/winston": { + "version": "2.1.1", + "license": "MIT", "dependencies": { - "async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "winston": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz", - "integrity": "sha1-PJNJ0ZYgf9G9/51LxD73JRDjoS4=", - "requires": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "pkginfo": "0.3.x", - "stack-trace": "0.0.x" - }, - "dependencies": { - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - }, - "pkginfo": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", - "integrity": "sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE=" - } - } - } + "async": "~1.0.0", + "colors": "1.0.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "pkginfo": "0.3.x", + "stack-trace": "0.0.x" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prompt/node_modules/winston/node_modules/colors": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=0.1.90" } }, - "proxy-addr": { + "node_modules/prompt/node_modules/winston/node_modules/pkginfo": { + "version": "0.3.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/proxy-addr": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz", - "integrity": "sha1-NV8mJQWmIWRrMTCnKOtkfiIFU0E=", - "requires": { + "license": "MIT", + "dependencies": { "forwarded": "~0.1.2", "ipaddr.js": "1.6.0" + }, + "engines": { + "node": ">= 0.10" } }, - "psl": { + "node_modules/psl": { "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "license": "MIT" }, - "punycode": { + "node_modules/pump": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true + "dev": true, + "license": "MIT" }, - "qs": { + "node_modules/qs": { "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=" + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } }, - "ramda": { + "node_modules/ramda": { "version": "0.21.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.21.0.tgz", - "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" + "license": "MIT" }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { + "node_modules/raw-body": { "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "requires": { + "license": "MIT", + "dependencies": { "bytes": "3.0.0", "http-errors": "1.6.2", "iconv-lite": "0.4.19", "unpipe": "1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/depd": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body/node_modules/http-errors": { + "version": "1.6.2", + "license": "MIT", "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" - } + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": ">= 1.3.1 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "rdf-canonize": { + "node_modules/raw-body/node_modules/setprototypeof": { + "version": "1.0.3", + "license": "ISC" + }, + "node_modules/rdf-canonize": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/rdf-canonize/-/rdf-canonize-1.1.0.tgz", - "integrity": "sha512-DV06OnhVfl2zcZJQCt+YvU+hoZVgpyQpNFLeAmghq8RJybUxD3B4LRzlBquYS5k+LLd8/c3g5Gnhkqjw5qRMvg==", - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "node-forge": "^0.9.1", "semver": "^6.3.0" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=6" } }, - "read": { + "node_modules/rdf-canonize/node_modules/semver": { + "version": "6.3.0", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/read": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", - "requires": { + "license": "ISC", + "dependencies": { "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" } }, - "readable-stream": { + "node_modules/readable-stream": { "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=", - "requires": { + "license": "MIT", + "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", @@ -2548,28 +2986,24 @@ "util-deprecate": "~1.0.1" } }, - "readline2": { + "node_modules/readline2": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", - "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", - "requires": { + "license": "MIT", + "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "mute-stream": "0.0.5" - }, - "dependencies": { - "mute-stream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", - "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=" - } } }, - "request": { + "node_modules/readline2/node_modules/mute-stream": { + "version": "0.0.5", + "license": "ISC" + }, + "node_modules/request": { "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "license": "Apache-2.0", + "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", @@ -2591,153 +3025,182 @@ "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, - "dependencies": { - "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" - }, - "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "requires": { - "mime-db": "1.44.0" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - } + "engines": { + "node": ">= 6" } }, - "request-promise": { + "node_modules/request-promise": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.2.tgz", - "integrity": "sha1-0epG1lSm7k+O5qT+oQGMIpEZBLQ=", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "bluebird": "^3.5.0", "request-promise-core": "1.1.1", "stealthy-require": "^1.1.0", "tough-cookie": ">=2.3.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" } }, - "request-promise-core": { + "node_modules/request-promise-core": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz", - "integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "lodash": "^4.13.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" } }, - "require-directory": { + "node_modules/request/node_modules/mime-db": { + "version": "1.44.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/request/node_modules/mime-types": { + "version": "2.1.27", + "license": "MIT", + "dependencies": { + "mime-db": "1.44.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/request/node_modules/punycode": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "require-main-filename": { + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true + "dev": true, + "license": "ISC" }, - "require-uncached": { + "node_modules/require-uncached": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", - "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", - "requires": { + "license": "MIT", + "dependencies": { "caller-path": "^0.1.0", "resolve-from": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "resolve": { + "node_modules/resolve": { "version": "1.7.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", - "integrity": "sha1-qt1lY3T9KYruiVvAJrgpdBhnf9M=", - "requires": { + "license": "MIT", + "dependencies": { "path-parse": "^1.0.5" } }, - "resolve-from": { + "node_modules/resolve-from": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "restore-cursor": { + "node_modules/restore-cursor": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "requires": { + "license": "MIT", + "dependencies": { "exit-hook": "^1.0.0", "onetime": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "revalidator": { + "node_modules/revalidator": { "version": "0.1.8", - "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", - "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=" + "license": "Apache 2.0", + "engines": { + "node": ">= 0.4.0" + } }, - "rimraf": { + "node_modules/rimraf": { "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha1-LtgVDSShbqhlHm1u8PR8QVjOejY=", - "requires": { + "license": "ISC", + "dependencies": { "glob": "^7.0.5" + }, + "bin": { + "rimraf": "bin.js" } }, - "run-async": { + "node_modules/run-async": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", - "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", - "requires": { + "license": "MIT", + "dependencies": { "once": "^1.3.0" } }, - "run-parallel": { + "node_modules/run-parallel": { "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "integrity": "sha1-yd06fPn0ssS2JE4XOm7YZuYd1nk=" + "license": "MIT" }, - "rx-lite": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", - "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" + "node_modules/rx-lite": { + "version": "3.1.2" }, - "safe-buffer": { + "node_modules/safe-buffer": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" + "license": "MIT" }, - "samsam": { + "node_modules/samsam": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/samsam/-/samsam-1.3.0.tgz", - "integrity": "sha1-jR2TUOJWItow3j5EumkrUiGrfFA=", - "dev": true + "deprecated": "This package has been deprecated in favour of @sinonjs/samsam", + "dev": true, + "license": "BSD-3-Clause" }, - "semver": { + "node_modules/secure-json-parse": { + "version": "2.7.0", + "license": "BSD-3-Clause" + }, + "node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } }, - "send": { + "node_modules/send": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha1-bsyh4PjBVtFBWXVZhI32RzCmu8E=", - "requires": { + "license": "MIT", + "dependencies": { "debug": "2.6.9", "depd": "~1.1.2", "destroy": "~1.0.4", @@ -2751,76 +3214,80 @@ "on-finished": "~2.3.0", "range-parser": "~1.2.0", "statuses": "~1.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "serve-static": { + "node_modules/serve-static": { "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha1-CV6Ecv1bRiN9tQzkhqQ/S4bGzsE=", - "requires": { + "license": "MIT", + "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.2", "send": "0.16.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "set-blocking": { + "node_modules/set-blocking": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true + "dev": true, + "license": "ISC" }, - "setprototypeof": { + "node_modules/setprototypeof": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=" + "license": "ISC" }, - "shelljs": { + "node_modules/shelljs": { "version": "0.5.3", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", - "integrity": "sha1-xUmCuZbHbvDB5rWfvcWCX1txMRM=" + "license": "BSD*", + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=0.8.0" + } }, - "should": { + "node_modules/should": { "version": "7.1.1", - "resolved": "https://registry.npmjs.org/should/-/should-7.1.1.tgz", - "integrity": "sha1-ZGTEi298Hh8YrASDV4+i3VXCxuA=", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "should-equal": "0.5.0", "should-format": "0.3.1", "should-type": "0.2.0" } }, - "should-equal": { + "node_modules/should-equal": { "version": "0.5.0", - "resolved": "http://registry.npmjs.org/should-equal/-/should-equal-0.5.0.tgz", - "integrity": "sha1-x5fxNfMGf+tp6+zbMGscP+IbPm8=", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "should-type": "0.2.0" } }, - "should-format": { + "node_modules/should-format": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/should-format/-/should-format-0.3.1.tgz", - "integrity": "sha1-LLt4JGFnCs5CkrKx7EaNuM+Z4zA=", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "should-type": "0.2.0" } }, - "should-type": { + "node_modules/should-type": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/should-type/-/should-type-0.2.0.tgz", - "integrity": "sha1-ZwfvlVKdmJ3MCY/gdTqx+RNrt/Y=", - "dev": true + "dev": true, + "license": "MIT" }, - "sinon": { + "node_modules/sinon": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/sinon/-/sinon-4.5.0.tgz", - "integrity": "sha1-QnrjEqM308UWgEzidU6MDVAoywQ=", "dev": true, - "requires": { + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { "@sinonjs/formatio": "^2.0.0", "diff": "^3.1.0", "lodash.get": "^4.4.2", @@ -2828,85 +3295,100 @@ "nise": "^1.2.0", "supports-color": "^5.1.0", "type-detect": "^4.0.5" - }, + } + }, + "node_modules/sinon/node_modules/supports-color": { + "version": "5.4.0", + "dev": true, + "license": "MIT", "dependencies": { - "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha1-HGszdALCE3YF7+GfEP7DkPb6q1Q=", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=", - "dev": true - } + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/sinon/node_modules/type-detect": { + "version": "4.0.8", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" } }, - "slice-ansi": { + "node_modules/slice-ansi": { "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "spex": { + "node_modules/spex": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/spex/-/spex-2.0.2.tgz", - "integrity": "sha512-LU6TS3qTEpRth+FnNs/fIWEmridYN7JmaN2k1Jk31XVC4ex7+wYxiHMnKguRxS7oKjbOFl4H6seeWNDFFgkVRg==" + "license": "MIT", + "engines": { + "node": ">=0.10", + "npm": ">=1.4" + } }, - "split2": { + "node_modules/split2": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", - "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "requires": { + "license": "ISC", + "dependencies": { "readable-stream": "^3.0.0" - }, + } + }, + "node_modules/split2/node_modules/readable-stream": { + "version": "3.6.0", + "license": "MIT", "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "sprintf-js": { + "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "license": "BSD-3-Clause" }, - "sshpk": { + "node_modules/sshpk": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz", - "integrity": "sha1-Ew9Zde3a2WPx1W+SuaxsUfqfg+s=", - "requires": { + "license": "MIT", + "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", "dashdash": "^1.12.0", + "getpass": "^0.1.1" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + }, + "optionalDependencies": { + "bcrypt-pbkdf": "^1.0.0", "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", "jsbn": "~0.1.0", "tweetnacl": "~0.14.0" } }, - "stack-trace": { + "node_modules/stack-trace": { "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "license": "MIT", + "engines": { + "node": "*" + } }, - "standard": { + "node_modules/standard": { "version": "6.0.8", - "resolved": "https://registry.npmjs.org/standard/-/standard-6.0.8.tgz", - "integrity": "sha1-sOZl4yJ32jy5nyEmmxBC2B7+sGs=", - "requires": { + "license": "MIT", + "dependencies": { "eslint": "~2.2.0", "eslint-config-standard": "5.1.0", "eslint-config-standard-jsx": "1.1.1", @@ -2915,13 +3397,15 @@ "eslint-plugin-standard": "^1.3.1", "standard-engine": "^3.3.0", "xtend": "^4.0.1" + }, + "bin": { + "standard": "bin/cmd.js" } }, - "standard-engine": { + "node_modules/standard-engine": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-3.3.1.tgz", - "integrity": "sha1-sveY3k5NPh+s7UJcgTaDGmZ0CO0=", - "requires": { + "license": "MIT", + "dependencies": { "defaults": "^1.0.2", "deglob": "^1.0.0", "find-root": "^1.0.0", @@ -2932,375 +3416,444 @@ "xtend": "^4.0.0" } }, - "statuses": { + "node_modules/statuses": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha1-u3PURtonlhBu/MG2AaJT1sRr0Ic=" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "stealthy-require": { + "node_modules/stealthy-require": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", - "dev": true + "dev": true, + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-transform": { + "version": "2.1.3", + "license": "MIT", + "dependencies": { + "mixme": "^0.5.1" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_score": { + "version": "0.1.22", + "license": "MIT" }, - "string-extended": { + "node_modules/string-extended": { "version": "0.0.8", - "resolved": "https://registry.npmjs.org/string-extended/-/string-extended-0.0.8.tgz", - "integrity": "sha1-dBlX3/SHsCcqee7FpE8jnubxfM0=", - "requires": { + "license": "MIT", + "dependencies": { "array-extended": "~0.0.5", "date-extended": "~0.0.3", "extended": "~0.0.3", "is-extended": "~0.0.3" } }, - "string-width": { + "node_modules/string-width": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { + "license": "MIT", + "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "string.prototype.trimend": { + "node_modules/string.prototype.trimend": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", - "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimleft": { + "node_modules/string.prototype.trimleft": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz", - "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5", "string.prototype.trimstart": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimright": { + "node_modules/string.prototype.trimright": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz", - "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5", "string.prototype.trimend": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimstart": { + "node_modules/string.prototype.trimstart": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", - "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "string_score": { - "version": "0.1.22", - "resolved": "https://registry.npmjs.org/string_score/-/string_score-0.1.22.tgz", - "integrity": "sha1-gOESIjru8wlp2FAvONtyp2jqqP0=" - }, - "strip-ansi": { + "node_modules/strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { + "license": "MIT", + "dependencies": { "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "requires": { + "license": "MIT", + "dependencies": { "get-stdin": "^4.0.1" }, - "dependencies": { - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" - } + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-indent/node_modules/get-stdin": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "strip-json-comments": { + "node_modules/strip-json-comments": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", - "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=" + "license": "MIT", + "bin": { + "strip-json-comments": "cli.js" + }, + "engines": { + "node": ">=0.8.0" + } }, - "supports-color": { + "node_modules/supports-color": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } }, - "sync-request": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-4.1.0.tgz", - "integrity": "sha512-iFbOBWYaznBNbheIKaMkj+3EabpEsXbuwcTVuYkRjoav+Om5L8VXXLIXms0cHxkouXMRCQaSfhfau9/HyIbM2Q==", - "requires": { - "command-exists": "^1.2.2", - "concat-stream": "^1.6.0", - "get-port": "^3.1.0", - "http-response-object": "^1.1.0", - "then-request": "^2.2.0" + "node_modules/sync-request": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.1", + "then-request": "^6.0.0" + }, + "engines": { + "node": ">=8.0.0" } }, - "table": { + "node_modules/sync-rpc": { + "version": "1.3.6", + "license": "MIT", + "dependencies": { + "get-port": "^3.1.0" + } + }, + "node_modules/table": { "version": "3.8.3", - "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", - "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "ajv": "^4.7.0", "ajv-keywords": "^1.0.0", "chalk": "^1.1.1", "lodash": "^4.0.0", "slice-ansi": "0.0.4", "string-width": "^2.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "4.11.8", + "license": "MIT", + "dependencies": { + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" + } + }, + "node_modules/table/node_modules/ansi-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/table/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/table/node_modules/string-width": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/table/node_modules/strip-ansi": { + "version": "4.0.0", + "license": "MIT", "dependencies": { - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", - "requires": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" - } - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "text-table": { + "node_modules/text-table": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "license": "MIT" }, - "then-request": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz", - "integrity": "sha1-ZnizL6DKIY/laZgbvYhxtZQGDYE=", - "requires": { - "caseless": "~0.11.0", - "concat-stream": "^1.4.7", - "http-basic": "^2.5.1", - "http-response-object": "^1.1.0", - "promise": "^7.1.1", - "qs": "^6.1.0" - }, - "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - } + "node_modules/then-request": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^8.1.1", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "through": { + "node_modules/then-request/node_modules/@types/node": { + "version": "8.10.66", + "license": "MIT" + }, + "node_modules/through": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + "license": "MIT" }, - "tough-cookie": { + "node_modules/tough-cookie": { "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha1-7GDO44rGdQY//JelwYlwV47oNlU=", "dev": true, - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "punycode": "^1.4.1" + }, + "engines": { + "node": ">=0.8" } }, - "tunnel-agent": { + "node_modules/tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { + "license": "Apache-2.0", + "dependencies": { "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" } }, - "tweetnacl": { + "node_modules/tweetnacl": { "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "license": "Unlicense", "optional": true }, - "type-check": { + "node_modules/type-check": { "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { + "license": "MIT", + "dependencies": { "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-detect": { + "node_modules/type-detect": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha1-+JzjQVQcZysl7nrjxz3uOyvlAZQ=", - "requires": { + "license": "MIT", + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.18" + }, + "engines": { + "node": ">= 0.6" } }, - "typedarray": { + "node_modules/typedarray": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "license": "MIT" }, - "uniq": { + "node_modules/uniq": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + "license": "MIT" }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "uri-js": { + "node_modules/uri-js": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "requires": { - "punycode": "^2.1.0" - }, + "license": "BSD-2-Clause", "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - } + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "user-home": { + "node_modules/user-home": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", - "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", - "requires": { + "license": "MIT", + "dependencies": { "os-homedir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "license": "MIT" }, - "utile": { + "node_modules/utile": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz", - "integrity": "sha1-E1LDQOuCDk2N26A5pPv6oy7U7zo=", - "requires": { + "dependencies": { "async": "~0.9.0", "deep-equal": "~0.2.1", "i": "0.3.x", "mkdirp": "0.x.x", "ncp": "1.0.x", "rimraf": "2.x.x" + }, + "engines": { + "node": ">= 0.8.0" } }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } }, - "uuid": { + "node_modules/uuid": { "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } }, - "vary": { + "node_modules/vary": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "verror": { + "node_modules/verror": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, - "which": { + "node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "which-module": { + "node_modules/which-module": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true + "dev": true, + "license": "ISC" }, - "wide-align": { + "node_modules/wide-align": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "string-width": "^1.0.2 || 2" } }, - "winston": { + "node_modules/winston": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.3.1.tgz", - "integrity": "sha1-C0hCDZeMAYBM8CMLZIhhWYIloRk=", - "requires": { + "license": "MIT", + "dependencies": { "async": "~1.0.0", "colors": "1.0.x", "cycle": "1.0.x", @@ -3308,118 +3861,131 @@ "isstream": "0.1.x", "stack-trace": "0.0.x" }, - "dependencies": { - "async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - } + "engines": { + "node": ">= 0.10.0" } }, - "wordwrap": { + "node_modules/winston/node_modules/async": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + "license": "MIT" }, - "wrap-ansi": { + "node_modules/winston/node_modules/colors": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/wrap-ansi": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "ansi-styles": "^3.2.0", "string-width": "^3.0.0", "strip-ansi": "^5.0.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "wrappy": { + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "license": "ISC" }, - "write": { + "node_modules/write": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", - "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", - "requires": { + "license": "MIT", + "dependencies": { "mkdirp": "^0.5.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "xmldom": { + "node_modules/xmldom": { "version": "0.1.19", - "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz", - "integrity": "sha1-Yx/Ad3bv2EEYvyUXGzftTQdaCrw=" + "deprecated": "Deprecated due to CVE-2021-21366 resolved in 0.5.0", + "engines": { + "node": ">=0.1" + } }, - "xtend": { + "node_modules/xtend": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "license": "MIT", + "engines": { + "node": ">=0.4" + } }, - "y18n": { + "node_modules/y18n": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true + "dev": true, + "license": "ISC" }, - "yallist": { + "node_modules/yallist": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "license": "ISC" }, - "yargs": { + "node_modules/yargs": { "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "cliui": "^5.0.0", "find-up": "^3.0.0", "get-caller-file": "^2.0.1", @@ -3430,61 +3996,68 @@ "which-module": "^2.0.0", "y18n": "^4.0.0", "yargs-parser": "^13.1.2" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } } }, - "yargs-parser": { + "node_modules/yargs-parser": { "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" } }, - "yargs-unparser": { + "node_modules/yargs-unparser": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", - "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "flat": "^4.1.0", "lodash": "^4.17.15", "yargs": "^13.3.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" } } } diff --git a/package.json b/package.json index d4291472..91533840 100644 --- a/package.json +++ b/package.json @@ -2,13 +2,13 @@ "analyze": true, "author": "NYPL Digital", "dependencies": { - "@nypl/nypl-core-objects": "1.3.2", + "@nypl/nypl-core-objects": "1.4.0", "@nypl/nypl-data-api-client": "^1.0.1", "@nypl/scsb-rest-client": "1.0.6", "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^4.0.0", - "elasticsearch": "^15.0.0", + "@elastic/elasticsearch": "^5.6.22", "express": "^4.14.0", "fast-csv": "^2.3.0", "jsonld": "^2.0.2", From 21e87c62bb2ba53ab1b186c2ddbade485ec0437c Mon Sep 17 00:00:00 2001 From: gkallenberg Date: Mon, 17 Apr 2023 13:20:34 -0400 Subject: [PATCH 02/51] Docker container with current reqs; updated elastic client --- Dockerfile | 42 ++++++++++++++++++++++++++++++++++++++++++ lib/es-client.js | 10 ++++++++-- package.json | 2 +- 3 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..b3e653f9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,42 @@ +FROM node:10.24.1 as production + +RUN apt-get update +RUN apt-get upgrade -y + +# Create app directory +WORKDIR /usr/src/app + +# Install app dependencies +# A wildcard is used to ensure both package.json AND package-lock.json are copied +# where available (npm@5+) +COPY package.json ./ +ENV NODE_ENV=production +ENV APP_ENV=production + +RUN npm cache verify +RUN npm install + +# Bundle app source +# Do not copy non-essential files +COPY . . +# Remove any unneeded files +RUN rm -rf /usr/src/app/.DS_Store +RUN rm -rf /usr/src/app/.ebextensions +RUN rm -rf /usr/src/app/.elasticbeanstalk +RUN rm -rf /usr/src/app/.git +RUN rm -rf /usr/src/app/.gitignore + +# COPY ./config/production.env /usr/src/app/.env + +# Link logs to stdout +RUN ln -sf /dev/stdout /usr/src/app/log/discovery-api.log + +CMD [ "npm", "start" ] + + +FROM production as qa + +ENV NODE_ENV=qa +ENV APP_ENV=qa + +# COPY ./config/qa.env /usr/src/app/.env diff --git a/lib/es-client.js b/lib/es-client.js index c78c1f73..d538e301 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -1,4 +1,4 @@ -const elasticsearch = require('elasticsearch') +const elasticsearch = require('@elastic/elasticsearch') const { deepValue } = require('./util') const clientWrapper = {} @@ -8,7 +8,13 @@ const clientWrapper = {} */ clientWrapper.esClient = function () { if (!this._esClient) { - this._esClient = new elasticsearch.Client({ host: process.env.ELASTICSEARCH_HOST }) + this._esClient = new elasticsearch.Client({ + node: process.env.ELASTICSEARCH_HOST, + auth: { + username: process.env.ELASTICSEARCH_USER, + password: process.env.ELASTICSEARCH_PASS + } + }) } return this._esClient }.bind(clientWrapper) diff --git a/package.json b/package.json index d70cc0a4..59b4096c 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^4.0.0", - "elasticsearch": "^15.0.0", + "@elastic/elasticsearch": "~7.12.0", "express": "^4.14.0", "fast-csv": "^2.3.0", "jsonld": "^2.0.2", From 2c07c7a569d9b15e9a993feba08b555377276504 Mon Sep 17 00:00:00 2001 From: gkallenberg Date: Mon, 17 Apr 2023 13:25:04 -0400 Subject: [PATCH 03/51] added env var qualification line --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b3e653f9..ce778acd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN rm -rf /usr/src/app/.elasticbeanstalk RUN rm -rf /usr/src/app/.git RUN rm -rf /usr/src/app/.gitignore +# Environment variables for hosted stack in AWS Secrets Manager # COPY ./config/production.env /usr/src/app/.env # Link logs to stdout @@ -39,4 +40,5 @@ FROM production as qa ENV NODE_ENV=qa ENV APP_ENV=qa +# Environment variables for hosted stack in AWS Secrets Manager # COPY ./config/qa.env /usr/src/app/.env From 1bc6c5be720663706082ccd0d91d0be2e6c22bb8 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 28 Apr 2023 13:08:19 -0400 Subject: [PATCH 04/51] Use ELASTICSEARCH_URI config name --- .env.example | 2 +- lib/es-client.js | 2 +- lib/preflight_check.js | 30 ++++++++++++++---------------- 3 files changed, 16 insertions(+), 18 deletions(-) diff --git a/.env.example b/.env.example index 8630b3a2..e3339f44 100644 --- a/.env.example +++ b/.env.example @@ -5,7 +5,7 @@ SCSB_URL=https://get.from.coworker:9093 SCSB_API_KEY=getmefromacowoker # URL (with auth and port) for the ES domain: -ELASTICSEARCH_NODE=https://USER:PASS@example.tld:9201 +ELASTICSEARCH_URI=https://USER:PASS@example.tld:9201 # Name of the index to connect to diff --git a/lib/es-client.js b/lib/es-client.js index 4d0d746e..8f1cd6f5 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -10,7 +10,7 @@ const clientWrapper = {} clientWrapper.esClient = function () { if (!this._esClient) { // Parse ES connection string: - const { protocol, auth, host, port } = url.parse(process.env.ELASTICSEARCH_NODE) + const { protocol, auth, host, port } = url.parse(process.env.ELASTICSEARCH_URI) const [ username, password ] = auth.split(':') const options = { node: `${protocol}//${host}`, diff --git a/lib/preflight_check.js b/lib/preflight_check.js index afe7624f..afbbf0c6 100644 --- a/lib/preflight_check.js +++ b/lib/preflight_check.js @@ -1,24 +1,22 @@ let logger = require('./logger') -const requiredEnvVars = { - 'SCSB_URL': process.env.SCSB_URL, - 'SCSB_API_KEY': process.env.SCSB_API_KEY, - 'ELASTICSEARCH_HOST': process.env.ELASTICSEARCH_HOST, - 'RESOURCES_INDEX': process.env.RESOURCES_INDEX, - 'NYPL_API_BASE_URL': process.env.NYPL_API_BASE_URL, - 'NYPL_OAUTH_URL': process.env.NYPL_OAUTH_URL, - 'NYPL_OAUTH_ID': process.env.NYPL_OAUTH_ID, - 'NYPL_OAUTH_SECRET': process.env.NYPL_OAUTH_SECRET -} - -let undefinedVars = [] +const requiredEnvVars = [ + 'SCSB_URL', + 'SCSB_API_KEY', + 'ELASTICSEARCH_URI', + 'RESOURCES_INDEX', + 'NYPL_API_BASE_URL', + 'NYPL_OAUTH_URL', + 'NYPL_OAUTH_ID', + 'NYPL_OAUTH_SECRET', +] -for (let varName in requiredEnvVars) { - // undefined and emptystring are False-y in JavaScript - if (!requiredEnvVars[varName]) { +const undefinedVars = requiredEnvVars.reduce((undefinedVars, varName) => { + if (!process.env[varName]) { undefinedVars.push(varName) } -} + return undefinedVars +}, []) if (undefinedVars.length > 0) { let message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` From 72ac8865e5435d54dfdeb58b886931ea960d0832 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 28 Apr 2023 13:10:52 -0400 Subject: [PATCH 05/51] Simplify preflight-check --- lib/preflight_check.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/preflight_check.js b/lib/preflight_check.js index afbbf0c6..77a15c05 100644 --- a/lib/preflight_check.js +++ b/lib/preflight_check.js @@ -11,12 +11,8 @@ const requiredEnvVars = [ 'NYPL_OAUTH_SECRET', ] -const undefinedVars = requiredEnvVars.reduce((undefinedVars, varName) => { - if (!process.env[varName]) { - undefinedVars.push(varName) - } - return undefinedVars -}, []) +const undefinedVars = requiredEnvVars + .filter((varName) => !process.env[varName]) if (undefinedVars.length > 0) { let message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` From 135bfc44bfef027db713544e5bedf47744de9723 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Wed, 24 May 2023 21:50:04 -0400 Subject: [PATCH 06/51] Add docker-compose, encrypted config --- .env-docker | 24 +++++++++++++ README.md | 21 +++--------- app.js | 77 +++++++++++++++++++++++------------------- docker-compose.yml | 12 +++++++ lib/load-config.js | 26 ++++++++++++++ lib/preflight_check.js | 20 +++++++---- 6 files changed, 121 insertions(+), 59 deletions(-) create mode 100644 .env-docker create mode 100644 docker-compose.yml create mode 100644 lib/load-config.js diff --git a/.env-docker b/.env-docker new file mode 100644 index 00000000..3e9570d3 --- /dev/null +++ b/.env-docker @@ -0,0 +1,24 @@ +# Greg built self-hosted domain: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= + +ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDGdkVdF5qRl8uYWPoQIBEIA87iTS5cOoPOH3LJA7ggi5Euz6hjEAXYUfWf2M5kkb+kpW0s3sGCbiY3j7OZKi631Wy3eSQ01ZQ7vtflF+ +ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= + +NYPL_API_BASE_URL=https://platform.nypl.org/api/v0.1/ +NYPL_OAUTH_URL=https://isso.nypl.org/ +ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== +ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= + +NYPL_CORE_VERSION=v2.0 +ROMCOM_MAX_XA_BNUM=b0 + +LOG_LEVEL=debug +FEATURES=on-site-edd + +SEARCH_ITEMS_SIZE=100 +PORT=8082 + +HIDE_NYPL_SOURCE= + +BIB_HAS_VOLUMES_THRESHOLD=0.01 diff --git a/README.md b/README.md index 49b35023..a44f9090 100644 --- a/README.md +++ b/README.md @@ -6,27 +6,14 @@ This is the API providing most of bibliographic data to the [NYPL Research Catal ## Installing & Running Locally -Use [nvm](https://github.com/creationix/nvm) to set your Node version: - -``` -nvm use +Start the container with AWS creds so that the app can decrypt config from `.env-docker`: ``` - -Install dependencies: - + AWS_ACCESS_KEY_ID=... AWS_SECRET_ACCESS_KEY=... docker-compose up ``` -npm i -``` - -Create a `.env` based on `.env.example`. Fill it with values from the appropriate `config/[environment].env` file (`qa.env` is probably sensible). Note - if using values from `config/[environment].env` - you must decrypt the following keys using [`aws kms decrypt`](https://github.com/NYPL/engineering-general/blob/main/security/secrets.md#encryptingdecrypting) (or [kms-util](https://github.com/NYPL-discovery/kms-util)) (i.e. all values in `.env` must be decrypted): - * `SCSB_URL` - * `SCSCB_API_KEY` - * `NYPL_OAUTH_SECRET` - -Now start the app: +After making changes, rebuild the image: ``` -npm start +docker-compose build ``` Note that when developing locally, you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). diff --git a/app.js b/app.js index f004ca65..57f61456 100644 --- a/app.js +++ b/app.js @@ -1,55 +1,62 @@ const config = require('config') +const express = require('express') + +const esClient = require('./lib/es-client') +const { loadConfig } = require('./lib/load-config') +const { preflightCheck } = require('./lib/preflight_check') + const swaggerDocs = require('./swagger.v1.1.x.json') const pjson = require('./package.json') -require('dotenv').config() -// Load logger after running above to ensure we respect LOG_LEVEL if set -const logger = require('./lib/logger') +const app = express() -require('./lib/preflight_check') +const run = async () => { + await loadConfig() -const express = require('express') -const esClient = require('./lib/es-client') + preflightCheck() -const app = express() + // Load logger after running above to ensure we respect LOG_LEVEL if set + app.logger = require('./lib/logger') -app.logger = logger -app.thesaurus = config.thesaurus + app.thesaurus = config.thesaurus -require('./lib/resources')(app) + require('./lib/resources')(app) -// routes -require('./routes/resources')(app) -require('./routes/misc')(app) + // routes + require('./routes/resources')(app) + require('./routes/misc')(app) -app.esClient = esClient + app.esClient = esClient -app.all('*', function (req, res, next) { - res.header('Access-Control-Allow-Origin', '*') - res.header('Access-Control-Allow-Methods', 'GET, OPTIONS') - res.header('Access-Control-Allow-Headers', 'Content-Type') - next() -}) + app.all('*', function (req, res, next) { + res.header('Access-Control-Allow-Origin', '*') + res.header('Access-Control-Allow-Methods', 'GET, OPTIONS') + res.header('Access-Control-Allow-Headers', 'Content-Type') + next() + }) -app.get('/', function (req, res) { - res.send(pjson.version) -}) + app.get('/', function (req, res) { + res.send(pjson.version) + }) -// Just testing route -app.get('/api/v0.1/discovery', function (req, res) { - res.send(pjson.version) -}) + // Just testing route + app.get('/api/v0.1/discovery', function (req, res) { + res.send(pjson.version) + }) -app.get('/api/v0.1/discovery/swagger', function (req, res) { - res.send(swaggerDocs) -}) + app.get('/api/v0.1/discovery/swagger', function (req, res) { + res.send(swaggerDocs) + }) -const port = process.env.PORT || config['port'] + const port = process.env.PORT || config['port'] -require('./lib/globals')(app).then((app) => { - app.listen(port, function () { - app.logger.info('Server started on port ' + port) + require('./lib/globals')(app).then((app) => { + app.listen(port, function () { + app.logger.info('Server started on port ' + port) + }) }) -}) +} + +run() module.exports = app diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..f5c6732e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3' +services: + app: + build: + context: . + volumes: + - ./:/app + ports: + - '8082:8082' + environment: + - AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID + - AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY diff --git a/lib/load-config.js b/lib/load-config.js new file mode 100644 index 00000000..ec6b1570 --- /dev/null +++ b/lib/load-config.js @@ -0,0 +1,26 @@ +const { decrypt } = require('./kms-helper') + +const loadConfig = async () => { + require('dotenv').config({ path: '.env-docker' }) + + // Identify env vars that begin with "ENCRYPTED_" + const encryptedKeys = Object.keys(process.env) + .filter((key) => /^ENCRYPTED_/.test(key)) + + const logger = require('./logger') + // Decrypt all encrypted env vars, setting a new decrypted env var without + // the ENCRYPTED_ prefix: + return Promise.all( + encryptedKeys + .map(async (key) => { + const keyWithoutPrefix = key.replace(/^ENCRYPTED_/, '') + const decrypted = await decrypt(process.env[key]) + logger.debug('Load-config: Decrypted ' + key) + process.env[keyWithoutPrefix] = decrypted + }) + ) +} + +module.exports = { + loadConfig +} diff --git a/lib/preflight_check.js b/lib/preflight_check.js index 77a15c05..93df3b96 100644 --- a/lib/preflight_check.js +++ b/lib/preflight_check.js @@ -11,12 +11,18 @@ const requiredEnvVars = [ 'NYPL_OAUTH_SECRET', ] -const undefinedVars = requiredEnvVars - .filter((varName) => !process.env[varName]) +const preflightCheck = () => { + const undefinedVars = requiredEnvVars + .filter((varName) => !process.env[varName]) -if (undefinedVars.length > 0) { - let message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` - console.log(message) - logger.error(message) - throw new Error(message) + if (undefinedVars.length > 0) { + let message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` + console.log(message) + logger.error(message) + throw new Error(message) + } +} + +module.exports = { + preflightCheck } From 007f400f08612ddf992a355390aace643a5e9080 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 8 Mar 2024 13:35:49 -0500 Subject: [PATCH 07/51] Update Node18 app to connect to 5.3 ES Adds encrypted config for current 5.3 ES in QA and Prod --- app.js | 8 ++++++++ config/production.env | 29 ++++++++++++++++++++--------- config/qa.env | 29 ++++++++++++++++++++--------- lib/es-client.js | 5 ++++- lib/load-config.js | 20 +++++++++++++++++--- routes/resources.js | 2 +- 6 files changed, 70 insertions(+), 23 deletions(-) diff --git a/app.js b/app.js index 57f61456..1fcc2831 100644 --- a/app.js +++ b/app.js @@ -10,6 +10,14 @@ const pjson = require('./package.json') const app = express() +// Tell express to trust x-forwarded-proto and x-forwarded-host headers when +// origin is local. This means req.hostname and req.protocol will +// return the actual host and proto of the original request when forwarded +// by the trusted proxy (Imperva). This is essential for building a valid login +// redirect_uri +// See https://expressjs.com/en/4x/api.html#trust.proxy.options.table +app.set('trust proxy', 'loopback') + const run = async () => { await loadConfig() diff --git a/config/production.env b/config/production.env index a7aba7c4..2716979b 100644 --- a/config/production.env +++ b/config/production.env @@ -1,13 +1,24 @@ -SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHwwegYJKoZIhvcNAQcGoG0wawIBADBmBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKPFC8wFkVM5CyT6VQIBEIA5m4eLBkpChRA//ZNEWsRqIDGZmevb/thzI03a0NiAW6VfybSAYpFthh+bj/yAk1VEEBF6r1T4A2GP -SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIMwgYAGCSqGSIb3DQEHBqBzMHECAQAwbAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAw8tglwVzGKBduDD9wCARCAP4biSz13FvZVHyQ8LKCb0+uLcKUKmzWqC5abVJI0kTmQJvjr9ViHsuP9/qj94Y8E7K96sb+fn0+HZk8So6CssA== -ELASTICSEARCH_HOST=search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com -RESOURCES_INDEX=resources-2018-04-09 -NYPL_OAUTH_URL=https://isso.nypl.org/ -NYPL_OAUTH_ID=discovery_api -NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAzRXNLpvMidP4TSJpsCARCAQxDNmJ+FgXuUocplZf15XlbC/quzjPHW+U8Zkv+TkukXs7YThqmTYWoXv34KVeymHcR3Gi5nkTpFuTAKiYRWDNeEaWA= +# Currently, this is our ES 5.3 for Prod: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAMMwgcAGCSqGSIb3DQEHBqCBsjCBrwIBADCBqQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyUXsOWkXt7ZqqD7uQCARCAfMIrLEGKd51lkX/hzWYlUms176JOee1HhdP/WIf5nd3xTwXJz1m4yOWwDsefoJEL4sez/2ZP43MVds+1lcM3PwkHMyN01sa2xpwVDrT68A/f22bDMtp6A9BmJqr7VBB5oq2j4FoXu2+0uaQWQRWJ0Ns+vQ6nbiR5V4Vv8zE= +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDF+IpeiMrtx/UveMsgIBEIAvIolGVXJPBMseyyep3/fyf/qP+KdATwfxT6Gw4dnatbiL5609NBeyyLNIprEM90g= + +ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHwwegYJKoZIhvcNAQcGoG0wawIBADBmBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKPFC8wFkVM5CyT6VQIBEIA5m4eLBkpChRA//ZNEWsRqIDGZmevb/thzI03a0NiAW6VfybSAYpFthh+bj/yAk1VEEBF6r1T4A2GP +ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIMwgYAGCSqGSIb3DQEHBqBzMHECAQAwbAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAw8tglwVzGKBduDD9wCARCAP4biSz13FvZVHyQ8LKCb0+uLcKUKmzWqC5abVJI0kTmQJvjr9ViHsuP9/qj94Y8E7K96sb+fn0+HZk8So6CssA== + NYPL_API_BASE_URL=https://platform.nypl.org/api/v0.1/ -NYPL_CORE_VERSION=v2.03 -PORT=8081 +NYPL_OAUTH_URL=https://isso.nypl.org/ +ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== +ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= + +NYPL_CORE_VERSION=v2.14 + +LOG_LEVEL=info +FEATURES=on-site-edd + SEARCH_ITEMS_SIZE=100 +PORT=8082 + +HIDE_NYPL_SOURCE= + BIB_HAS_VOLUMES_THRESHOLD=0.8 BIB_HAS_DATES_THRESHOLD=0.8 diff --git a/config/qa.env b/config/qa.env index ae67cbb4..db47087d 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,13 +1,24 @@ -SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIAwfgYJKoZIhvcNAQcGoHEwbwIBADBqBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDIvu80tR1bouRiOs6QIBEIA9GApMl/PyhgJ5DepSzd2LFF2M9o/8xh+k2CXbCskhhK/DTCpIcSmGEzaqvItktPRMaUd0xKTeBLph0cZDMw== -SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBGj6VVDSTYYcLzAdgIBEIAgOtoxPpUgkHHgc3eipZzyfMEUwYHIt7VvXy9Y5GRkVik= -ELASTICSEARCH_HOST=search-discovery-api-qa-exfqovqmh54mbkqr7cwk4awaqe.us-east-1.es.amazonaws.com -RESOURCES_INDEX=resources-2020-05-08 -NYPL_OAUTH_URL=https://isso.nypl.org/ -NYPL_OAUTH_ID=discovery_api -NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAzRXNLpvMidP4TSJpsCARCAQxDNmJ+FgXuUocplZf15XlbC/quzjPHW+U8Zkv+TkukXs7YThqmTYWoXv34KVeymHcR3Gi5nkTpFuTAKiYRWDNeEaWA= +# Currently, this is our ES 5.3 for QA: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAALswgbgGCSqGSIb3DQEHBqCBqjCBpwIBADCBoQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWLvUSzA/IAQCHl0MCARCAdNpF/Z1VJESwJ7hcwo/BqZz2mTDPA9NAPQ4zuPLsItz9A2lfHaP03bPuo9nq8VP5AKLOa4zPL0VoBmwEjj9qCCb+LSpQ3m+OoyM3BxG98/qYEcwXXOa8+0fH1x5asVrup/YICJdeD6jOewxttzzxCCGXEklL +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMK4A48qmN1m/MwZWgIBEIAvuuag76L0g0c2C+Jm4wiX3bLNpix2m4IPuEQLTgQ/eitS1QDpDFRaU9rGSccdvGQ= + +ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ +ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= + NYPL_API_BASE_URL=https://qa-platform.nypl.org/api/v0.1/ -NYPL_CORE_VERSION=v2.03 -PORT=8081 +NYPL_OAUTH_URL=https://isso.nypl.org/ +ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== +ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= + +NYPL_CORE_VERSION=v2.14 + +LOG_LEVEL=debug +FEATURES=on-site-edd + SEARCH_ITEMS_SIZE=100 +PORT=8082 + +HIDE_NYPL_SOURCE= + BIB_HAS_VOLUMES_THRESHOLD=0.8 BIB_HAS_DATES_THRESHOLD=0.8 diff --git a/lib/es-client.js b/lib/es-client.js index d164c723..fabd2578 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -1,6 +1,7 @@ const elasticsearch = require('@elastic/elasticsearch') const url = require('node:url') const { deepValue } = require('./util') +const logger = require('./logger') const clientWrapper = {} @@ -11,12 +12,13 @@ clientWrapper.esClient = function () { if (!this._esClient) { // Parse ES connection string: const { protocol, auth, host, port } = url.parse(process.env.ELASTICSEARCH_URI) - const [ username, password ] = auth.split(':') + const [ username, password ] = auth ? auth.split(':') : [] const options = { node: `${protocol}//${host}`, port, auth: { username, password } } + logger.debug(`Connecting to ES at ${host}:${port} ${username && password ? 'with creds' : 'w/out creds'}`) this._esClient = new elasticsearch.Client(options) } return this._esClient @@ -27,6 +29,7 @@ clientWrapper.esClient = function () { * the configured ES */ clientWrapper.search = function (body) { + logger.debug(`Performing ES search: ${JSON.stringify(body)}`) return this.esClient().search({ index: process.env.RESOURCES_INDEX, body diff --git a/lib/load-config.js b/lib/load-config.js index ec6b1570..c9f70b6e 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -1,13 +1,27 @@ +const dotenv = require('dotenv') + const { decrypt } = require('./kms-helper') const loadConfig = async () => { - require('dotenv').config({ path: '.env-docker' }) + // Use `ENV` var to determine what config to load (default production): + const env = process.env.ENV + && ['local', 'qa', 'qa-new-domain', 'production'].includes(process.env.ENV) + ? process.env.ENV + : 'production' + const envPath = `config/${env}.env` + + // Load env vars: + dotenv.config({ path: envPath }) + + // Now that we've loaded env vars, which may include LOG_LEVEL, instantiate logger: + const logger = require('./logger') + + logger.info(`Load-config: Loaded ${envPath} for ENV '${process.env.ENV || ''}'`) // Identify env vars that begin with "ENCRYPTED_" const encryptedKeys = Object.keys(process.env) .filter((key) => /^ENCRYPTED_/.test(key)) - const logger = require('./logger') // Decrypt all encrypted env vars, setting a new decrypted env var without // the ENCRYPTED_ prefix: return Promise.all( @@ -15,7 +29,7 @@ const loadConfig = async () => { .map(async (key) => { const keyWithoutPrefix = key.replace(/^ENCRYPTED_/, '') const decrypted = await decrypt(process.env[key]) - logger.debug('Load-config: Decrypted ' + key) + logger.debug(`Load-config: Decrypted ${key}`) process.env[keyWithoutPrefix] = decrypted }) ) diff --git a/routes/resources.js b/routes/resources.js index 69d309b1..ca64eb98 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -9,7 +9,7 @@ module.exports = function (app) { res.header('Access-Control-Allow-Origin', '*') res.header('Access-Control-Allow-Methods', 'GET, OPTIONS') res.header('Access-Control-Allow-Headers', 'Content-Type') - app.baseUrl = `http${req.secure ? 's' : ''}://${req.headers.host}/api/v${VER}/discovery` + app.baseUrl = `http${req.secure ? 's' : ''}://${req.get('host')}/api/v${VER}/discovery` next() }) From 5875d9f92c4da9c6ff33804011a3071ea4b39f80 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 8 Mar 2024 14:15:55 -0500 Subject: [PATCH 08/51] Linting (for major standardjs update) --- app.js | 2 +- lib/annotated-marc-serializer.js | 9 +- lib/availability_resolver.js | 24 +- lib/available_delivery_location_types.js | 15 +- lib/delivery-locations-resolver.js | 28 +- lib/errors.js | 1 - lib/es-client.js | 16 +- lib/fulfillment_resolver.js | 11 +- lib/globals.js | 2 +- lib/jsonld_serializers.js | 109 +- lib/load-config.js | 4 +- lib/location_label_updater.js | 5 +- lib/logger.js | 8 +- lib/ownership_determination.js | 4 +- lib/preflight_check.js | 6 +- lib/requestability_resolver.js | 10 +- lib/resources.js | 177 +- lib/response_massager.js | 2 +- lib/scsb-client.js | 7 +- lib/util.js | 73 +- package-lock.json | 3378 ++++++++++++++--- package.json | 6 +- routes/misc.js | 3 +- routes/resources.js | 28 +- scripts/compare-indexes.js | 2 +- scripts/diff-of-two-annotated-marcs.js | 8 +- test/aggregations.test.js | 10 +- test/annotated-marc-rules.test.js | 106 +- test/availability_resolver.test.js | 86 +- .../available_delivery_location_types.test.js | 2 +- test/delivery-locations-resolver.test.js | 130 +- test/fixtures.js | 14 +- test/fixtures/edd_elastic_search_response.js | 638 ++-- test/fixtures/elastic_search_response.js | 632 +-- test/fixtures/no_barcode_es_response.js | 628 +-- test/fixtures/recap-scsb-query-match.js | 184 +- test/fixtures/recap-scsb-query-mismatch.js | 184 +- test/fixtures/schomburg.js | 968 ++--- test/fixtures/specRequestable-es-response.js | 358 +- test/fulfillment_resolver.test.js | 6 +- test/item-resource-serializer.test.js | 32 +- test/location_label_updater.test.js | 48 +- test/ownership_determination.test.js | 26 +- test/parallel-fields-extractor.test.js | 2 +- test/requestability_resolver.test.js | 44 +- test/resource_serializer.test.js | 30 +- test/resources-responses.test.js | 76 +- test/resources.test.js | 32 +- test/test_helper.js | 2 +- test/util.test.js | 54 +- 50 files changed, 5365 insertions(+), 2865 deletions(-) diff --git a/app.js b/app.js index 1fcc2831..720aa7fd 100644 --- a/app.js +++ b/app.js @@ -56,7 +56,7 @@ const run = async () => { res.send(swaggerDocs) }) - const port = process.env.PORT || config['port'] + const port = process.env.PORT || config.port require('./lib/globals')(app).then((app) => { app.listen(port, function () { diff --git a/lib/annotated-marc-serializer.js b/lib/annotated-marc-serializer.js index 722ac069..d768c855 100644 --- a/lib/annotated-marc-serializer.js +++ b/lib/annotated-marc-serializer.js @@ -80,7 +80,7 @@ AnnotatedMarcSerializer.parseWebpubToAnnotatedMarcRules = function (webpubConten // b|r|310|-6|Current Frequency||b| // b|y|8[^5].|u|||b| - let subfields = Array.from(line.subfields) + const subfields = Array.from(line.subfields) let subfieldSpec = { subfields, directive: 'include' } if (subfields[0] === '-') subfieldSpec = { subfields: subfields.slice(1), directive: 'exclude' } @@ -209,9 +209,9 @@ AnnotatedMarcSerializer.formatVarFieldMatch = function (matchingVarField, rule) const extractContent = function (subfield) { if (subfield.tag === '4') { let newContent = subfield.content - let words = newContent.split(' ') + const words = newContent.split(' ') words.forEach((word) => { - let replacer = word.length === 3 && relatorMappings[word] + const replacer = word.length === 3 && relatorMappings[word] if (replacer) { newContent = newContent.replace(word, replacer) } @@ -230,6 +230,7 @@ AnnotatedMarcSerializer.formatVarFieldMatch = function (matchingVarField, rule) // ..Otherwise keep matching: else return rule.subfieldSpec.subfields.indexOf(subfield.tag) >= 0 } + return false }) const content = matchingVarField.content || matchedSubfields @@ -284,7 +285,7 @@ AnnotatedMarcSerializer.addStatementsToDoc = function (doc, rule, values) { const label = rule.label const fieldTag = rule.fieldTag const fields = doc[fieldTag] - let last = fields[fields.length - 1] + const last = fields[fields.length - 1] if (last && last.label === label) { last.values = last.values.concat(values) } else { diff --git a/lib/availability_resolver.js b/lib/availability_resolver.js index 68a8db5d..14c9cb27 100644 --- a/lib/availability_resolver.js +++ b/lib/availability_resolver.js @@ -181,7 +181,7 @@ class AvailabilityResolver { logger.warn(`Got bad itemAvailabilityStatus response from SCSB for barcodes (${barcodes}): ${JSON.stringify(itemsStatus)}`) return {} } - var barcodesAndAvailability = {} + const barcodesAndAvailability = {} itemsStatus.forEach((statusEntry) => { barcodesAndAvailability[statusEntry.itemBarcode] = statusEntry.itemAvailabilityStatus }) @@ -190,9 +190,9 @@ class AvailabilityResolver { } _parseBarCodesFromESResponse () { - var barcodes = [] - for (let hit of this.elasticSearchResponse.hits.hits) { - for (let item of (hit._source.items || [])) { + const barcodes = [] + for (const hit of this.elasticSearchResponse.hits.hits) { + for (const item of (hit._source.items || [])) { // despite its singular name item.identifier is an Array of barcodes if (item.identifier) { for (let identifier of item.identifier) { @@ -200,9 +200,9 @@ class AvailabilityResolver { // For now, let's convert them back to urn-style: identifier = ResourceSerializer.prototype._ensureIdentifierIsUrnStyle(identifier) - let barcode_array = identifier.split(':') - if (barcode_array.length === 3 && barcode_array[1] === 'barcode') { - barcodes.push(barcode_array[barcode_array.length - 1]) + const barcodeArray = identifier.split(':') + if (barcodeArray.length === 3 && barcodeArray[1] === 'barcode') { + barcodes.push(barcodeArray[barcodeArray.length - 1]) } } } @@ -226,7 +226,7 @@ class AvailabilityResolver { } if (!item.recapCustomerCode) item.recapCustomerCode = [mostRecentCustomerCode] else if (mostRecentCustomerCode !== item.recapCustomerCode[0]) { - logger.error('Mismatched customer code', { 'barcode': barcode }) + logger.error('Mismatched customer code', { barcode }) item.recapCustomerCode[0] = mostRecentCustomerCode } }).catch((error) => { @@ -236,7 +236,7 @@ class AvailabilityResolver { } _fixItemAvailability (barcodesAndAvailability) { - for (let hit of this.elasticSearchResponse.hits.hits) { + for (const hit of this.elasticSearchResponse.hits.hits) { (hit._source.items || []).map((item) => { const _isInRecap = isInRecap(item) if (item.electronicLocator) return item @@ -244,7 +244,7 @@ class AvailabilityResolver { // status is updated elsewhere. if (_isInRecap) { const barcode = this._getItemBarcode(item) - let recapAvailabilityStatus = barcodesAndAvailability[barcode] + const recapAvailabilityStatus = barcodesAndAvailability[barcode] if (recapAvailabilityStatus === 'Available') { item.status[0].id = config.get('itemAvailability.available.id') item.status[0].label = config.get('itemAvailability.available.label') @@ -263,6 +263,7 @@ class AvailabilityResolver { } _getItemBarcode (item) { + // TODO: This is an awkward use of .reduce. Should prob use .find return (item.identifier || []).reduce((_, identifier) => { // Rolling forward, some identifiers will be serialized as entities. // For now, let's convert them back to urn-style: @@ -270,8 +271,9 @@ class AvailabilityResolver { if (identifier.split(':').length === 3 && identifier.split(':')[1] === 'barcode') { return identifier.split(':')[2] } + return null }, null) } -} // end class +} // end class module.exports = AvailabilityResolver diff --git a/lib/available_delivery_location_types.js b/lib/available_delivery_location_types.js index 072984d7..da9c4c3f 100644 --- a/lib/available_delivery_location_types.js +++ b/lib/available_delivery_location_types.js @@ -1,7 +1,6 @@ -let logger = require('./logger') +const logger = require('./logger') const { makeNyplDataApiClient } = require('./data-api-client') - class AvailableDeliveryLocationTypes { static getScholarRoomByPatronId (patronID) { // If patronID is falsy (i.e. patron is not logged in) they're just a Rearcher: @@ -19,21 +18,21 @@ class AvailableDeliveryLocationTypes { } static _getPatronTypeOf (patronID) { - let __start = new Date() + const __start = new Date() - let apiURL = `patrons/${patronID}` + const apiURL = `patrons/${patronID}` return makeNyplDataApiClient().get(apiURL).then((response) => { logger.debug(`AvailableDeliveryLocationTypes: response from patron service ${apiURL}: ${JSON.stringify(response, null, 2)}`) - let patronType = response.data.fixedFields['47']['value'] + const patronType = response.data.fixedFields['47'].value // Log response time for science: - let ellapsed = ((new Date()) - __start) + const ellapsed = ((new Date()) - __start) logger.debug({ message: `Patron Service patron fetch took ${ellapsed}ms`, metric: 'available_delivery_location_types-_getPatronTypeOf', timeMs: ellapsed }) return patronType }).catch((e) => { // We can get more specific based on error type - let errorMessage = `Error hitting patron service: ${e}` + const errorMessage = `Error hitting patron service: ${e}` logger.error(errorMessage) throw new Error(errorMessage) }) @@ -49,7 +48,7 @@ class AvailableDeliveryLocationTypes { } } -let patronTypeMapping = require('@nypl/nypl-core-objects')('by-patron-type') +const patronTypeMapping = require('@nypl/nypl-core-objects')('by-patron-type') AvailableDeliveryLocationTypes.patronTypeMapping = patronTypeMapping diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 0b4815b1..4cf10cce 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -10,18 +10,19 @@ class DeliveryLocationsResolver { static requestableBasedOnHoldingLocation (item) { // Is this not requestable because of its holding location? try { - const holding_location_sierra_code = item.holdingLocation[0].id.split(':').pop() - return sierraLocations[holding_location_sierra_code].requestable + const holdingLocationSierraCode = item.holdingLocation[0].id.split(':').pop() + return sierraLocations[holdingLocationSierraCode].requestable } catch (e) { logger.warn('There is an item in the index with missing or malformed holdingLocation', item) return false } } + // Currently, there is no physical delivery requests for onsite items through Discovery API // Fetch Sierra delivery locations by Sierra holding location: static __deliveryLocationsByHoldingLocation (holdingLocation) { // If holdingLocation given, strip code from @id for lookup: - let locationCode = holdingLocation && holdingLocation.id ? holdingLocation.id.replace(/^loc:/, '') : null + const locationCode = holdingLocation && holdingLocation.id ? holdingLocation.id.replace(/^loc:/, '') : null // Is Sierra location code mapped? if (sierraLocations[locationCode] && sierraLocations[locationCode].sierraDeliveryLocations) { // It's mapped, but the sierraDeliveryLocation entities only have `code` and `label` @@ -48,6 +49,7 @@ class DeliveryLocationsResolver { return recapCustomerCodes[customerCode].sierraDeliveryLocations } } + // Fetch Sierra delivery locations by m2 customer code. Returns undefined if the m2 customer code is not requestable: static deliveryLocationsByM2CustomerCode (customerCode) { let m2CustomerCodes @@ -120,22 +122,22 @@ class DeliveryLocationsResolver { static __recapCustomerCodesByBarcodes (barcodes) { if (!barcodes || barcodes.length === 0) return Promise.resolve({}) - let scsbClient = new SCSBRestClient({ url: process.env.SCSB_URL, apiKey: process.env.SCSB_API_KEY }) + const scsbClient = new SCSBRestClient({ url: process.env.SCSB_URL, apiKey: process.env.SCSB_API_KEY }) // Record time to process all: - var __startAll = new Date() + const __startAll = new Date() return Promise.all( barcodes.map((barcode) => { // Record start time to process this request - var __start = new Date() + const __start = new Date() return scsbClient.search({ fieldValue: barcode, fieldName: 'Barcode' }) .then((response) => { - let ellapsed = ((new Date()) - __start) + const ellapsed = ((new Date()) - __start) logger.debug({ message: `HTC searchByParam API took ${ellapsed}ms`, metric: 'searchByParam-barcode', timeMs: ellapsed }) if (response && response.searchResultRows && response.searchResultRows.length) { - let results = response.searchResultRows + const results = response.searchResultRows let customerCode = null if (results && (results.length > 0) && results[0].searchItemResultRows.length > 0) { @@ -157,11 +159,11 @@ class DeliveryLocationsResolver { }) }) ).then((scsbResponses) => { - let ellapsed = ((new Date()) - __startAll) + const ellapsed = ((new Date()) - __startAll) logger.debug({ message: `HTC searchByParam API across ${barcodes.length} barcodes took ${ellapsed}ms total`, metric: 'searchByParam-barcode-multiple', timeMs: ellapsed }) // Filter out anything `undefined` and make sure at least one is valid: - var validPairs = [{}].concat(scsbResponses.filter((r) => r)) + const validPairs = [{}].concat(scsbResponses.filter((r) => r)) // Merge array of hashes into one big lookup hash: return Object.assign.apply(null, validPairs) }) @@ -204,6 +206,7 @@ class DeliveryLocationsResolver { }) ) } + static extractRecapBarcodes (items) { return items .filter((item) => { @@ -241,11 +244,11 @@ class DeliveryLocationsResolver { deliveryLocation = [] eddRequestable = false } - return { deliveryLocation: deliveryLocation, eddRequestable: eddRequestable } + return { deliveryLocation, eddRequestable } } static getOnsiteDeliveryInfo (item) { - let deliveryInfo = { + const deliveryInfo = { eddRequestable: false, deliveryLocation: [] } @@ -321,7 +324,6 @@ class DeliveryLocationsResolver { }) }) } - } module.exports = DeliveryLocationsResolver diff --git a/lib/errors.js b/lib/errors.js index a9efe817..81794d54 100644 --- a/lib/errors.js +++ b/lib/errors.js @@ -1,4 +1,3 @@ - // Thrown when parameter(s) are missing/invalid // See https://httpstatuses.com/422 class InvalidParameterError extends Error { diff --git a/lib/es-client.js b/lib/es-client.js index fabd2578..b522e897 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -12,7 +12,7 @@ clientWrapper.esClient = function () { if (!this._esClient) { // Parse ES connection string: const { protocol, auth, host, port } = url.parse(process.env.ELASTICSEARCH_URI) - const [ username, password ] = auth ? auth.split(':') : [] + const [username, password] = auth ? auth.split(':') : [] const options = { node: `${protocol}//${host}`, port, @@ -42,10 +42,16 @@ clientWrapper.search = function (body) { clientWrapper.nonRecapItemStatusAggregation = (bnum) => { const esQuery = { size: 0, - query: { bool: { must: [ { term: { - uri: bnum - } } ] } }, - _source: { includes: [ 'uri' ] }, + query: { + bool: { + must: [{ + term: { + uri: bnum + } + }] + } + }, + _source: { includes: ['uri'] }, aggs: { statuses: { nested: { diff --git a/lib/fulfillment_resolver.js b/lib/fulfillment_resolver.js index 48d250ff..9df8a448 100644 --- a/lib/fulfillment_resolver.js +++ b/lib/fulfillment_resolver.js @@ -4,15 +4,16 @@ class FulfillmentResolver { constructor (responseReceived) { this.elasticSearchResponse = responseReceived } + responseWithFulfillment () { - for (let hit of this.elasticSearchResponse.hits.hits) { + for (const hit of this.elasticSearchResponse.hits.hits) { (hit._source.items || []).map((item) => { if (item.electronicLocator) return item const _isInRecap = isInRecap(item) const physFulfillment = this._determinePhysFulfillment(item, _isInRecap) const eddFulfillment = this._determineEddFulfillment(item, _isInRecap) - item.physFulfillment = physFulfillment && {'@id': physFulfillment} - item.eddFulfillment = eddFulfillment && {'@id': eddFulfillment} + item.physFulfillment = physFulfillment && { '@id': physFulfillment } + item.eddFulfillment = eddFulfillment && { '@id': eddFulfillment } return item }) } @@ -39,7 +40,7 @@ class FulfillmentResolver { } _determinePhysFulfillment (item, _isInRecap) { - let fulfillmentPrefix = this._fulfillmentPrefix(item, _isInRecap) + const fulfillmentPrefix = this._fulfillmentPrefix(item, _isInRecap) let fulfillmentSuffix if (item.physRequestable && _isInRecap) { fulfillmentSuffix = '-offsite' @@ -50,7 +51,7 @@ class FulfillmentResolver { } _determineEddFulfillment (item, _isInRecap) { - let fulfillmentPrefix = this._fulfillmentPrefix(item, _isInRecap) + const fulfillmentPrefix = this._fulfillmentPrefix(item, _isInRecap) if (item.eddRequestable && fulfillmentPrefix) { return 'fulfillment:' + fulfillmentPrefix + '-edd' } diff --git a/lib/globals.js b/lib/globals.js index 6235a7e1..0ab071db 100644 --- a/lib/globals.js +++ b/lib/globals.js @@ -2,7 +2,7 @@ const util = require('./util') module.exports = function (app) { // Load various two-col csvs mapping column 0 to value in column 1 - var promises = ['prefixes'].map((which) => { + const promises = ['prefixes'].map((which) => { return util.readCsv(`./data/${which}.csv`).then((rows) => { return { [which]: rows.reduce((h, r) => { diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index a4a4bbdf..f9983dd9 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -1,11 +1,11 @@ 'use strict' -var R = require('ramda') -var lexicon = require('nypl-registry-utils-lexicon') +const R = require('ramda') +const lexicon = require('nypl-registry-utils-lexicon') const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper') -var util = require('./util.js') +const util = require('./util.js') const logger = require('./logger') const PACK_DELIM = '||' @@ -17,7 +17,7 @@ class JsonLdSerializer { } format () { - var base = {} + const base = {} if (this.options.root) { // If expandContext, dump full context doc into result, otherwise just give URL if (this.options.expandContext) base['@context'] = util.buildJsonLdContext({}) @@ -49,12 +49,12 @@ class JsonLdListSerializer extends JsonLdSerializer { statements () { return Object.assign({}, { - 'itemListElement': this.items.map(this.itemSerializer.bind(this)) + itemListElement: this.items.map(this.itemSerializer.bind(this)) }, (this.options.extraRootProperties || {})) } itemSerializer (item) { - var element = { + const element = { '@type': this.itemType, '@id': this.resultId(item) } @@ -70,20 +70,20 @@ class JsonLdItemSerializer extends JsonLdSerializer { } statements () { - var stmts = { '@id': this.resultId() } + const stmts = { '@id': this.resultId() } // Takes any kind of value (array, object, string) and ensures .id props are formatted as '@id' - var formatVal = (v) => { + const formatVal = (v) => { if (Array.isArray(v)) return v.map(formatVal) else if (v && typeof v === 'object') { - var formatted = v + const formatted = v // Reassign id to @id, type to @type, value to @value ;['id', 'type', 'value'].forEach((specialProp) => { - if (formatted[specialProp]) { - formatted[`@${specialProp}`] = formatted[specialProp] - delete formatted[specialProp] - } - }) + if (formatted[specialProp]) { + formatted[`@${specialProp}`] = formatted[specialProp] + delete formatted[specialProp] + } + }) // TODO need to correct this in the indexer, not here if (formatted.label) { formatted.prefLabel = formatted.label @@ -100,9 +100,9 @@ class JsonLdItemSerializer extends JsonLdSerializer { // By convention, any property that ends 'V[num]' should have the suffix removed // e.g. noteV2 becomes note jsonLdKey = indexedProperty.replace(/V\d+$/, '') - var val = this.body[indexedProperty] + const val = this.body[indexedProperty] // If it's a numeric, force it to appear as a single val - var singleValue = val && val.length === 1 && (typeof val[0]) === 'number' + const singleValue = val && val.length === 1 && (typeof val[0]) === 'number' // Properties with '_' exist for specialized querying; don't save them to object: if (indexedProperty.indexOf('_') < 0 && (this.body[indexedProperty] || typeof this.body[indexedProperty] === 'boolean')) { stmts[jsonLdKey] = formatVal(singleValue ? val[0] : val) @@ -149,14 +149,12 @@ class JsonLdItemSerializer extends JsonLdSerializer { JsonLdItemSerializer.parsePackedStatement = function (value, base) { if ((typeof base !== 'object')) base = {} - var parse = (str) => { - var urn = str.split(PACK_DELIM)[0] - var label = str.split(PACK_DELIM)[1] + const parse = (str) => { + const urn = str.split(PACK_DELIM)[0] + const label = str.split(PACK_DELIM)[1] - var urnParts = urn.split(':') - var type = { terms: 'nypl:Term', agents: 'nypl:Agent' }[urnParts[0]] - var id = urnParts[1] - id = id.match(/^\d+$/) ? parseInt(id) : id + const urnParts = urn.split(':') + const type = { terms: 'nypl:Term', agents: 'nypl:Agent' }[urnParts[0]] return { '@type': type, '@id': urn, prefLabel: label } } @@ -167,11 +165,11 @@ JsonLdItemSerializer.parsePackedStatement = function (value, base) { // Parse all packed properties on given object, returning new object JsonLdItemSerializer.parsePackedStatements = function (_body) { - var body = Object.assign({}, _body) + const body = Object.assign({}, _body) Object.keys(body).forEach((k) => { if (k.match(/\w+_packed$/)) { - var value = body[k] - var newField = k.replace(/_packed$/, '') + const value = body[k] + const newField = k.replace(/_packed$/, '') body[newField] = JsonLdItemSerializer.parsePackedStatement(value) delete body[k] @@ -191,16 +189,16 @@ class SearchResultsSerializer extends JsonLdListSerializer { } itemSerializer (item) { - var element = { + const element = { '@type': 'searchResult', - 'searchResultScore': item.score, - 'result': { + searchResultScore: item.score, + result: { '@type': [this.resultType], '@id': this.resultId(item.record) } } - element['result'] = Object.assign(element['result'], item.record) - if (item.title) element['result']['prefLabel'] = item.title + element.result = Object.assign(element.result, item.record) + if (item.title) element.result.prefLabel = item.title return element } } @@ -217,15 +215,15 @@ class ResourceSerializer extends JsonLdItemSerializer { } statements () { - var stmts = JsonLdItemSerializer.prototype.statements.call(this) + const stmts = JsonLdItemSerializer.prototype.statements.call(this) if (this.body.parentUri) stmts.memberOf = R.flatten([util.eachValue(this.body.parentUri, (id) => ({ '@type': 'nypl:Resource', '@id': `res:${id}` }))]) // Parse all contributor_(aut|ill|...) statements: Object.keys(this.body).forEach((field) => { - var match = null + let match = null if ((match = field.match(/^contributor_(\w{3})_packed$/))) { - var role = match[1] + const role = match[1] stmts[`roles:${role}`] = JsonLdItemSerializer.parsePackedStatement(this.body[field]).map((contributor) => { return Object.assign(contributor, { note: lexicon.labels.relators[role] }) }) @@ -261,7 +259,8 @@ class ResourceSerializer extends JsonLdItemSerializer { // Check both numItemsTotal (the property written by RCI) and numItems // (written by legacy indexing process). Note that very old bibs may have // neither - const numItems = this.body.numItemsTotal && this.body.numItemsTotal[0] || this.body.numItems && this.body.numItems[0] + const numItems = (this.body.numItemsTotal && this.body.numItemsTotal[0]) || + (this.body.numItems && this.body.numItems[0]) if (numItems) { if (Array.isArray(this.body.numItemVolumesParsed)) { stmts.hasItemVolumes = this.body.numItemVolumesParsed[0] / numItems >= parseFloat(process.env.BIB_HAS_VOLUMES_THRESHOLD) @@ -281,11 +280,11 @@ class ResourceSerializer extends JsonLdItemSerializer { ResourceSerializer.formatElectronicResourceBlankNode = function (link, rdfsType) { // Get the link label (fall back on prefLabel if serialization moved it there) - let label = link.label || link.prefLabel + const label = link.label || link.prefLabel return { // Add rdf:type to this blank node: '@type': rdfsType, - label: label, + label, // TODO this is a temporary fix to accomodate supplementaryContent nodes that // were indexed with `id` instead of `url`. This ensures it's sent to // client in the correct `url` property regardless of where it's stored. @@ -326,16 +325,16 @@ class ItemResourceSerializer extends JsonLdItemSerializer { } statements () { - var stmts = JsonLdItemSerializer.prototype.statements.call(this) + const stmts = JsonLdItemSerializer.prototype.statements.call(this) if (stmts.identifier) { // Add idNyplSourceId convenience property by parsing identifiers that match urn:[source]:[id] this.body.identifier .filter((urn) => /^urn:(SierraNypl|Recap.+):.+/.test(urn)) .forEach((urn) => { - var type = urn.split(':')[1] - var value = urn.split(':')[2] - stmts['idNyplSourceId'] = { '@type': type, '@value': value } + const type = urn.split(':')[1] + const value = urn.split(':')[2] + stmts.idNyplSourceId = { '@type': type, '@value': value } }) } @@ -395,7 +394,7 @@ class ItemResultsSerializer extends JsonLdListSerializer { } static serialize (items, opts) { - var results = items.map((i) => ItemResourceSerializer.serialize(i)) + const results = items.map((i) => ItemResourceSerializer.serialize(i)) return (new ItemResultsSerializer(results, opts)).format() } } @@ -415,7 +414,7 @@ class ResourceResultsSerializer extends SearchResultsSerializer { } static serialize (resp, opts) { - var results = resp.hits.hits.map((h) => ({ score: h._score, record: ResourceSerializer.serialize(h._source) })) + const results = resp.hits.hits.map((h) => ({ score: h._score, record: ResourceSerializer.serialize(h._source) })) opts = Object.assign({ extraRootProperties: { totalResults: resp.hits.total } }, opts) return (new ResourceResultsSerializer(results, opts)).format() } @@ -438,7 +437,7 @@ class AggregationsSerializer extends JsonLdListSerializer { static serialize (resp, options) { if ((typeof options) === 'undefined') options = {} - var items = Object.keys(resp.aggregations).map((field) => AggregationSerializer.serialize(Object.assign({ id: field }, resp.aggregations[field]), options)) + const items = Object.keys(resp.aggregations).map((field) => AggregationSerializer.serialize(Object.assign({ id: field }, resp.aggregations[field]), options)) return (new AggregationsSerializer(items, Object.assign({ extraRootProperties: { totalResults: resp.hits.total } }, options))).format() } } @@ -455,16 +454,16 @@ class AggregationSerializer extends JsonLdItemSerializer { } statements () { - var stmts = JsonLdItemSerializer.prototype.statements.call(this) + const stmts = JsonLdItemSerializer.prototype.statements.call(this) stmts.field = this.body.id - var field = this.body.id - var values = this.body.buckets.map((b) => ({ value: b.key, count: b.doc_count })) + const field = this.body.id + const values = this.body.buckets.map((b) => ({ value: b.key, count: b.doc_count })) try { stmts.values = values.map((v) => { if (this.options.packed_fields && this.options.packed_fields.indexOf(field) >= 0) { // Look for label-packed field (only check first value) - var p = v.value.split(PACK_DELIM) + const p = v.value.split(PACK_DELIM) v.value = p[0] v.label = p[1] } else v.label = v.value @@ -499,10 +498,10 @@ class AgentResultsSerializer extends SearchResultsSerializer { } static serialize (resp) { - var results = [] - var hits = resp.hits.hits + const results = [] + const hits = resp.hits.hits hits.forEach(function (h) { - var serialized = AgentSerializer.serialize(h._source) + const serialized = AgentSerializer.serialize(h._source) results.push(serialized) }) return (new AgentResultsSerializer(results, { extraRootProperties: { totalResults: resp.hits.total } })).format() @@ -517,7 +516,7 @@ class AgentSerializer extends JsonLdItemSerializer { super(item, options) this.type = ['edm:Agent'] - var foafType = 'foaf:Person' + let foafType = 'foaf:Person' if (item.type === 'Meeting') foafType = 'foaf:Group' if (item.type === 'Coporation') foafType = 'foaf:Organization' if (item.type === 'Organization') foafType = 'foaf:Organization' @@ -529,9 +528,9 @@ class AgentSerializer extends JsonLdItemSerializer { } statements () { - var h = JsonLdItemSerializer.parsePackedStatements(this.body) + const h = JsonLdItemSerializer.parsePackedStatements(this.body) - var stmts = JsonLdItemSerializer.prototype.statements.call(this) + const stmts = JsonLdItemSerializer.prototype.statements.call(this) if (h.label) stmts.prefLabel = h.label @@ -561,7 +560,7 @@ class AgentSerializer extends JsonLdItemSerializer { static serialize (resp, options) { if (resp.identifier) { - var bnum = null + let bnum = null if ((bnum = resp.identifier.filter((i) => i.match(/^urn:bnum:/))) && (bnum = bnum[0]) && (bnum = bnum.split(':')) && (bnum = bnum[bnum.length - 1])) { resp.depiction = `https://s3.amazonaws.com/data.nypl.org/bookcovers/${bnum}_ol.jpg` } diff --git a/lib/load-config.js b/lib/load-config.js index c9f70b6e..402a904c 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -4,8 +4,8 @@ const { decrypt } = require('./kms-helper') const loadConfig = async () => { // Use `ENV` var to determine what config to load (default production): - const env = process.env.ENV - && ['local', 'qa', 'qa-new-domain', 'production'].includes(process.env.ENV) + const env = process.env.ENV && + ['local', 'qa', 'qa-new-domain', 'production'].includes(process.env.ENV) ? process.env.ENV : 'production' const envPath = `config/${env}.env` diff --git a/lib/location_label_updater.js b/lib/location_label_updater.js index 73c30bf5..c23f787a 100644 --- a/lib/location_label_updater.js +++ b/lib/location_label_updater.js @@ -7,8 +7,8 @@ class LocationLabelUpdater { // returns an updated elasticSearchResponse with the most recent labels for locations responseWithUpdatedLabels () { - let resp = this.elasticSearchResponse - let updatedHits = resp.hits.hits.map((bib) => { + const resp = this.elasticSearchResponse + const updatedHits = resp.hits.hits.map((bib) => { // Update locations for items: ; (bib._source.items || []).forEach((item) => { if (item.holdingLocation && item.holdingLocation.length > 0) { @@ -34,7 +34,6 @@ class LocationLabelUpdater { resp.hits.hits = updatedHits return resp } - } module.exports = LocationLabelUpdater diff --git a/lib/logger.js b/lib/logger.js index f5fafadd..e5f5a541 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -6,11 +6,11 @@ winston.emitErrs = false // Failing that, it's set to 'debug'. const logLevel = process.env.LOG_LEVEL || { - 'production': 'info', - 'test': 'error' + production: 'info', + test: 'error' }[process.env.NODE_ENV] || 'debug' -let loggerTransports = [ +const loggerTransports = [ new winston.transports.File({ level: logLevel, filename: './log/discovery-api.log', @@ -20,7 +20,7 @@ let loggerTransports = [ colorize: false, json: false, formatter: (options) => { - let outputObject = { + const outputObject = { level: options.level.toUpperCase(), message: options.message, timestamp: new Date().toISOString() diff --git a/lib/ownership_determination.js b/lib/ownership_determination.js index 5b682210..44419ce8 100644 --- a/lib/ownership_determination.js +++ b/lib/ownership_determination.js @@ -2,9 +2,9 @@ const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper' // This is based on uri now but should be changed to use the 'item.owner' field once it's more reliably serialized. // This just talks about ownership, not recap vs non-recap -let isItemNyplOwned = (item) => { +const isItemNyplOwned = (item) => { const { nyplSource } = NyplSourceMapper.instance().splitIdentifier(item.uri) return nyplSource === 'sierra-nypl' } -module.exports = {isItemNyplOwned} +module.exports = { isItemNyplOwned } diff --git a/lib/preflight_check.js b/lib/preflight_check.js index 93df3b96..a9637112 100644 --- a/lib/preflight_check.js +++ b/lib/preflight_check.js @@ -1,4 +1,4 @@ -let logger = require('./logger') +const logger = require('./logger') const requiredEnvVars = [ 'SCSB_URL', @@ -8,7 +8,7 @@ const requiredEnvVars = [ 'NYPL_API_BASE_URL', 'NYPL_OAUTH_URL', 'NYPL_OAUTH_ID', - 'NYPL_OAUTH_SECRET', + 'NYPL_OAUTH_SECRET' ] const preflightCheck = () => { @@ -16,7 +16,7 @@ const preflightCheck = () => { .filter((varName) => !process.env[varName]) if (undefinedVars.length > 0) { - let message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` + const message = `The following ENV_VAR(S) must be defined: ${undefinedVars.join(', ')}.` console.log(message) logger.error(message) throw new Error(message) diff --git a/lib/requestability_resolver.js b/lib/requestability_resolver.js index 9574a314..393527f9 100644 --- a/lib/requestability_resolver.js +++ b/lib/requestability_resolver.js @@ -5,7 +5,7 @@ const logger = require('./logger') class RequestabilityResolver { static fixItemRequestability (elasticSearchResponse) { elasticSearchResponse.hits.hits - .map((hit) => { + .forEach((hit) => { hit._source.items = hit._source.items.map((item) => { if (item.electronicLocator) return item let deliveryInfo @@ -19,12 +19,12 @@ class RequestabilityResolver { deliveryInfo = { eddRequestable: true, deliveryLocation: [''] } } else if (itemIsInRecap && hasRecapCustomerCode) { deliveryInfo = DeliveryLocationsResolver.getRecapDeliveryInfo(item) - physRequestableCriteria = `${deliveryInfo.deliveryLocation && - deliveryInfo.deliveryLocation.length || 0} delivery locations.` + physRequestableCriteria = `${(deliveryInfo.deliveryLocation && + deliveryInfo.deliveryLocation.length) || 0} delivery locations.` } else if (!itemIsInRecap) { deliveryInfo = DeliveryLocationsResolver.getOnsiteDeliveryInfo(item) - physRequestableCriteria = `${deliveryInfo.deliveryLocation && - deliveryInfo.deliveryLocation.length || 0} delivery locations.` + physRequestableCriteria = `${(deliveryInfo.deliveryLocation && + deliveryInfo.deliveryLocation.length) || 0} delivery locations.` } if (isInSchomburg(item)) { deliveryInfo = getSchomburgDeliveryInfo(item, deliveryInfo) diff --git a/lib/resources.js b/lib/resources.js index 912c3889..a9108d94 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -21,14 +21,14 @@ const errors = require('./errors') const RESOURCES_INDEX = process.env.RESOURCES_INDEX const ITEM_FILTER_AGGREGATIONS = { - item_location: { nested: { path: 'items' }, aggs: { '_nested': { terms: { size: 100, field: 'items.holdingLocation_packed' } } } }, - item_status: { nested: { path: 'items' }, aggs: { '_nested': { terms: { size: 100, field: 'items.status_packed' } } } }, - item_format: { nested: { path: 'items' }, aggs: { '_nested': { terms: { size: 100, field: 'items.formatLiteral' } } } } + item_location: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.holdingLocation_packed' } } } }, + item_status: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.status_packed' } } } }, + item_format: { nested: { path: 'items' }, aggs: { _nested: { terms: { size: 100, field: 'items.formatLiteral' } } } } } // Configures aggregations: const AGGREGATIONS_SPEC = { - owner: { nested: { path: 'items' }, aggs: { '_nested': { terms: { field: 'items.owner_packed' } } } }, + owner: { nested: { path: 'items' }, aggs: { _nested: { terms: { field: 'items.owner_packed' } } } }, subjectLiteral: { terms: { field: 'subjectLiteral.raw' } }, language: { terms: { field: 'language_packed' } }, materialType: { terms: { field: 'materialType_packed' } }, @@ -158,7 +158,7 @@ const ADVANCED_SEARCH_PARAMS = ['title', 'subject', 'contributor'] const IDENTIFIER_NUMBER_PARAMS = ['isbn', 'issn', 'lccn', 'oclc'] // Configure controller-wide parameter parsing: -var parseSearchParams = function (params) { +const parseSearchParams = function (params) { return parseParams(params, { q: { type: 'string' }, page: { type: 'int', default: 1 }, @@ -272,7 +272,7 @@ module.exports = function (app, _private = null) { } else if (resp && resp.hits && resp.hits.total === 0) { throw new errors.NotFoundError(`Record not found: ${params.uri}`) } else { - let massagedResponse = new ResponseMassager(resp) + const massagedResponse = new ResponseMassager(resp) return massagedResponse.massagedResponse(request, { queryRecapCustomerCode: !!params.itemUri, recapBarcodesByStatus }) .catch((e) => { // If error hitting HTC, just return response un-modified: @@ -311,7 +311,7 @@ module.exports = function (app, _private = null) { }, opts) // Build ES query body: - var body = { + const body = { query: { nested: { path: 'items', @@ -332,7 +332,7 @@ module.exports = function (app, _private = null) { // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: resp = resp.body || {} - if (!resp || !resp.hits || resp.hits.total === 0) return Promise.reject('No matching items') + if (!resp || !resp.hits || resp.hits.total === 0) return Promise.reject(new Error('No matching items')) resp = new LocationLabelUpdater(resp).responseWithUpdatedLabels() // Convert this ES bibs response into an array of flattened items: return resp.hits.hits @@ -354,18 +354,18 @@ module.exports = function (app, _private = null) { barcodes: { type: 'string', repeatable: true }, patronId: { type: 'string' } }) - var barcodes = Array.isArray(params.barcodes) ? params.barcodes : [params.barcodes] + const barcodes = Array.isArray(params.barcodes) ? params.barcodes : [params.barcodes] - var identifierValues = barcodes.map((barcode) => `urn:barcode:${barcode}`) + const identifierValues = barcodes.map((barcode) => `urn:barcode:${barcode}`) // Create promise to resolve deliveryLocationTypes by patron type: - let lookupPatronType = AvailableDeliveryLocationTypes.getScholarRoomByPatronId(params.patronId) + const lookupPatronType = AvailableDeliveryLocationTypes.getScholarRoomByPatronId(params.patronId) .catch((e) => { throw new errors.InvalidParameterError('Invalid patronId') }) // Create promise to resolve items: - let fetchItems = itemsByFilter( + const fetchItems = itemsByFilter( { terms: { 'items.identifier': identifierValues } }, { _source: ['uri', 'type', 'items.uri', 'items.type', 'items.identifier', 'items.holdingLocation', 'items.status', 'items.catalogItemType', 'items.accessMessage', 'items.m2CustomerCode'] } @@ -380,8 +380,8 @@ module.exports = function (app, _private = null) { return Promise.all([fetchItems, lookupPatronType]) .then((resp) => { // The resolved values of Promise.all are strictly ordered based on original array of promises - let items = resp[0] - let scholarRoom = resp[1] + const items = resp[0] + const scholarRoom = resp[1] // Use HTC API and nypl-core mappings to ammend ES response with deliveryLocations: return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability(items, scholarRoom) @@ -470,7 +470,7 @@ module.exports = function (app, _private = null) { path: 'items', query: { bool: { - must_not: [ { exists: { field: 'items.electronicLocator' } } ] + must_not: [{ exists: { field: 'items.electronicLocator' } }] } }, inner_hits: { name: 'allItems' } @@ -494,7 +494,7 @@ module.exports = function (app, _private = null) { // Treat case where range start equals range end same as case of single value: if (range[0] === range[1]) range = range.slice(0, 1) - let rangeQuery = { + const rangeQuery = { gte: range[0] } if (range.length === 2) { @@ -635,7 +635,7 @@ module.exports = function (app, _private = null) { inline: 'doc[\'items.idBarcode\'].value == null || ' + 'params.unavailableRecapBarcodes.contains(doc[\'items.idBarcode\'].values[0])', lang: 'painless', - params: { unavailableRecapBarcodes: unavailableRecapBarcodes } + params: { unavailableRecapBarcodes } } } } @@ -646,8 +646,8 @@ module.exports = function (app, _private = null) { // Item's ReCAP status agrees with filter: const itemRecapStatusAgreesWithFilterClause = selectedRecapStatus === 'status:na' - ? itemIsUnavailableInRecapClause - : { bool: { must_not: itemIsUnavailableInRecapClause } } + ? itemIsUnavailableInRecapClause + : { bool: { must_not: itemIsUnavailableInRecapClause } } return { bool: { @@ -712,29 +712,29 @@ module.exports = function (app, _private = null) { excludes: EXCLUDE_FIELDS.concat(['items']) } - body = addInnerHits(body, { merge_checkin_card_items: params['merge_checkin_card_items'] }) + body = addInnerHits(body, { merge_checkin_card_items: params.merge_checkin_card_items }) app.logger.debug('Resources#search', RESOURCES_INDEX, body) return app.esClient.search(body) - .then((resp) => { + .then((resp) => { // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body || {} - let massagedResponse = new ResponseMassager(resp) - return massagedResponse.massagedResponse(request) - .catch((e) => { + const massagedResponse = new ResponseMassager(resp) + return massagedResponse.massagedResponse(request) + .catch((e) => { // If error hitting HTC, just return response un-modified: - return resp - }) - .then((updatedResponse) => ResourceResultsSerializer.serialize(updatedResponse, opts)) - }) + return resp + }) + .then((updatedResponse) => ResourceResultsSerializer.serialize(updatedResponse, opts)) + }) } // Get all aggregations: app.resources.aggregations = function (params, opts) { params = parseSearchParams(params) - var body = buildElasticBody(params) + const body = buildElasticBody(params) // Add an `aggregations` entry to the ES body describing the aggretations // we want. Set the `size` property to per_page (default 50) for each. @@ -748,39 +748,39 @@ module.exports = function (app, _private = null) { body.size = 0 - let serializationOpts = Object.assign(opts, { + const serializationOpts = Object.assign(opts, { packed_fields: ['location', 'materialType', 'locationBuilding', 'language', 'carrierType', 'mediaType', 'issuance', 'status', 'owner'] }) app.logger.debug('Resources#aggregations:', body) return app.esClient.search(body) - .then((resp) => { + .then((resp) => { // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body || {} - // Transform response slightly before serialization: - resp.aggregations = Object.keys(resp.aggregations) - .reduce((aggs, field) => { - let aggregation = resp.aggregations[field] + // Transform response slightly before serialization: + resp.aggregations = Object.keys(resp.aggregations) + .reduce((aggs, field) => { + let aggregation = resp.aggregations[field] - // If it's nested, it will be in our special '_nested' prop: - if (aggregation._nested) aggregation = aggregation._nested + // If it's nested, it will be in our special '_nested' prop: + if (aggregation._nested) aggregation = aggregation._nested - aggs[field] = aggregation - return aggs - }, {}) + aggs[field] = aggregation + return aggs + }, {}) - return AggregationsSerializer.serialize(resp, serializationOpts) - }) + return AggregationsSerializer.serialize(resp, serializationOpts) + }) } // Get a single aggregation: app.resources.aggregation = (params, opts) => { params = parseSearchParams(params) - if (Object.keys(AGGREGATIONS_SPEC).indexOf(params.field) < 0) return Promise.reject('Invalid aggregation field') + if (Object.keys(AGGREGATIONS_SPEC).indexOf(params.field) < 0) return Promise.reject(new Error('Invalid aggregation field')) - var body = buildElasticBody(params) + const body = buildElasticBody(params) // We're fetching aggs, so specify 0 resource results: body.size = 0 @@ -793,7 +793,7 @@ module.exports = function (app, _private = null) { body.aggregations[params.field].terms.size = params.per_page } - var serializationOpts = Object.assign(opts, { + const serializationOpts = Object.assign(opts, { // This tells the serializer what fields are "packed" fields, which should be split apart packed_fields: ['materialType', 'language', 'carrierType', 'mediaType', 'issuance', 'status', 'owner'], root: true @@ -801,30 +801,15 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#aggregation:', body) return app.esClient.search(body) - .then((resp) => { + .then((resp) => { // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} - - // If it's nested, it will be in our special '_nested' prop: - resp = resp.aggregations[params.field]._nested || resp.aggregations[params.field] - resp.id = params.field - return AggregationSerializer.serialize(resp, serializationOpts) - }) - } + resp = resp.body || {} - // This is TK - app.resources.byTerm = function (id, cb) { - app.db.returnCollectionTripleStore('resources', function (err, resources) { - if (err) throw err - resources.find({ allTerms: parseInt(id) }).limit(100).toArray(function (err, results) { - if (err) throw err - if (results.length === 0) { - cb(false) - } else { - cb(results) - } + // If it's nested, it will be in our special '_nested' prop: + resp = resp.aggregations[params.field]._nested || resp.aggregations[params.field] + resp.id = params.field + return AggregationSerializer.serialize(resp, serializationOpts) }) - }) } // For unit testing, export private methods if second arg given: @@ -857,19 +842,19 @@ const buildElasticBody = function (params) { return queryForIdentifierNumber(params) } - var body = { + const body = { from: (params.per_page * (params.page - 1)), size: params.per_page } if (params.filters || queryHasParams(params)) { - var query = buildElasticQuery(params) + const query = buildElasticQuery(params) // contains query: give it a score if (queryHasParams(params)) { body.query = { function_score: { - query: query + query } } body.min_score = 0.65 @@ -904,8 +889,8 @@ const buildElasticBody = function (params) { // Default is relevance. Handle case where it's set to something else: if (params.sort && params.sort !== 'relevance') { - var direction = params.sort_direction || SORT_FIELDS[params.sort].initialDirection - var field = SORT_FIELDS[params.sort].field || params.sort + const direction = params.sort_direction || SORT_FIELDS[params.sort].initialDirection + const field = SORT_FIELDS[params.sort].field || params.sort body.sort = [{ [field]: direction }] } @@ -957,7 +942,7 @@ const queryForIdentifierNumber = function (params) { */ const regexEscape = function (str) { - return str.replace(/[-\/\\^$*+?.()|[\]{}]/g, (match) => { return '\\' + match }) + return str.replace(/[-/\\^$*+?.()|[\]{}]/g, (match) => { return '\\' + match }) } /** @@ -1034,19 +1019,19 @@ const buildElasticQueryForKeywords = function (params) { }, { _root: [] }) should.push({ - 'query_string': { - 'fields': fieldMap._root, - 'query': escapeQuery(params.q), - 'default_operator': 'AND' + query_string: { + fields: fieldMap._root, + query: escapeQuery(params.q), + default_operator: 'AND' } }) if (params.search_scope === 'standard_number') { should.push({ - 'query_string': { - 'fields': fieldMap._root, - 'query': `"${escapeQuery(params.q)}"`, - 'default_operator': 'AND' + query_string: { + fields: fieldMap._root, + query: `"${escapeQuery(params.q)}"`, + default_operator: 'AND' } }) } @@ -1138,7 +1123,7 @@ const filterClausesForDateParams = function (filters) { * @return {object} ES query object suitable to be POST'd to ES endpoint */ const buildElasticQueryForFilters = function (params) { - var filterClausesWithPaths = [] + let filterClausesWithPaths = [] if (params.filters) { // Add clauses for dateAfter / dateBefore filters, if used: @@ -1151,16 +1136,16 @@ const buildElasticQueryForFilters = function (params) { .filter((k) => FILTER_CONFIG[k].operator === 'match') filterClausesWithPaths = filterClausesWithPaths.concat(simpleMatchFilters.map((prop) => { - var config = FILTER_CONFIG[prop] + const config = FILTER_CONFIG[prop] - var value = params.filters[prop] + let value = params.filters[prop] // This builds a filter cause from the value: - var buildClause = (value) => { + const buildClause = (value) => { // If filtering on a packed field and value isn't a packed value: if (config.operator === 'match' && value.indexOf('||') < 0 && config.field.match(/_packed$/)) { // Figure out the base property (e.g. 'owner') - var baseField = config.field.replace(/_packed$/, '') + const baseField = config.field.replace(/_packed$/, '') // Allow supplied val to match against either id or value: return { bool: { @@ -1175,10 +1160,10 @@ const buildElasticQueryForFilters = function (params) { // If multiple values given, let's join them with 'should', causing it to operate as a boolean OR // Note: using 'must' here makes it a boolean AND - var booleanOperator = 'should' + const booleanOperator = 'should' // If only one value given, don't wrap it in a useless bool: if (Array.isArray(value) && value.length === 1) value = value.shift() - var clause = (Array.isArray(value)) ? { bool: { [booleanOperator]: value.map(buildClause) } } : buildClause(value) + const clause = (Array.isArray(value)) ? { bool: { [booleanOperator]: value.map(buildClause) } } : buildClause(value) return { path: config.path, clause } })) @@ -1227,16 +1212,16 @@ const buildElasticQueryForFilters = function (params) { */ const buildElasticQuery = function (params) { // Build ES query: - var query = {} + const query = {} // clean up params ;['q'].forEach(function (param) { - if (params[param]) { - params[param] = params[param].replace(/date:/g, 'dateStartYear:') - params[param] = params[param].replace(/location:/g, 'locations:') - params[param] = params[param].replace(/subject:/g, 'subjectLiteral:') - } - }) + if (params[param]) { + params[param] = params[param].replace(/date:/g, 'dateStartYear:') + params[param] = params[param].replace(/location:/g, 'locations:') + params[param] = params[param].replace(/subject:/g, 'subjectLiteral:') + } + }) if (params.q) { // Merge keyword-specific ES query into the query we're building: diff --git a/lib/response_massager.js b/lib/response_massager.js index df7665a7..693d4dc4 100644 --- a/lib/response_massager.js +++ b/lib/response_massager.js @@ -50,7 +50,7 @@ class ResponseMassager { hit._source.numElectronicResources = [hit._source.electronicResources.length] } } - delete hit['inner_hits'] + delete hit.inner_hits }) return response diff --git a/lib/scsb-client.js b/lib/scsb-client.js index b323d2ee..6e146d05 100644 --- a/lib/scsb-client.js +++ b/lib/scsb-client.js @@ -4,7 +4,6 @@ const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper' const logger = require('./logger') const { bNumberWithCheckDigit } = require('./util') - let _scsbClient const scsbClient = () => { if (!_scsbClient) _scsbClient = new ScsbRestClient({ url: process.env.SCSB_URL, apiKey: process.env.SCSB_API_KEY }) @@ -28,11 +27,11 @@ clientWrapper.recapCustomerCodeByBarcode = (barcode) => { const __start = new Date() const search = scsbClient().search({ fieldValue: barcode, fieldName: 'Barcode' }) .then((response) => { - let ellapsed = ((new Date()) - __start) + const ellapsed = ((new Date()) - __start) logger.debug({ message: `HTC searchByParam API took ${ellapsed}ms`, metric: 'searchByParam-barcode', timeMs: ellapsed }) if (response && response.searchResultRows && response.searchResultRows.length) { - let results = response.searchResultRows + const results = response.searchResultRows let customerCode = null if (results && (results.length > 0) && results[0].searchItemResultRows.length > 0) { @@ -108,7 +107,7 @@ clientWrapper.getBarcodesByStatusForBnum = (bnum) => { // requires Node12+, preventing this app from using it for now.) ScsbRestClient.prototype.scsbQuery = function (path, body) { return new Promise((resolve, reject) => { - var options = { + const options = { url: this.url + path, headers: this._headers(), body: JSON.stringify(body), diff --git a/lib/util.js b/lib/util.js index 542fed4c..1f5c20fc 100644 --- a/lib/util.js +++ b/lib/util.js @@ -5,36 +5,34 @@ const csv = require('fast-csv') const logger = require('./logger') const isItemNyplOwned = require('./ownership_determination').isItemNyplOwned -var exports = module.exports = {} - -exports.contextAll = config['contextAll'] +exports.contextAll = config.contextAll exports.buildJsonLdContext = function (prefixes) { - var context = JSON.parse(JSON.stringify(prefixes)) - delete context['urn'] + const context = JSON.parse(JSON.stringify(prefixes)) + delete context.urn return context } // Return a context doc for 'resource', or 'result' exports.context = (which) => { - var all = ['resource', 'result'] - var contexts = all.indexOf(which) < 0 ? all : [which] + const all = ['resource', 'result'] + const contexts = all.indexOf(which) < 0 ? all : [which] return Promise.all( contexts .map((f) => `./data/contexts/${f}.json`) .map(readJson) ).then((contexts) => { contexts = contexts.map((c) => c['@context']) - var statements = Object.assign.apply(null, [{}].concat(contexts)) + let statements = Object.assign.apply(null, [{}].concat(contexts)) // Order by keys, with prefix statements first statements = Object.keys(statements).sort((k1, k2) => { - var isPrefix = [statements[k1].match(/^http/) !== null, statements[k2].match(/^http/) !== null] + const isPrefix = [statements[k1].match(/^http/) !== null, statements[k2].match(/^http/) !== null] // If both are namespace declarations (or both not), order them by key // otherwise always order namespace declarations first - var correctlyOrdered = null + let correctlyOrdered = null if (isPrefix[0] && isPrefix[1]) correctlyOrdered = k1 < k2 else if (isPrefix[0]) correctlyOrdered = true else if (isPrefix[1]) correctlyOrdered = false @@ -51,29 +49,29 @@ exports.context = (which) => { } const readJson = (path) => { - var cacheKey = `readJson:${path}` - if (__file_cache[cacheKey]) return Promise.resolve(__file_cache[cacheKey]) + const cacheKey = `readJson:${path}` + if (__fileCache[cacheKey]) return Promise.resolve(__fileCache[cacheKey]) - var fs = require('fs') + const fs = require('fs') return new Promise((resolve, reject) => { fs.readFile(path, 'utf8', (err, data) => { if (err) reject(err) else { data = JSON.parse(data) - __file_cache[cacheKey] = data + __fileCache[cacheKey] = data resolve(data) } }) }) } -var __file_cache = {} +const __fileCache = {} exports.readCsv = (path) => { - var cacheKey = `readCsv:${path}` - if (__file_cache[cacheKey]) return Promise.resolve(__file_cache[cacheKey]) + const cacheKey = `readCsv:${path}` + if (__fileCache[cacheKey]) return Promise.resolve(__fileCache[cacheKey]) return new Promise((resolve, reject) => { - var rows = [] + const rows = [] fs.createReadStream(path) .pipe(csv()) @@ -81,7 +79,7 @@ exports.readCsv = (path) => { rows.push(data) }) .on('end', () => { - __file_cache[cacheKey] = rows + __fileCache[cacheKey] = rows resolve(rows) }) }) @@ -96,10 +94,10 @@ exports.eachValue = function (a, cb) { } exports.flatenTriples = function (object) { - var flat = { objectLiteral: {}, objectUri: {} } - for (var key in object) { + const flat = { objectLiteral: {}, objectUri: {} } + for (const key in object) { // is this a triple - if (config['predicatesAgents'].indexOf(key) > -1 || config['predicatesResources'].indexOf(key) > -1) { + if (config.predicatesAgents.indexOf(key) > -1 || config.predicatesResources.indexOf(key) > -1) { object[key].forEach((value) => { if (value.objectLiteral) { if (!flat.objectLiteral[key]) flat.objectLiteral[key] = [] @@ -122,12 +120,12 @@ exports.flatenTriples = function (object) { exports.expandObjectUri = function (objectUri) { if (!objectUri) return false - var split = objectUri.split(':') - var prefix = split[0] + const split = objectUri.split(':') + const prefix = split[0] split.shift(0, 1) - var value = split.join(':') + const value = split.join(':') - var uriBase = config.prefixes[prefix] + const uriBase = config.prefixes[prefix] if (!uriBase) { console.log('Unknown Prefix:', prefix) return false @@ -137,8 +135,8 @@ exports.expandObjectUri = function (objectUri) { // turns the objects into triples sans provo exports.returnNtTriples = function (obj, type) { - var uri = null - var triples = [] + let uri = null + const triples = [] if (type === 'resource') { uri = '' } else if (type === 'agent') { @@ -153,14 +151,14 @@ exports.returnNtTriples = function (obj, type) { return false } - for (var p in obj.statements) { + for (const p in obj.statements) { if ((typeof obj.statements[p]) !== 'object') continue - if (config['predicatesAgents'].indexOf(p) > -1 || config['predicatesResources'].indexOf(p) > -1) { + if (config.predicatesAgents.indexOf(p) > -1 || config.predicatesResources.indexOf(p) > -1) { // it is a triple - var expandedPredicate = '<' + exports.expandObjectUri(p) + '>' + const expandedPredicate = '<' + exports.expandObjectUri(p) + '>' obj.statements[p].forEach((o) => { - var expandedObject = null + let expandedObject = null if (o.objectUri) { expandedObject = '<' + exports.expandObjectUri(o.objectUri) + '>' } else { @@ -183,7 +181,7 @@ exports.returnNtTriples = function (obj, type) { } exports.returnNtJsonLd = function (obj, type, cb) { - var triples = exports.returnNtTriples(obj, type).join('\n') + const triples = exports.returnNtTriples(obj, type).join('\n') jsonld.fromRDF(triples, { format: 'application/nquads' }, function (err, doc) { if (err) console.log(JSON.stringify(err, null, 2)) jsonld.compact(doc, exports.context, function (err, compacted) { @@ -196,14 +194,14 @@ exports.returnNtJsonLd = function (obj, type, cb) { // Applies validation against hash of params given spec // see `parseParams` exports.parseParams = function (params, spec) { - var ret = {} + const ret = {} Object.keys(spec).forEach(function (param) { // For type 'string', we consider '' a truthy val - var isEmptyString = spec[param].type === 'string' && params[param] === '' + const isEmptyString = spec[param].type === 'string' && params[param] === '' // If user supplied a truthy value if (params[param] || isEmptyString) { - var parsed = exports.parseParam(params[param], spec[param]) + const parsed = exports.parseParam(params[param], spec[param]) // Make sure it's a valid value if ((typeof parsed) !== 'undefined') { @@ -271,7 +269,6 @@ exports.parseParam = function (val, spec) { case 'string-list': return val.split(',') .map((v) => v.trim()) - } if (spec.range) { @@ -307,7 +304,7 @@ exports.gatherParams = function (req, acceptedParams) { // 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 - var params = {} + const params = {} acceptedParams.forEach((k) => { params[k] = req.query[k] }) diff --git a/package-lock.json b/package-lock.json index ebd3d13f..1567d679 100644 --- a/package-lock.json +++ b/package-lock.json @@ -37,7 +37,16 @@ "request-promise": "^4.1.1", "should": "^7.0.2", "sinon": "^4.3.0", - "standard": "^6.0.8" + "standard": "^17.0.1" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, "node_modules/@colors/colors": { @@ -83,6 +92,176 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@eslint/eslintrc/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/@nypl/nypl-core-objects": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@nypl/nypl-core-objects/-/nypl-core-objects-2.1.1.tgz", @@ -249,6 +428,12 @@ "@types/node": "*" } }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, "node_modules/@types/node": { "version": "10.17.60", "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", @@ -259,6 +444,12 @@ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.12.tgz", "integrity": "sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==" }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, "node_modules/accepts": { "version": "1.3.8", "license": "MIT", @@ -271,8 +462,10 @@ } }, "node_modules/acorn": { - "version": "5.7.4", - "license": "MIT", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -281,20 +474,12 @@ } }, "node_modules/acorn-jsx": { - "version": "3.0.1", - "license": "MIT", - "dependencies": { - "acorn": "^3.0.4" - } - }, - "node_modules/acorn-jsx/node_modules/acorn": { - "version": "3.3.0", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/ajv": { @@ -313,7 +498,8 @@ }, "node_modules/ajv-keywords": { "version": "1.5.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha512-vuBv+fm2s6cqUyey2A7qYcvsik+GMDJsw8BARP2sDE76cqmaZVarsvHf7Vx6VJ0Xk8gLl+u3MoAPf6gKzJefeA==", "peerDependencies": { "ajv": ">=4.10.0" } @@ -328,7 +514,8 @@ }, "node_modules/ansi-escapes": { "version": "1.4.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==", "engines": { "node": ">=0.10.0" } @@ -341,12 +528,38 @@ } }, "node_modules/ansi-styles": { - "version": "2.2.1", - "license": "MIT", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "node_modules/argparse": { "version": "1.0.10", "license": "MIT", @@ -363,12 +576,16 @@ } }, "node_modules/array-buffer-byte-length": { - "version": "1.0.0", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -392,6 +609,118 @@ "dev": true, "license": "MIT" }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.filter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.4.tgz", + "integrity": "sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array.prototype.reduce": { "version": "1.0.5", "dev": true, @@ -410,6 +739,53 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array.prototype.toreversed": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", + "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", + "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.1.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/asap": { "version": "2.0.6", "license": "MIT" @@ -443,14 +819,27 @@ "lodash": "^4.17.14" } }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + } + }, "node_modules/asynckit": { "version": "0.4.0", "license": "MIT" }, "node_modules/available-typed-arrays": { - "version": "1.0.5", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, - "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -627,6 +1016,48 @@ "version": "1.0.1", "license": "MIT" }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/builtins/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, "node_modules/bytes": { "version": "3.1.2", "license": "MIT", @@ -635,11 +1066,18 @@ } }, "node_modules/call-bind": { - "version": "1.0.2", - "license": "MIT", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -647,7 +1085,8 @@ }, "node_modules/caller-path": { "version": "0.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==", "dependencies": { "callsites": "^0.2.0" }, @@ -655,13 +1094,23 @@ "node": ">=0.10.0" } }, - "node_modules/callsites": { + "node_modules/caller-path/node_modules/callsites": { "version": "0.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A==", "engines": { "node": ">=0.10.0" } }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/camelcase": { "version": "5.3.1", "dev": true, @@ -707,17 +1156,19 @@ } }, "node_modules/chalk": { - "version": "1.1.3", - "license": "MIT", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/charenc": { @@ -738,12 +1189,14 @@ }, "node_modules/circular-json": { "version": "0.3.3", - "deprecated": "CircularJSON is in maintenance only, flatted is its successor.", - "license": "MIT" + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "deprecated": "CircularJSON is in maintenance only, flatted is its successor." }, "node_modules/cli-cursor": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha512-25tABq090YNKkF6JH7lcwO0zFJTRke4Jcq9iX2nr/Sz0Cjjv4gckmwlW6Ty/aoyFd6z3ysR2hMGC2GFugmBo6A==", "dependencies": { "restore-cursor": "^1.0.1" }, @@ -753,7 +1206,8 @@ }, "node_modules/cli-width": { "version": "2.2.1", - "license": "ISC" + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" }, "node_modules/cliui": { "version": "5.0.0", @@ -814,7 +1268,8 @@ }, "node_modules/co": { "version": "4.6.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -934,6 +1389,35 @@ "version": "1.0.3", "license": "MIT" }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/crypt": { "version": "0.0.2", "dev": true, @@ -978,11 +1462,15 @@ } }, "node_modules/d": { - "version": "1.0.1", - "license": "ISC", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" } }, "node_modules/dashdash": { @@ -1013,7 +1501,8 @@ }, "node_modules/debug-log": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", + "integrity": "sha512-gV/pe1YIaKNgLYnd1g9VNW80tcb7oV5qvNUxG7NM8rbDpnl6RGunzlAtlGSb0wEs3nesu2vHNiX9TSsZ+Y+RjA==", "engines": { "node": ">=0.10.0" } @@ -1047,11 +1536,13 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/defaults": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dependencies": { "clone": "^1.0.2" }, @@ -1061,16 +1552,35 @@ }, "node_modules/defaults/node_modules/clone": { "version": "1.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "engines": { "node": ">=0.8" } }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/define-properties": { - "version": "1.2.0", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, - "license": "MIT", "dependencies": { + "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" }, @@ -1083,7 +1593,8 @@ }, "node_modules/deglob": { "version": "1.1.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/deglob/-/deglob-1.1.2.tgz", + "integrity": "sha512-CACtLHJwEHEgrs2aShBEV4B318fGmUlYMzZgxut1h/R6k2vyusxwVAJJU+1IiPFgNuOPOfH1rBHrtJ2hwEElLw==", "dependencies": { "find-root": "^1.0.0", "glob": "^7.0.5", @@ -1096,7 +1607,8 @@ }, "node_modules/deglob/node_modules/ignore": { "version": "3.3.10", - "license": "MIT" + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" }, "node_modules/delayed-stream": { "version": "1.0.0", @@ -1161,13 +1673,15 @@ } }, "node_modules/doctrine": { - "version": "1.5.0", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, "dependencies": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0.0" } }, "node_modules/dotenv": { @@ -1209,45 +1723,62 @@ "once": "^1.4.0" } }, - "node_modules/es-abstract": { - "version": "1.21.2", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.5.tgz", + "integrity": "sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", + "hasown": "^2.0.1", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", + "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", + "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", + "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", + "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.0", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.5", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -1257,12 +1788,13 @@ } }, "node_modules/es-abstract/node_modules/object.assign": { - "version": "4.1.4", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -1278,19 +1810,74 @@ "dev": true, "license": "MIT" }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz", + "integrity": "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==", + "dev": true, + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.4", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-set-tostringtag": { - "version": "2.0.1", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, - "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { "node": ">= 0.4" } }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, "node_modules/es-to-primitive": { "version": "1.2.1", "dev": true, @@ -1308,12 +1895,14 @@ } }, "node_modules/es5-ext": { - "version": "0.10.62", + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", "hasInstallScript": true, - "license": "ISC", "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", "next-tick": "^1.1.0" }, "engines": { @@ -1322,7 +1911,8 @@ }, "node_modules/es6-iterator": { "version": "2.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", "dependencies": { "d": "1", "es5-ext": "^0.10.35", @@ -1331,7 +1921,8 @@ }, "node_modules/es6-map": { "version": "0.1.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha512-mz3UqCh0uPCIqsw1SSAkB/p0rOzF/M0V++vyN7JqlPtSW/VsYgQBvVvqMLmfBuyMzTpLnNqi6JmcSizs4jy19A==", "dependencies": { "d": "1", "es5-ext": "~0.10.14", @@ -1343,7 +1934,8 @@ }, "node_modules/es6-set": { "version": "0.1.6", - "license": "ISC", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz", + "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==", "dependencies": { "d": "^1.0.1", "es5-ext": "^0.10.62", @@ -1356,21 +1948,22 @@ "node": ">=0.12" } }, - "node_modules/es6-set/node_modules/type": { - "version": "2.7.2", - "license": "ISC" - }, "node_modules/es6-symbol": { - "version": "3.1.3", - "license": "ISC", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" } }, "node_modules/es6-weak-map": { "version": "2.0.3", - "license": "ISC", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "dependencies": { "d": "1", "es5-ext": "^0.10.46", @@ -1391,7 +1984,8 @@ }, "node_modules/escope": { "version": "3.6.0", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha512-75IUQsusDdalQEW/G/2esa87J7raqdJF+Ca0/Xm5C3Q58Nr4yVYjZGp/P1+2xiEVgXRrA39dpRb8LcshajbqDQ==", "dependencies": { "es6-map": "^0.1.3", "es6-weak-map": "^2.0.1", @@ -1402,106 +1996,627 @@ "node": ">=0.4.0" } }, + "node_modules/escope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, "node_modules/eslint": { - "version": "2.2.0", - "license": "MIT", - "dependencies": { - "chalk": "^1.0.0", - "concat-stream": "^1.4.6", - "debug": "^2.1.1", - "doctrine": "^1.1.0", - "es6-map": "^0.1.3", - "escope": "^3.4.0", - "espree": "^3.0.0", - "estraverse": "^4.1.1", - "estraverse-fb": "^1.3.1", + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", - "file-entry-cache": "^1.1.1", - "glob": "^6.0.4", - "globals": "^8.18.0", - "ignore": "^2.2.19", - "inquirer": "^0.12.0", - "is-my-json-valid": "^2.10.0", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.5.1", - "json-stable-stringify": "^1.0.0", - "lodash": "^4.0.0", - "mkdirp": "^0.5.0", - "optionator": "^0.8.1", - "path-is-absolute": "^1.0.0", - "path-is-inside": "^1.0.1", - "pluralize": "^1.2.1", - "progress": "^1.1.8", - "require-uncached": "^1.0.2", - "resolve": "^1.1.6", - "shelljs": "^0.5.3", - "strip-json-comments": "~1.0.1", - "table": "^3.7.8", - "text-table": "~0.2.0", - "user-home": "^2.0.0" + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { - "node": ">=0.10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-standard": { - "version": "5.1.0", - "license": "MIT", + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=12.0.0" + }, "peerDependencies": { - "eslint": "^2.0.0-rc.0", - "eslint-plugin-promise": "^1.0.8", - "eslint-plugin-standard": "^1.3.1" + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0" } }, "node_modules/eslint-config-standard-jsx": { - "version": "1.1.1", - "license": "MIT", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz", + "integrity": "sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "peerDependencies": { - "eslint": "^2.0.0-rc.0", - "eslint-plugin-react": ">=2.7.1" + "eslint": "^8.8.0", + "eslint-plugin-react": "^7.28.0" } }, - "node_modules/eslint-plugin-promise": { - "version": "1.3.2", - "license": "ISC", + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "dev": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + }, + "engines": { + "node": ">=8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { "node": ">=0.10.0" } }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-n": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", + "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "dev": true, + "dependencies": { + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" + }, + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-n/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-n/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-n/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, "node_modules/eslint-plugin-react": { - "version": "4.3.0", - "license": "MIT" + "version": "7.34.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.0.tgz", + "integrity": "sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlast": "^1.2.4", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.toreversed": "^1.1.2", + "array.prototype.tosorted": "^1.1.3", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.17", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7", + "object.hasown": "^1.1.3", + "object.values": "^1.1.7", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.10" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, "node_modules/eslint-plugin-standard": { "version": "1.3.3", - "license": "MIT" + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-1.3.3.tgz", + "integrity": "sha512-LjMgISU4D6qdCmyGDzowQm5bINHpzkGiem1zhcm+Qa/FyZHsccZDU13cGYiEvF6iYl0ZazXAvPSPxbpD6/aEOg==" }, - "node_modules/eslint/node_modules/glob": { - "version": "6.0.4", - "license": "ISC", + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": "*" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" } }, "node_modules/espree": { - "version": "3.5.4", - "license": "BSD-2-Clause", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, "dependencies": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/esprima": { @@ -1515,40 +2630,49 @@ "node": ">=4" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, "dependencies": { - "estraverse": "^5.2.0" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=4.0" + "node": ">=0.10" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "license": "BSD-2-Clause", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { - "version": "4.3.0", - "license": "BSD-2-Clause", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "engines": { "node": ">=4.0" } }, "node_modules/estraverse-fb": { "version": "1.3.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.2.tgz", + "integrity": "sha512-wp3lfRrWy5EQD9TqesuYM1SKVP4ERT0cUatb4e8Vznf4K5IOpREhuyXZxGj3a9s9mvX5vGZKNHA4R9D4kp9Q9A==", "peerDependencies": { "estraverse": "*" } }, "node_modules/esutils": { "version": "2.0.3", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "engines": { "node": ">=0.10.0" } @@ -1562,7 +2686,8 @@ }, "node_modules/event-emitter": { "version": "0.3.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dependencies": { "d": "1", "es5-ext": "~0.10.14" @@ -1578,7 +2703,8 @@ }, "node_modules/exit-hook": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha512-MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg==", "engines": { "node": ">=0.10.0" } @@ -1656,15 +2782,12 @@ }, "node_modules/ext": { "version": "1.7.0", - "license": "ISC", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dependencies": { "type": "^2.7.2" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "license": "ISC" - }, "node_modules/extend": { "version": "3.0.2", "license": "MIT" @@ -1720,11 +2843,22 @@ }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } }, "node_modules/figures": { "version": "1.7.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==", "dependencies": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" @@ -1734,14 +2868,15 @@ } }, "node_modules/file-entry-cache": { - "version": "1.3.1", - "license": "MIT", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, "dependencies": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" + "flat-cache": "^3.0.4" }, "engines": { - "node": ">=0.10.0" + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/finalhandler": { @@ -1762,7 +2897,8 @@ }, "node_modules/find-root": { "version": "1.1.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, "node_modules/find-up": { "version": "3.0.0", @@ -1787,16 +2923,17 @@ } }, "node_modules/flat-cache": { - "version": "1.3.4", - "license": "MIT", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, "dependencies": { - "circular-json": "^0.3.1", - "graceful-fs": "^4.1.2", - "rimraf": "~2.6.2", - "write": "^0.2.1" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=0.10.0" + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flat/node_modules/is-buffer": { @@ -1821,6 +2958,12 @@ "node": ">=4" } }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, "node_modules/follow-redirects": { "version": "1.15.2", "dev": true, @@ -1886,18 +3029,23 @@ "license": "ISC" }, "node_modules/function-bind": { - "version": "1.1.1", - "license": "MIT" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { - "version": "1.1.5", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { "node": ">= 0.4" @@ -1908,22 +3056,25 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/generate-function": { "version": "2.3.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", "dependencies": { "is-property": "^1.0.2" } }, "node_modules/generate-object-property": { "version": "1.2.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha512-TuOwZWgJ2VAMEGJvAyPWvpqxSANF0LDpmyHauMjFYzaACvn+QTT/AZomvPCzVBV7yDN3OmwHQ5OvHaeLKre3JQ==", "dependencies": { "is-property": "^1.0.0" } @@ -1945,13 +3096,18 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "license": "MIT", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -1965,19 +3121,26 @@ } }, "node_modules/get-stdin": { - "version": "5.0.1", - "license": "MIT", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true, "engines": { - "node": ">=0.12.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/get-symbol-description": { - "version": "1.0.0", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" @@ -2011,11 +3174,31 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/globals": { - "version": "8.18.0", - "license": "MIT", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globalthis": { @@ -2034,7 +3217,6 @@ }, "node_modules/gopd": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" @@ -2045,7 +3227,14 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", - "license": "ISC" + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true }, "node_modules/growl": { "version": "1.10.5", @@ -2073,19 +3262,10 @@ "node": ">=6" } }, - "node_modules/has": { - "version": "1.0.3", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-ansi": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -2109,20 +3289,21 @@ "node": ">=4" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "dev": true, - "license": "MIT", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dependencies": { - "get-intrinsic": "^1.1.1" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { - "version": "1.0.1", - "license": "MIT", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "engines": { "node": ">= 0.4" }, @@ -2141,11 +3322,12 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, - "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -2154,6 +3336,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hasown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/he": { "version": "1.2.0", "dev": true, @@ -2223,9 +3416,38 @@ "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "2.2.19", - "deprecated": "several bugs fixed in v3.2.1", - "license": "MIT" + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } }, "node_modules/inflight": { "version": "1.0.6", @@ -2241,7 +3463,8 @@ }, "node_modules/inquirer": { "version": "0.12.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", + "integrity": "sha512-bOetEz5+/WpgaW4D1NYOk1aD+JCqRjqu/FwRFgnIfiP7FC/zinsrfyO1vlS3nyH/R7S0IH3BIHBu4DBIDSqiGQ==", "dependencies": { "ansi-escapes": "^1.1.0", "ansi-regex": "^2.0.0", @@ -2258,13 +3481,45 @@ "through": "^2.3.6" } }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/internal-slot": { - "version": "1.0.5", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, - "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", + "es-errors": "^1.3.0", + "hasown": "^2.0.0", "side-channel": "^1.0.4" }, "engines": { @@ -2294,13 +3549,37 @@ } }, "node_modules/is-array-buffer": { - "version": "3.0.2", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2349,10 +3628,11 @@ } }, "node_modules/is-core-module": { - "version": "2.12.1", - "license": "MIT", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2379,6 +3659,27 @@ "extended": "~0.0.3" } }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-fullwidth-code-point": { "version": "1.0.0", "license": "MIT", @@ -2403,13 +3704,39 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-my-ip-valid": { "version": "1.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz", + "integrity": "sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg==" }, "node_modules/is-my-json-valid": { "version": "2.20.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz", + "integrity": "sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==", "dependencies": { "generate-function": "^2.0.0", "generate-object-property": "^1.1.0", @@ -2419,9 +3746,10 @@ } }, "node_modules/is-negative-zero": { - "version": "2.0.2", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -2443,14 +3771,25 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-property": { "version": "1.0.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" }, "node_modules/is-regex": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -2464,14 +3803,28 @@ }, "node_modules/is-resolvable": { "version": "1.1.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.2", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2506,15 +3859,12 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.10", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, - "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -2527,6 +3877,15 @@ "version": "1.0.0", "license": "MIT" }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-weakref": { "version": "1.0.2", "dev": true, @@ -2538,6 +3897,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/isarray": { "version": "1.0.0", "license": "MIT" @@ -2551,6 +3923,19 @@ "version": "0.1.2", "license": "MIT" }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, "node_modules/jmespath": { "version": "0.16.0", "dev": true, @@ -2559,21 +3944,46 @@ "node": ">= 0.6.0" } }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, "node_modules/js-yaml": { - "version": "3.14.1", - "license": "MIT", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, + "node_modules/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "node_modules/jsbn": { "version": "0.1.1", "license": "MIT" }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, "node_modules/json-schema": { "version": "0.4.0", "license": "(AFL-2.1 OR BSD-3-Clause)" @@ -2583,22 +3993,53 @@ "license": "MIT" }, "node_modules/json-stable-stringify": { - "version": "1.0.2", - "license": "MIT", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", "dependencies": { - "jsonify": "^0.0.1" + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, "node_modules/json-stringify-safe": { "version": "5.0.1", "license": "ISC" }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, "node_modules/jsonify": { "version": "0.0.1", - "license": "Public Domain", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -2627,7 +4068,8 @@ }, "node_modules/jsonpointer": { "version": "5.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", "engines": { "node": ">=0.10.0" } @@ -2645,6 +4087,39 @@ "node": ">=0.6.0" } }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jsx-ast-utils/node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/just-extend": { "version": "4.2.1", "dev": true, @@ -2654,17 +4129,53 @@ "version": "1.0.0", "license": "WTFPL" }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, "node_modules/levn": { - "version": "0.3.0", - "license": "MIT", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/load-json-file": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz", + "integrity": "sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^4.0.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0", + "type-fest": "^0.3.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/load-json-file/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/locate-path": { "version": "3.0.0", "dev": true, @@ -2686,6 +4197,12 @@ "dev": true, "license": "MIT" }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, "node_modules/log-symbols": { "version": "2.2.0", "dev": true, @@ -2752,6 +4269,18 @@ "dev": true, "license": "BSD-3-Clause" }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, "node_modules/loupe": { "version": "2.3.6", "dev": true, @@ -2857,7 +4386,8 @@ }, "node_modules/mkdirp": { "version": "0.5.6", - "license": "MIT", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { "minimist": "^1.2.6" }, @@ -2992,7 +4522,8 @@ }, "node_modules/multiline": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/multiline/-/multiline-1.0.2.tgz", + "integrity": "sha512-DGpmDIZKKQ+EVx0sh0757V6qlb+ouuByoC5CWH7J0bOd6KRM6ka6l9LGHWfe17OKxm+4AsLs1tgiK4vZIx66RQ==", "dependencies": { "strip-indent": "^1.0.0" }, @@ -3004,6 +4535,12 @@ "version": "0.0.8", "license": "ISC" }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, "node_modules/negotiator": { "version": "0.6.3", "license": "MIT", @@ -3013,7 +4550,8 @@ }, "node_modules/next-tick": { "version": "1.1.0", - "license": "ISC" + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, "node_modules/nise": { "version": "1.5.3", @@ -3082,30 +4620,378 @@ "dev": true, "license": "ISC", "bin": { - "semver": "bin/semver" + "semver": "bin/semver" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon": { + "version": "1.0.0", + "resolved": "git+ssh://git@github.com/nypl-registry/utils-lexicon.git#330e7258c7d2243b7689dec9850173541664db1e", + "license": "MIT", + "dependencies": { + "glob": "^7.0.0", + "standard": "^6.0.7" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", + "dependencies": { + "acorn": "^3.0.4" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/acorn-jsx/node_modules/acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==", + "dependencies": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.2.0.tgz", + "integrity": "sha512-Ay1ThESRUQUlI3JnWrVjAecu+v2sm9ldq95IPe4LyrC8fG3SSZs5f2l4xRfB3kW9UOACeBsx0Na8uJ1ckgeBrg==", + "dependencies": { + "chalk": "^1.0.0", + "concat-stream": "^1.4.6", + "debug": "^2.1.1", + "doctrine": "^1.1.0", + "es6-map": "^0.1.3", + "escope": "^3.4.0", + "espree": "^3.0.0", + "estraverse": "^4.1.1", + "estraverse-fb": "^1.3.1", + "esutils": "^2.0.2", + "file-entry-cache": "^1.1.1", + "glob": "^6.0.4", + "globals": "^8.18.0", + "ignore": "^2.2.19", + "inquirer": "^0.12.0", + "is-my-json-valid": "^2.10.0", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.5.1", + "json-stable-stringify": "^1.0.0", + "lodash": "^4.0.0", + "mkdirp": "^0.5.0", + "optionator": "^0.8.1", + "path-is-absolute": "^1.0.0", + "path-is-inside": "^1.0.1", + "pluralize": "^1.2.1", + "progress": "^1.1.8", + "require-uncached": "^1.0.2", + "resolve": "^1.1.6", + "shelljs": "^0.5.3", + "strip-json-comments": "~1.0.1", + "table": "^3.7.8", + "text-table": "~0.2.0", + "user-home": "^2.0.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-config-standard": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-5.1.0.tgz", + "integrity": "sha512-mDjsN6Hk4W3rJe2w9G6W2H3RIrUcKUeXtDWL6orlNcik8Q2w4oZvBOhHtDZGuB7uXTL5DKLOBnPVO9NVopLb2Q==", + "peerDependencies": { + "eslint": "^2.0.0-rc.0", + "eslint-plugin-promise": "^1.0.8", + "eslint-plugin-standard": "^1.3.1" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-config-standard-jsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-1.1.1.tgz", + "integrity": "sha512-AWUuX0M2BbnSQHNGTObfdfW7LtB+imuoqXdVrK74u+eMK3Astu8PFoHd8+kTUMqWR5WosrxxRtOY+IgBUs8ZYw==", + "peerDependencies": { + "eslint": "^2.0.0-rc.0", + "eslint-plugin-react": ">=2.7.1" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-plugin-promise": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-1.3.2.tgz", + "integrity": "sha512-0u7miAO2rYoIt3xhSoajdZSQdCvkyAu0JFXY5la1PW/xcgSyaBxQz91Rnm4zN084YSwYB6dc+HId2ByMS7jImw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-plugin-react": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-4.3.0.tgz", + "integrity": "sha512-ajQ9S74FUln2GcwgpPUQqRLcT6UFDhvAMIiDX4F68tDnuihNXcAA7LI19MmRGGOuJnpMVDXugJg+wf9K+bf6kg==" + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/eslint/node_modules/glob": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/espree": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", + "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "dependencies": { + "acorn": "^5.5.0", + "acorn-jsx": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/file-entry-cache": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", + "integrity": "sha512-JyVk7P0Hvw6uEAwH4Y0j+rZMvaMWvLBYRmRGAF2S6jKTycf0mMDcC7d21Y2KyrKJk3XI8YghSsk5KmRdbvg0VQ==", + "dependencies": { + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/flat-cache": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", + "dependencies": { + "circular-json": "^0.3.1", + "graceful-fs": "^4.1.2", + "rimraf": "~2.6.2", + "write": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/get-stdin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", + "integrity": "sha512-jZV7n6jGE3Gt7fgSTJoz91Ak5MuTLwMwkoYdjxuJ/AmjIsE1UC03y/IWkZCQGEvVNS9qoRNwy5BCqxImv0FVeA==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/globals": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz", + "integrity": "sha512-IHCTKEGo42ICEkTZBADyl4HX06hVdFF4qdJdqOgaBe5X8RE1/MrvubetsEtGTcwjs46djFq0Gc3+5RgTsc3UoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/ignore": { + "version": "2.2.19", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-2.2.19.tgz", + "integrity": "sha512-Mq1FKJDxSky/AR+Goatl1RmCzWbAHE4fNvgkmJu9Ln8T8A8JbKAd/BHHZQaqknHSFCBe0zQJg7akDpI57pKTlQ==", + "deprecated": "several bugs fixed in v3.2.1" + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/standard": { + "version": "6.0.8", + "resolved": "https://registry.npmjs.org/standard/-/standard-6.0.8.tgz", + "integrity": "sha512-qvzyrbsMBqapl7BAAQUmxhUvZW+sN5Ok4Mj+ZEsqABrjOY88a1rE5IFybXnXUdvD7KN/8fjqRubHW5NgT4bJhw==", + "dependencies": { + "eslint": "~2.2.0", + "eslint-config-standard": "5.1.0", + "eslint-config-standard-jsx": "1.1.1", + "eslint-plugin-promise": "^1.0.8", + "eslint-plugin-react": "^4.0.0", + "eslint-plugin-standard": "^1.3.1", + "standard-engine": "^3.3.0", + "xtend": "^4.0.1" + }, + "bin": { + "standard": "bin/cmd.js" } }, - "node_modules/node-forge": { - "version": "0.10.0", - "license": "(BSD-3-Clause OR GPL-2.0)", + "node_modules/nypl-registry-utils-lexicon/node_modules/standard-engine": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-3.3.1.tgz", + "integrity": "sha512-Y1k4p/k0e3BGk/xnyr3T2ybnYEm7b3Jdr2NtjW74RV6bzlxHTZPQAJdaQUKlmhKSdauWleUuTo4Xn9nTvS3A5g==", + "dependencies": { + "defaults": "^1.0.2", + "deglob": "^1.0.0", + "find-root": "^1.0.0", + "get-stdin": "^5.0.1", + "minimist": "^1.1.0", + "multiline": "^1.0.2", + "pkg-config": "^1.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/nypl-registry-utils-lexicon/node_modules/strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==", + "bin": { + "strip-json-comments": "cli.js" + }, "engines": { - "node": ">= 6.0.0" + "node": ">=0.8.0" } }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "license": "MIT", + "node_modules/nypl-registry-utils-lexicon/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, - "node_modules/nypl-registry-utils-lexicon": { - "version": "1.0.0", - "resolved": "git+ssh://git@github.com/nypl-registry/utils-lexicon.git#330e7258c7d2243b7689dec9850173541664db1e", - "license": "MIT", + "node_modules/nypl-registry-utils-lexicon/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", "dependencies": { - "glob": "^7.0.0", - "standard": "^6.0.7" + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" } }, "node_modules/oauth": { @@ -3121,7 +5007,8 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { "node": ">=0.10.0" } @@ -3136,15 +5023,15 @@ } }, "node_modules/object-inspect": { - "version": "1.12.3", - "license": "MIT", + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object-keys": { "version": "1.1.1", - "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -3164,6 +5051,37 @@ "node": ">= 0.4" } }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.6", "dev": true, @@ -3182,6 +5100,49 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", + "dev": true, + "dependencies": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/on-finished": { "version": "2.4.1", "license": "MIT", @@ -3201,21 +5162,24 @@ }, "node_modules/onetime": { "version": "1.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha512-GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A==", "engines": { "node": ">=0.10.0" } }, "node_modules/optionator": { - "version": "0.8.3", - "license": "MIT", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { "node": ">= 0.8.0" @@ -3223,7 +5187,8 @@ }, "node_modules/os-homedir": { "version": "1.0.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", "engines": { "node": ">=0.10.0" } @@ -3265,11 +5230,36 @@ "version": "0.3.1", "license": "MIT" }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/parse-cache-control": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/parseurl": { "version": "1.3.3", "license": "MIT", @@ -3294,11 +5284,22 @@ }, "node_modules/path-is-inside": { "version": "1.0.2", - "license": "(WTFPL OR MIT)" + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/path-parse": { "version": "1.0.7", - "license": "MIT" + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/path-to-regexp": { "version": "0.1.7", @@ -3383,9 +5384,32 @@ "split2": "^4.1.0" } }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-conf": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-3.1.0.tgz", + "integrity": "sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0", + "load-json-file": "^5.2.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/pkg-config": { "version": "1.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", + "integrity": "sha512-ft/WI9YK6FuTuw4Ql+QUaNXtm/ASQNqDUUsZEgFZKyFpW6amyP8Gx01xrRs8KdiNbbqXfYxkOXplpq1euWbOjw==", "dependencies": { "debug-log": "^1.0.0", "find-root": "^1.0.0", @@ -3397,7 +5421,17 @@ }, "node_modules/pluralize": { "version": "1.2.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", + "integrity": "sha512-TH+BeeL6Ct98C7as35JbZLf8lgsRzlNJb5gklRIGHKaPkGl1esOKBc5ALUMd+q08Sr6tiEKM+Icbsxg5vuhMKQ==" + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } }, "node_modules/postgres-array": { "version": "1.0.3", @@ -3431,7 +5465,10 @@ } }, "node_modules/prelude-ls": { - "version": "1.1.2", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, "engines": { "node": ">= 0.8.0" } @@ -3442,6 +5479,8 @@ }, "node_modules/progress": { "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==", "engines": { "node": ">=0.4.0" } @@ -3471,6 +5510,17 @@ "version": "3.2.3", "license": "MIT" }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, "node_modules/proxy-addr": { "version": "2.0.7", "license": "MIT", @@ -3525,6 +5575,8 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "funding": [ { "type": "github", @@ -3538,8 +5590,7 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "license": "MIT" + ] }, "node_modules/ramda": { "version": "0.21.0", @@ -3583,6 +5634,12 @@ "semver": "bin/semver.js" } }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, "node_modules/read": { "version": "1.0.7", "license": "ISC", @@ -3608,7 +5665,8 @@ }, "node_modules/readline2": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "integrity": "sha512-8/td4MmwUB6PkZUbV25uKz7dfrmjYWxsW8DVfibWdlHRk/l/DfHKn4pU+dfcoGLFgWOdyGCzINRQD7jn+Bv+/g==", "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -3617,16 +5675,40 @@ }, "node_modules/readline2/node_modules/mute-stream": { "version": "0.0.5", - "license": "ISC" + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", + "integrity": "sha512-EbrziT4s8cWPmzr47eYVW3wimS4HsvlnV5ri1xw1aR6JQo/OrJX5rkl32K/QQHdxeabJETtfeaROGhd8W7uBgg==" + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", + "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0", + "get-intrinsic": "^1.2.3", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.0", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -3635,6 +5717,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, "node_modules/request": { "version": "2.88.2", "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", @@ -3722,7 +5816,8 @@ }, "node_modules/require-uncached": { "version": "1.0.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha512-Xct+41K3twrbBHdxAgMoOS+cNcoqIjfM2/VxBF4LL2hVph7YsF8VSKyQ3BDFZwEVbok9yeDl2le/qo0S77WG2w==", "dependencies": { "caller-path": "^0.1.0", "resolve-from": "^1.0.0" @@ -3731,11 +5826,20 @@ "node": ">=0.10.0" } }, + "node_modules/require-uncached/node_modules/resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha512-kT10v4dhrlLNcnO084hEjvXCI1wUG9qZLoz2RogxqDQQYy7IxjI/iMUkOtQTNEh6rzHxvdQWHsJyel1pKOVCxg==", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/resolve": { - "version": "1.22.2", - "license": "MIT", + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -3747,15 +5851,18 @@ } }, "node_modules/resolve-from": { - "version": "1.0.1", - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, "node_modules/restore-cursor": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha512-reSjH4HuiFlxlaBaFCiS6O76ZGG2ygKoSlCsipKdaZuKSPx/+bt9mULkn4l0asVzbEfQQmXRg6Wp6gv6m0wElw==", "dependencies": { "exit-hook": "^1.0.0", "onetime": "^1.0.0" @@ -3764,6 +5871,16 @@ "node": ">=0.10.0" } }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, "node_modules/revalidator": { "version": "0.1.8", "license": "Apache 2.0", @@ -3772,24 +5889,32 @@ } }, "node_modules/rimraf": { - "version": "2.6.3", - "license": "ISC", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-async": { "version": "0.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "integrity": "sha512-qOX+w+IxFgpUpJfkv2oGN0+ExPs68F4sZHfaRRx4dDexAQkG83atugKVEylyT5ARees3HBbfmuvnjbrd8j9Wjw==", "dependencies": { "once": "^1.3.0" } }, "node_modules/run-parallel": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "funding": [ { "type": "github", @@ -3804,21 +5929,23 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rx-lite": { - "version": "3.1.2" + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", + "integrity": "sha512-1I1+G2gteLB8Tkt8YI1sJvSIfa0lWuRtC8GjvtyPBcLSF5jBCCJJqKrpER5JU5r6Bhe+i9/pK3VMuUcXu0kdwQ==" }, "node_modules/safe-array-concat": { - "version": "1.0.0", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, @@ -3839,14 +5966,18 @@ "license": "MIT" }, "node_modules/safe-regex-test": { - "version": "1.0.0", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", "is-regex": "^1.1.4" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -3918,13 +6049,66 @@ "dev": true, "license": "ISC" }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "license": "ISC" }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/shelljs": { "version": "0.5.3", - "license": "BSD*", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", + "integrity": "sha512-C2FisSSW8S6TIYHHiMHN0NqzdjWfTekdMpA2FJTbRWnQMLO1RRIXEB9eVZYOlofYmjZA7fY3ChoFu09MeI3wlQ==", "bin": { "shjs": "bin/shjs" }, @@ -4003,7 +6187,8 @@ }, "node_modules/slice-ansi": { "version": "0.0.4", - "license": "MIT", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==", "engines": { "node": ">=0.10.0" } @@ -4058,34 +6243,69 @@ } }, "node_modules/standard": { - "version": "6.0.8", - "license": "MIT", + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/standard/-/standard-17.1.0.tgz", + "integrity": "sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "eslint": "~2.2.0", - "eslint-config-standard": "5.1.0", - "eslint-config-standard-jsx": "1.1.1", - "eslint-plugin-promise": "^1.0.8", - "eslint-plugin-react": "^4.0.0", - "eslint-plugin-standard": "^1.3.1", - "standard-engine": "^3.3.0", - "xtend": "^4.0.1" + "eslint": "^8.41.0", + "eslint-config-standard": "17.1.0", + "eslint-config-standard-jsx": "^11.0.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-n": "^15.7.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.32.2", + "standard-engine": "^15.0.0", + "version-guard": "^1.1.1" }, "bin": { - "standard": "bin/cmd.js" + "standard": "bin/cmd.cjs" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/standard-engine": { - "version": "3.3.1", - "license": "MIT", + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-15.1.0.tgz", + "integrity": "sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "defaults": "^1.0.2", - "deglob": "^1.0.0", - "find-root": "^1.0.0", - "get-stdin": "^5.0.1", - "minimist": "^1.1.0", - "multiline": "^1.0.2", - "pkg-config": "^1.0.1", - "xtend": "^4.0.0" + "get-stdin": "^8.0.0", + "minimist": "^1.2.6", + "pkg-conf": "^3.1.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/statuses": { @@ -4144,14 +6364,35 @@ "node": ">=0.10.0" } }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/string.prototype.trim": { - "version": "1.2.7", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { "node": ">= 0.4" @@ -4161,26 +6402,28 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.6", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.6", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4196,9 +6439,19 @@ "node": ">=0.10.0" } }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/strip-indent": { "version": "1.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", "dependencies": { "get-stdin": "^4.0.1" }, @@ -4211,31 +6464,49 @@ }, "node_modules/strip-indent/node_modules/get-stdin": { "version": "4.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-json-comments": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "strip-json-comments": "cli.js" - }, + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, "engines": { - "node": ">=0.8.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-color": { - "version": "2.0.0", - "license": "MIT", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=8" + } + }, + "node_modules/supports-color/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "engines": { "node": ">= 0.4" }, @@ -4264,7 +6535,8 @@ }, "node_modules/table": { "version": "3.8.3", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", + "integrity": "sha512-RZuzIOtzFbprLCE0AXhkI0Xi42ZJLZhCC+qkwuMLf/Vjz3maWpA8gz1qMdbmNoI9cOROT2Am/DxeRyXenrL11g==", "dependencies": { "ajv": "^4.7.0", "ajv-keywords": "^1.0.0", @@ -4276,7 +6548,8 @@ }, "node_modules/table/node_modules/ajv": { "version": "4.11.8", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha512-I/bSHSNEcFFqXLf91nchoNB9D1Kie3QKcWdchYUaoIg1+1bdWDkdfdlvdIOJbi9U8xR0y+MWc5D+won9v95WlQ==", "dependencies": { "co": "^4.6.0", "json-stable-stringify": "^1.0.1" @@ -4284,21 +6557,47 @@ }, "node_modules/table/node_modules/ansi-regex": { "version": "3.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "engines": { "node": ">=4" } }, + "node_modules/table/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/table/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/table/node_modules/is-fullwidth-code-point": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "engines": { "node": ">=4" } }, "node_modules/table/node_modules/string-width": { "version": "2.1.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dependencies": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" @@ -4307,9 +6606,10 @@ "node": ">=4" } }, - "node_modules/table/node_modules/strip-ansi": { + "node_modules/table/node_modules/string-width/node_modules/strip-ansi": { "version": "4.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", "dependencies": { "ansi-regex": "^3.0.0" }, @@ -4317,9 +6617,18 @@ "node": ">=4" } }, + "node_modules/table/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/text-table": { "version": "0.2.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" }, "node_modules/then-request": { "version": "2.2.0", @@ -4335,7 +6644,8 @@ }, "node_modules/through": { "version": "2.3.8", - "license": "MIT" + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" }, "node_modules/toidentifier": { "version": "1.0.1", @@ -4355,6 +6665,18 @@ "node": ">=0.8" } }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, "node_modules/tunnel-agent": { "version": "0.6.0", "license": "Apache-2.0", @@ -4370,14 +6692,17 @@ "license": "Unlicense" }, "node_modules/type": { - "version": "1.2.0", - "license": "ISC" + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" }, "node_modules/type-check": { - "version": "0.3.2", - "license": "MIT", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, "dependencies": { - "prelude-ls": "~1.1.2" + "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" @@ -4391,6 +6716,18 @@ "node": ">=4" } }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/type-is": { "version": "1.6.18", "license": "MIT", @@ -4402,14 +6739,74 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typed-array-length": { - "version": "1.0.4", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.5.tgz", + "integrity": "sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4435,7 +6832,8 @@ }, "node_modules/uniq": { "version": "1.0.1", - "license": "MIT" + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==" }, "node_modules/unpipe": { "version": "1.0.0", @@ -4467,7 +6865,8 @@ }, "node_modules/user-home": { "version": "2.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha512-KMWqdlOcjCYdtIJpicDSFBQ8nFwS2i9sslAd6f4+CBGcU4gist2REnr2fxj2YocvJFxSF3ZOHLYLVZnUxv4BZQ==", "dependencies": { "os-homedir": "^1.0.0" }, @@ -4529,6 +6928,15 @@ "version": "1.0.2", "license": "MIT" }, + "node_modules/version-guard": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/version-guard/-/version-guard-1.1.1.tgz", + "integrity": "sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==", + "dev": true, + "engines": { + "node": ">=0.10.48" + } + }, "node_modules/which": { "version": "1.3.1", "dev": true, @@ -4555,22 +6963,69 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/which-module": { "version": "2.0.1", "dev": true, "license": "ISC" }, "node_modules/which-typed-array": { - "version": "1.1.9", + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", "dev": true, - "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" + "has-tostringtag": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -4607,8 +7062,9 @@ "license": "MIT" }, "node_modules/word-wrap": { - "version": "1.2.3", - "license": "MIT", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "engines": { "node": ">=0.10.0" } @@ -4683,7 +7139,8 @@ }, "node_modules/write": { "version": "0.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha512-CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA==", "dependencies": { "mkdirp": "^0.5.1" }, @@ -4691,6 +7148,15 @@ "node": ">=0.10.0" } }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/xml2js": { "version": "0.5.0", "dev": true, @@ -4812,6 +7278,18 @@ "engines": { "node": ">=6" } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } } } diff --git a/package.json b/package.json index 09be8062..d7c5d81a 100644 --- a/package.json +++ b/package.json @@ -30,10 +30,10 @@ "request-promise": "^4.1.1", "should": "^7.0.2", "sinon": "^4.3.0", - "standard": "^6.0.8" + "standard": "^17.0.1" }, "scripts": { - "test": "./node_modules/.bin/standard --env mocha --globals expect && NODE_ENV=test ./node_modules/.bin/mocha test --exit", + "test": "./node_modules/.bin/standard --env mocha && NODE_ENV=test ./node_modules/.bin/mocha test --exit", "start": "node app.js", "deploy-development": "git checkout development && git pull origin development && eb deploy discovery-api-dev --profile nypl-sandbox", "deploy-qa": "git checkout qa && git pull origin qa && eb deploy discovery-api-qa --profile nypl-digital-dev", @@ -48,7 +48,9 @@ "standard": { "globals": [ "after", + "afterEach", "before", + "beforeEach", "describe", "expect", "it" diff --git a/routes/misc.js b/routes/misc.js index ff39e78a..f03e890a 100644 --- a/routes/misc.js +++ b/routes/misc.js @@ -1,4 +1,4 @@ -var util = require('../lib/util') +const util = require('../lib/util') const config = require('config') const VER = config.get('major_version') @@ -14,6 +14,5 @@ module.exports = function (app) { app.get(`/api/v${VER}/discovery/context_:which.jsonld`, function (req, res) { res.type('application/ld+json') util.context(req.params.which).then((c) => res.status(200).send(JSON.stringify({ '@context': c }, null, 2))) - return }) } diff --git a/routes/resources.js b/routes/resources.js index ca64eb98..1c8b4bb5 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -1,4 +1,4 @@ -var gatherParams = require('../lib/util').gatherParams +const gatherParams = require('../lib/util').gatherParams const config = require('config') @@ -13,13 +13,13 @@ module.exports = function (app) { next() }) - var standardParams = ['page', 'per_page', 'q', 'filters', 'expandContext', 'ext', 'field', 'sort', 'sort_direction', 'search_scope', 'items_size', 'items_from', 'contributor', 'title', 'subject', 'isbn', 'issn', 'lccn', 'oclc', 'merge_checkin_card_items', 'include_item_aggregations'] + const standardParams = ['page', 'per_page', 'q', 'filters', 'expandContext', 'ext', 'field', 'sort', 'sort_direction', 'search_scope', 'items_size', 'items_from', 'contributor', 'title', 'subject', 'isbn', 'issn', 'lccn', 'oclc', 'merge_checkin_card_items', 'include_item_aggregations'] const respond = (res, _resp, params) => { - var contentType = 'application/ld+json' + let contentType = 'application/ld+json' if (params.ext === 'ntriples') contentType = 'text/plain' - var resp = _resp + let resp = _resp if (contentType !== 'text/plain') resp = JSON.stringify(_resp, null, 2) res.type(contentType) @@ -28,7 +28,7 @@ module.exports = function (app) { } const handleError = (res, error, params) => { - var statusCode = 500 + let statusCode = 500 switch (error.name) { case 'InvalidParameterError': statusCode = 422 @@ -46,7 +46,7 @@ module.exports = function (app) { } app.get(`/api/v${VER}/discovery/resources$`, function (req, res) { - var params = gatherParams(req, standardParams) + const params = gatherParams(req, standardParams) return app.resources.search(params, { baseUrl: app.baseUrl }, req) .then((resp) => respond(res, resp, params)) @@ -54,7 +54,7 @@ module.exports = function (app) { }) app.get(`/api/v${VER}/discovery/resources/aggregations`, function (req, res) { - var params = gatherParams(req, standardParams) + const params = gatherParams(req, standardParams) return app.resources.aggregations(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) @@ -62,7 +62,7 @@ module.exports = function (app) { }) app.get(`/api/v${VER}/discovery/resources/aggregation/:field`, function (req, res) { - var params = Object.assign({}, gatherParams(req, standardParams), req.params) + const params = Object.assign({}, gatherParams(req, standardParams), req.params) return app.resources.aggregation(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) @@ -76,9 +76,9 @@ 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) { - var params = gatherParams(req, ['barcodes', 'patronId']) + const params = gatherParams(req, ['barcodes', 'patronId']) - var handler = app.resources.deliveryLocationsByBarcode + const handler = app.resources.deliveryLocationsByBarcode return handler(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) @@ -91,8 +91,8 @@ module.exports = function (app) { * * e.g. discovery/resources/b1234-i9876 */ - app.get(`/api/v${VER}/discovery/resources/:uri\-:itemUri([a-z]?i[0-9]+)`, function (req, res) { - var params = { uri: req.params.uri, itemUri: req.params.itemUri } + app.get(`/api/v${VER}/discovery/resources/:uri-:itemUri([a-z]?i[0-9]+)`, function (req, res) { + const params = { uri: req.params.uri, itemUri: req.params.itemUri } return app.resources.findByUri(params, { baseUrl: app.baseUrl }, req) .then((responseBody) => respond(res, responseBody, params)) @@ -105,8 +105,8 @@ module.exports = function (app) { * * e.g. discovery/resources/b1234 */ - app.get(`/api/v${VER}/discovery/resources/:uri\.:ext?`, function (req, res) { - var gatheredParams = gatherParams(req, ['uri', 'items_size', 'items_from', 'merge_checkin_card_items', 'include_item_aggregations']) + 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']) const params = Object.assign({}, req.query, { uri: req.params.uri }) if (Number.isInteger(parseInt(gatheredParams.items_size))) params.items_size = gatheredParams.items_size diff --git a/scripts/compare-indexes.js b/scripts/compare-indexes.js index 52868288..c66e2373 100644 --- a/scripts/compare-indexes.js +++ b/scripts/compare-indexes.js @@ -118,7 +118,7 @@ mapDelayed(apps, 500, (app, ind) => { .then((apps) => { console.log('___________________________________________') console.log('Result:') - ; apps.forEach((app, ind) => { + apps.forEach((app, ind) => { console.log(` App ${ind + 1}. ${app.index} (port ${app.port}): ${app.response.totalResults} results`) }) const diff = { diff --git a/scripts/diff-of-two-annotated-marcs.js b/scripts/diff-of-two-annotated-marcs.js index c27676f0..95f1a744 100644 --- a/scripts/diff-of-two-annotated-marcs.js +++ b/scripts/diff-of-two-annotated-marcs.js @@ -14,14 +14,14 @@ const localFields = fields(local) const diff = {} remoteFields.forEach((field) => { - diff[field.label] = {remote: field.values, local: []} + diff[field.label] = { remote: field.values, local: [] } }) localFields.forEach((field) => { if (diff[field.label]) { - diff[field.label]['local'] = field.values + diff[field.label].local = field.values } else { - diff[field.label] = {remote: [], local: field.values} + diff[field.label] = { remote: [], local: field.values } } }) @@ -31,7 +31,7 @@ Object.keys(diff).forEach((key) => { const result = {} Object.keys(diff).forEach((key) => { - if (diff[key]['local'].length !== 0 || diff[key]['remote'].length !== 0) { + if (diff[key].local.length !== 0 || diff[key].remote.length !== 0) { result[key] = diff[key] } }) diff --git a/test/aggregations.test.js b/test/aggregations.test.js index 0d8a545e..83d1bf83 100644 --- a/test/aggregations.test.js +++ b/test/aggregations.test.js @@ -1,5 +1,5 @@ -var request = require('request-promise') -var assert = require('assert') +const request = require('request-promise') +const assert = require('assert') const fixtures = require('./fixtures') @@ -14,7 +14,7 @@ describe('Aggregations response', function () { fixtures.disableEsFixtures() }) - var requestPath = '/api/v0.1/discovery/resources/aggregations?q=hamilton&search_scope=all' + const requestPath = '/api/v0.1/discovery/resources/aggregations?q=hamilton&search_scope=all' // This is a bad test. // * It's super dependent on our index at the time of writing. // * It talks to the network @@ -25,8 +25,8 @@ describe('Aggregations response', function () { request.get(`${global.TEST_BASE_URL}${requestPath}`, function (err, response, body) { if (err) throw err assert.equal(200, response.statusCode) - var doc = JSON.parse(body) - var values = doc.itemListElement[0].values + const doc = JSON.parse(body) + const values = doc.itemListElement[0].values expect(values.length).to.be.above(0) expect(values[0].value).to.equal('orgs:1000') expect(values[0].label).to.equal('Stephen A. Schwarzman Building') diff --git a/test/annotated-marc-rules.test.js b/test/annotated-marc-rules.test.js index 529f1fcd..a0551f40 100644 --- a/test/annotated-marc-rules.test.js +++ b/test/annotated-marc-rules.test.js @@ -44,7 +44,7 @@ describe('Annotated Marc Rules', function () { describe('building annotated marc rules', function () { it('should apply bib index rule to marc rule', function () { // Test rule *without bib index rule applied: - let rule = AnnotatedMarcSerializer.parseWebpubToAnnotatedMarcRules('b|s|8..|-6|Series||b|').pop() + const rule = AnnotatedMarcSerializer.parseWebpubToAnnotatedMarcRules('b|s|8..|-6|Series||b|').pop() expect(rule).to.be.a('object') expect(rule.label).to.equal('Series') expect(rule.marcIndicatorRegExp).to.be.a('RegExp') @@ -54,11 +54,13 @@ describe('Annotated Marc Rules', function () { describe('bib parsing', function () { it('identifies varfields', function () { - const sampleBib = { varFields: [ + const sampleBib = { + varFields: [ { fieldTag: 'a', marcTag: 362, ind1: '', ind2: 1 }, { fieldTag: 'a', marcTag: 361, ind1: 2, ind2: 4 }, { fieldTag: 'a', marcTag: 360, ind1: '', ind2: '' } - ] } + ] + } // Match 362, any indicators: const rule1 = AnnotatedMarcSerializer.parseWebpubToAnnotatedMarcRules('b|a|362|-06|Publication Date||b|').pop() const matching = AnnotatedMarcSerializer.matchingMarcFields(sampleBib, rule1) @@ -492,10 +494,12 @@ describe('Annotated Marc Rules', function () { }) it('should place field tags in correct order when given a bib', function () { - const sampleBib = { varFields: [{ fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'anyone' }] }, - { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'lived' }] }, - { fieldTag: 'p', marcTag: '260', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'in' }] } - ] } + const sampleBib = { + varFields: [{ fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'anyone' }] }, + { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'lived' }] }, + { fieldTag: 'p', marcTag: '260', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'in' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.an('object') expect(serialized.bib.fields).to.be.an('array') @@ -506,12 +510,14 @@ describe('Annotated Marc Rules', function () { }) it('should place MARC tags in correct order within a field tag when given a bib', function () { - const sampleBib = { varFields: [{ fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'anyone' }] }, - { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'lived' }] }, - { fieldTag: 'p', marcTag: '260', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'in' }] }, - { fieldTag: 't', marcTag: '130', indx1: '', ind2: '', subfields: [{ tag: 'a', content: 'a' }] }, - { fieldTag: 't', marcTag: '130', indx1: '', ind2: '', subfields: [{ tag: 'a', content: 'pretty' }] } - ] } + const sampleBib = { + varFields: [{ fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'anyone' }] }, + { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'lived' }] }, + { fieldTag: 'p', marcTag: '260', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'in' }] }, + { fieldTag: 't', marcTag: '130', indx1: '', ind2: '', subfields: [{ tag: 'a', content: 'a' }] }, + { fieldTag: 't', marcTag: '130', indx1: '', ind2: '', subfields: [{ tag: 'a', content: 'pretty' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.an('object') expect(serialized.bib.fields).to.be.an('array') @@ -521,10 +527,12 @@ describe('Annotated Marc Rules', function () { }) it('should place parallel fields next to the fields they parallel', function () { - const sampleBib = { varFields: [{ fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'how' }, { tag: '6', content: '880-01' }] }, - { fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'town' }] }, - { fieldTag: 'y', marcTag: '880', ind1: '1', ind2: '', subfields: [{ tag: 'a', content: 'with' }, { tag: '6', content: '880-01' }] } - ] } + const sampleBib = { + varFields: [{ fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'how' }, { tag: '6', content: '880-01' }] }, + { fieldTag: 't', marcTag: '130', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'town' }] }, + { fieldTag: 'y', marcTag: '880', ind1: '1', ind2: '', subfields: [{ tag: 'a', content: 'with' }, { tag: '6', content: '880-01' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.an('object') expect(serialized.bib.fields).to.be.an('array') @@ -540,13 +548,17 @@ describe('Annotated Marc Rules', function () { varFields: [ { fieldTag: 'u', - marcTag: '246', ind1: '1', ind2: '5', + marcTag: '246', + ind1: '1', + ind2: '5', subfields: [{ tag: 'a', content: 'how' }, { tag: '6', content: '880-01' }] }, // This one is a 246, but won't match the current pattern of ^24615: { fieldTag: 'u', - marcTag: '246', ind1: '3', ind2: ' ', + marcTag: '246', + ind1: '3', + ind2: ' ', subfields: [{ tag: 'a', content: 'town' }] } ] @@ -565,9 +577,11 @@ describe('Annotated Marc Rules', function () { describe('Relator Mappings', function () { it('should replace designated codes in designated fields', function () { - const sampleBib = { varFields: [{ fieldTag: 'b', marcTag: '700', ind1: '1', ind2: '', subfields: [{ tag: 'a', content: 'Cramer, Richard' }, { tag: '4', content: 'aut -- 700 1b' }] }, - { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'up' }, { tag: '4', content: 'cos so' }] } - ] } + const sampleBib = { + varFields: [{ fieldTag: 'b', marcTag: '700', ind1: '1', ind2: '', subfields: [{ tag: 'a', content: 'Cramer, Richard' }, { tag: '4', content: 'aut -- 700 1b' }] }, + { fieldTag: 'a', marcTag: '100', ind1: '', ind2: '', subfields: [{ tag: 'a', content: 'up' }, { tag: '4', content: 'cos so' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.an('object') @@ -583,7 +597,11 @@ describe('Annotated Marc Rules', function () { const sampleBib = { varFields: [ { - fieldTag: 'b', marcTag: '700', ind1: '1', ind2: '', subfields: [ + fieldTag: 'b', + marcTag: '700', + ind1: '1', + ind2: '', + subfields: [ { tag: 'a', content: 'Cramer, Richard' }, { tag: '4', content: 'aut' }, { tag: '4', content: 'prt' } @@ -603,11 +621,13 @@ describe('Annotated Marc Rules', function () { describe('"Connect to:" labels', function () { it('should extract label from $z, $y, or $3', function () { - const sampleBib = { varFields: [ - { fieldTag: 'y', marcTag: '856', subfields: [ { tag: 'u', content: 'http://example.com#0' }, { tag: 'z', content: 'Label 1' } ] }, - { fieldTag: 'y', marcTag: '856', subfields: [ { tag: 'u', content: 'http://example.com#1' }, { tag: 'y', content: 'Label 2' }, { tag: '3', content: 'This additional lable is ignored because we found $y first' } ] }, - { fieldTag: 'y', marcTag: '856', subfields: [ { tag: 'a', content: 'Ignore tag' }, { tag: 'u', content: 'http://example.com#2' }, { tag: '3', content: 'Label 3' } ] } - ] } + const sampleBib = { + varFields: [ + { fieldTag: 'y', marcTag: '856', subfields: [{ tag: 'u', content: 'http://example.com#0' }, { tag: 'z', content: 'Label 1' }] }, + { fieldTag: 'y', marcTag: '856', subfields: [{ tag: 'u', content: 'http://example.com#1' }, { tag: 'y', content: 'Label 2' }, { tag: '3', content: 'This additional lable is ignored because we found $y first' }] }, + { fieldTag: 'y', marcTag: '856', subfields: [{ tag: 'a', content: 'Ignore tag' }, { tag: 'u', content: 'http://example.com#2' }, { tag: '3', content: 'Label 3' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.a('object') @@ -622,9 +642,11 @@ describe('Annotated Marc Rules', function () { }) it('should use default label when none specified', function () { - const sampleBib = { varFields: [ - { fieldTag: 'y', marcTag: '856', subfields: [ { tag: 'u', content: 'http://example.com#0' } ] } - ] } + const sampleBib = { + varFields: [ + { fieldTag: 'y', marcTag: '856', subfields: [{ tag: 'u', content: 'http://example.com#0' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.a('object') @@ -639,11 +661,13 @@ describe('Annotated Marc Rules', function () { describe('Subject delimiters', function () { it('should use -- delimiters', function () { - const sampleBib = { varFields: [ - { fieldTag: 'd', marcTag: '600', subfields: [ { tag: 'a', content: 'Artist, Starving,' }, { tag: 'd', content: '1900-1999' }, { tag: 'v', content: 'Autobiography.' } ] }, - { fieldTag: 'd', marcTag: '611', subfields: [ { tag: 'a', content: 'Stonecutters\' Annual Picnic' }, { tag: 'n', content: '(12th :' }, { tag: 'd', content: '1995 :' }, { tag: 'c', content: 'Springfield)' }, { tag: 'x', content: 'History' }, { tag: 'v', content: 'Drama.' } ] }, - { fieldTag: 'd', marcTag: '651', subfields: [ { tag: 'a', content: 'New York (N.Y.)' }, { tag: 'y', content: '21st century' }, { tag: 'x', content: 'Diaries.' } ] } - ] } + const sampleBib = { + varFields: [ + { fieldTag: 'd', marcTag: '600', subfields: [{ tag: 'a', content: 'Artist, Starving,' }, { tag: 'd', content: '1900-1999' }, { tag: 'v', content: 'Autobiography.' }] }, + { fieldTag: 'd', marcTag: '611', subfields: [{ tag: 'a', content: 'Stonecutters\' Annual Picnic' }, { tag: 'n', content: '(12th :' }, { tag: 'd', content: '1995 :' }, { tag: 'c', content: 'Springfield)' }, { tag: 'x', content: 'History' }, { tag: 'v', content: 'Drama.' }] }, + { fieldTag: 'd', marcTag: '651', subfields: [{ tag: 'a', content: 'New York (N.Y.)' }, { tag: 'y', content: '21st century' }, { tag: 'x', content: 'Diaries.' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.a('object') @@ -658,7 +682,7 @@ describe('Annotated Marc Rules', function () { }) describe('Annotated marc endpoint', function () { - let app = {} + const app = {} before(function () { // Get a minimal instance of app (just controller code): @@ -703,9 +727,11 @@ describe('Annotated Marc Rules', function () { describe('Creator/Contributor Characteristics', function () { it('should extract Creator/Contributor Characteristics from 386', function () { - const sampleBib = { varFields: [ - { fieldTag: 'r', marcTag: '386', subfields: [ { tag: 'a', content: 'Creator/Contributor Characteristics content' }, { tag: '6', content: 'ignore' } ] } - ] } + const sampleBib = { + varFields: [ + { fieldTag: 'r', marcTag: '386', subfields: [{ tag: 'a', content: 'Creator/Contributor Characteristics content' }, { tag: '6', content: 'ignore' }] } + ] + } const serialized = AnnotatedMarcSerializer.serialize(sampleBib) expect(serialized.bib).to.be.a('object') diff --git a/test/availability_resolver.test.js b/test/availability_resolver.test.js index b7b890d5..b04fdd8b 100644 --- a/test/availability_resolver.test.js +++ b/test/availability_resolver.test.js @@ -11,43 +11,43 @@ const esClient = require('../lib/es-client') const itemAvailabilityResponse = [ { - 'itemBarcode': '33433058338470', - 'itemAvailabilityStatus': "Item Barcode doesn't exist in SCSB database.", - 'errorMessage': null + itemBarcode: '33433058338470', + itemAvailabilityStatus: "Item Barcode doesn't exist in SCSB database.", + errorMessage: null }, { - 'itemBarcode': '32101071572406', - 'itemAvailabilityStatus': 'Not Available', - 'errorMessage': null + itemBarcode: '32101071572406', + itemAvailabilityStatus: 'Not Available', + errorMessage: null }, { - 'itemBarcode': '1000546836', - 'itemAvailabilityStatus': 'Available', - 'errorMessage': null + itemBarcode: '1000546836', + itemAvailabilityStatus: 'Available', + errorMessage: null }, // An item in rc2ma", which ES has as Available: { - 'itemBarcode': '10005468369', - 'itemAvailabilityStatus': 'Not Available', - 'errorMessage': null + itemBarcode: '10005468369', + itemAvailabilityStatus: 'Not Available', + errorMessage: null }, // CUL item (available): { - 'itemBarcode': '1000020117', - 'itemAvailabilityStatus': 'Available', - 'errorMessage': null + itemBarcode: '1000020117', + itemAvailabilityStatus: 'Available', + errorMessage: null }, // CUL item (not available): { - 'itemBarcode': '10000201179999', - 'itemAvailabilityStatus': 'Not Available', - 'errorMessage': null + itemBarcode: '10000201179999', + itemAvailabilityStatus: 'Not Available', + errorMessage: null }, // Special collections item: { - 'itemBarcode': '33433058338470', - 'itemAvailabilityStatus': 'Available', - 'errorMessage': null + itemBarcode: '33433058338470', + itemAvailabilityStatus: 'Available', + errorMessage: null } ] @@ -66,11 +66,11 @@ describe('Response with updated availability', function () { }) it('will change an items status to "Available" if ElasticSearch says it\'s unavailable but SCSB says it is Available', function () { - let availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - let indexedAsUnavailableURI = 'i10283664' + const indexedAsUnavailableURI = 'i10283664' - let indexedAsUnavailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + const indexedAsUnavailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { return item.uri === indexedAsUnavailableURI }) @@ -80,7 +80,7 @@ describe('Response with updated availability', function () { return availabilityResolver.responseWithUpdatedAvailability() .then((modifiedResponse) => { - let theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { return item.uri === indexedAsUnavailableURI }) @@ -91,10 +91,10 @@ describe('Response with updated availability', function () { }) it('will change an items status to "Unavailable" if ElasticSearch says it\'s Available but SCSB says it is Unvailable', function () { - let availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - let indexedAsAvailableURI = 'i102836649' - let indexedAsAvailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + const indexedAsAvailableURI = 'i102836649' + const indexedAsAvailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { return item.uri === indexedAsAvailableURI }) @@ -104,7 +104,7 @@ describe('Response with updated availability', function () { return availabilityResolver.responseWithUpdatedAvailability() .then((modifiedResponse) => { - let theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { return item.uri === indexedAsAvailableURI }) @@ -115,10 +115,10 @@ describe('Response with updated availability', function () { }) it('will return the original ElasticSearchResponse\'s status for the item if the SCSB can\'t find an item with the barcode', function () { - let availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - let indexedButNotAvailableInSCSBURI = 'i22566485' - let indexedButNotAvailableInSCSB = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + const indexedButNotAvailableInSCSBURI = 'i22566485' + const indexedButNotAvailableInSCSB = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { return item.uri === indexedButNotAvailableInSCSBURI }) @@ -127,7 +127,7 @@ describe('Response with updated availability', function () { return availabilityResolver.responseWithUpdatedAvailability() .then((modifiedResponse) => { - let theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { return item.uri === indexedButNotAvailableInSCSBURI }) @@ -138,15 +138,15 @@ describe('Response with updated availability', function () { }) it('includes the latest availability status of items', function () { - let availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) return availabilityResolver.responseWithUpdatedAvailability() .then((response) => { - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with Discovery status 'Available', but SCSB // status 'Not Available' should be made 'Not Available' - var unavailableItem = items.find((item) => { + const unavailableItem = items.find((item) => { return item.uri === 'i102836649' }) expect(unavailableItem.status[0].id).to.equal('status:na') @@ -154,7 +154,7 @@ describe('Response with updated availability', function () { // A ReCAP item with Discovery status 'Not Avaiable', but SCSB // status 'Available' should be made available: - var availableItem = items.find((item) => { + const availableItem = items.find((item) => { return item.uri === 'i10283664' }) expect(availableItem.status[0].id).to.equal('status:a') @@ -172,9 +172,9 @@ describe('Response with updated availability', function () { it('marks CUL item Available when SCSB API indicates it is so', function () { return availabilityResolver.responseWithUpdatedAvailability() .then((response) => { - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var availableItem = items.find((item) => item.uri === 'ci1455504') + const availableItem = items.find((item) => item.uri === 'ci1455504') expect(availableItem.requestable[0]).to.equal(true) expect(availableItem.status[0].label).to.equal('Available') }) @@ -183,9 +183,9 @@ describe('Response with updated availability', function () { it('marks CUL item not avilable when SCSB API indicates it is so', function () { return availabilityResolver.responseWithUpdatedAvailability() .then((response) => { - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var notAvailableItem = items.find((item) => item.uri === 'ci14555049999') + const notAvailableItem = items.find((item) => item.uri === 'ci14555049999') expect(notAvailableItem.status[0].label).to.equal('Not available') }) }) @@ -206,7 +206,7 @@ describe('Response with updated availability', function () { it('updates recapCustomerCode when item\'s code does not match SCSB', () => { return availabilityResolver.responseWithUpdatedAvailability() .then((response) => { - let items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with customer code XX const queryItem = items.find((item) => { return item.uri === 'i10283667' @@ -267,7 +267,7 @@ describe('Response with updated availability', function () { describe('_recapStatusesAsEsAggregations', () => { it('translates recap statuses into es aggregations', () => { const recapStatuses = { - 'Available': [ 'barcode1', 'barcode2', 'barcode3', 'barcode4' ], + Available: ['barcode1', 'barcode2', 'barcode3', 'barcode4'], 'Not Available': ['barcode5', 'barcode6'] } expect(AvailabilityResolver.prototype._recapStatusesAsEsAggregations(recapStatuses)) diff --git a/test/available_delivery_location_types.test.js b/test/available_delivery_location_types.test.js index 00990cc7..00787530 100644 --- a/test/available_delivery_location_types.test.js +++ b/test/available_delivery_location_types.test.js @@ -1,7 +1,7 @@ const fixtures = require('./fixtures') describe('AvailableDeliveryLocationTypes', function () { - let AvailableDeliveryLocationTypes = require('../lib/available_delivery_location_types.js') + const AvailableDeliveryLocationTypes = require('../lib/available_delivery_location_types.js') before(function () { // Reroute these (and only these) api paths to local fixtures: diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index 94ab3eb6..e8ab9b20 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -1,22 +1,22 @@ -var DeliveryLocationsResolver = require('../lib/delivery-locations-resolver') +const DeliveryLocationsResolver = require('../lib/delivery-locations-resolver') -var sampleItems = { +const sampleItems = { onsiteOnlySchomburg: { '@id': 'res:i11982421', '@type': [ 'bf:Item' ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff3', - 'prefLabel': 'Schomburg Center - Research & Reference - Desk' + id: 'loc:scff3', + prefLabel: 'Schomburg Center - Research & Reference - Desk' } ], - 'idBarcode': [ + idBarcode: [ '33433036951154' ], - 'identifier': [ + identifier: [ { '@type': 'bf:ShelfMark', '@value': 'Sc Micro F-1843' @@ -26,84 +26,84 @@ var sampleItems = { '@value': '33433036951154' } ], - 'specRequestable': false, - 'status': [ + specRequestable: false, + status: [ { '@id': 'status:a', - 'prefLabel': 'Available' + prefLabel: 'Available' } ], - 'uri': 'i11982421' + uri: 'i11982421' }, onsiteNypl: { - 'identifier': [ + identifier: [ 'urn:bnum:b11995345', 'urn:bnum:b11995322', 'urn:barcode:33433036864449' ], - 'uri': 'i12227153', - 'holdingLocation': [ + uri: 'i12227153', + holdingLocation: [ { - 'id': 'loc:scff1', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff1', + label: 'Schomburg Center - Research & Reference' } ], - 'accessMessage': [ - { 'label': 'Use in library', 'id': 'accessMessage:1' } + accessMessage: [ + { label: 'Use in library', id: 'accessMessage:1' } ], - 'catalogItemType': [ - { 'label': 'book, limited circ, MaRLI', 'id': 'catalogItemType:55' } + catalogItemType: [ + { label: 'book, limited circ, MaRLI', id: 'catalogItemType:55' } ], - 'status': [ - { 'label': 'Available ', 'id': 'status:a' } + status: [ + { label: 'Available ', id: 'status:a' } ] }, offsiteNypl: { - 'identifier': [ + identifier: [ 'urn:bnum:pb176961', 'urn:bnum:b11995345', 'urn:barcode:33433047331719' ], - 'uri': 'i14211097', - 'holdingLocation': [ + uri: 'i14211097', + holdingLocation: [ { - 'id': 'loc:rcpm2', - 'label': 'OFFSITE - Request in Advance for use at Performing Arts' + id: 'loc:rcpm2', + label: 'OFFSITE - Request in Advance for use at Performing Arts' } ] }, pul: { - 'identifier': [ + identifier: [ 'urn:bnum:pb176961', 'urn:barcode:32101062243553' ], - 'uri': 'pi189241' + uri: 'pi189241' }, cul: { - 'identifier': [ + identifier: [ 'urn:bnum:cb1014551', 'urn:barcode:CU56521537' ], - 'uri': 'ci9876' + uri: 'ci9876' }, offsiteNyplDeliverableToScholarRooms: { - 'identifier': [ + identifier: [ 'urn:bnum:b11995155', 'urn:barcode:33433011759648' ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:rcpm2', - 'label': 'OFFSITE - Request in Advance for use at Performing Arts' + id: 'loc:rcpm2', + label: 'OFFSITE - Request in Advance for use at Performing Arts' } ], - 'uri': 'i10483065' + uri: 'i10483065' }, fakeNYPLMapDivisionItem: { - 'identifier': [ + identifier: [ 'urn:barcode:made-up-barcode-that-recap-says-belongs-to-ND' ], - 'uri': 'i7654' + uri: 'i7654' } } @@ -127,10 +127,10 @@ function takeThisPartyPartiallyOffline () { DeliveryLocationsResolver.__recapCustomerCodesByBarcodes = (barcodes) => { const stubbedLookups = { 'recap-barcode-for-pj': 'PJ', - '33433047331719': 'NP', - '32101062243553': 'PA', - 'CU56521537': 'CU', - '33433011759648': 'NA', + 33433047331719: 'NP', + 32101062243553: 'PA', + CU56521537: 'CU', + 33433011759648: 'NA', // Let's pretend this is a valid NYPL Map Division item barcode // and let's further pretend that HTC API tells us it's recap customer code is ND 'made-up-barcode-that-recap-says-belongs-to-ND': 'ND' @@ -151,7 +151,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocation for LPA or SC only deliverable items, patron is scholar type', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteOnlySchomburg], 'mala').then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() // Confirm the known scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -162,7 +162,7 @@ describe('Delivery-locations-resolver', function () { it('will return empty delivery locations for an unrequestable onsite location code', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteNypl]).then((items) => { - expect(items[0].deliveryLocation).to.be.empty + expect(items[0].deliveryLocation).to.be.empty() }) }) @@ -174,7 +174,7 @@ describe('Delivery-locations-resolver', function () { it('will ammend the deliveryLocation property for an offsite NYPL item', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNypl]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() }) }) @@ -186,7 +186,7 @@ describe('Delivery-locations-resolver', function () { it('will ammend the deliveryLocation property for a PUL item', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.pul]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() }) }) @@ -210,7 +210,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocation for non-scholars', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() // Confirm the known scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -238,13 +238,13 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([offsiteItemInNonRequestableLocation]) .then((items) => { expect(items[0].deliveryLocation).to.be.a('array') - expect(items[0].deliveryLocation).to.be.empty + expect(items[0].deliveryLocation).to.be.empty() }) }) it('will reveal specific scholar room deliveryLocation when specified', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms], 'mal17').then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() // Confirm the non specified scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -257,7 +257,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocations for scholars with no specific scholar room', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() // Confirm that all scholar rooms are included: scholarRooms.forEach((scholarRoom) => { @@ -271,26 +271,26 @@ describe('Delivery-locations-resolver', function () { beforeEach(function () { item = { - 'identifier': [ + identifier: [ 'urn:bnum:b11995345', 'urn:bnum:b11995322', 'urn:barcode:33433036864449' ], - 'uri': 'i12227153', - 'holdingLocation': [ + uri: 'i12227153', + holdingLocation: [ { - 'id': 'loc:scff2', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff2', + label: 'Schomburg Center - Research & Reference' } ], - 'accessMessage': [ - { 'label': 'Use in library', 'id': 'accessMessage:1' } + accessMessage: [ + { label: 'Use in library', id: 'accessMessage:1' } ], - 'catalogItemType': [ - { 'label': 'book, limited circ, MaRLI', 'id': 'catalogItemType:55' } + catalogItemType: [ + { label: 'book, limited circ, MaRLI', id: 'catalogItemType:55' } ], - 'status': [ - { 'label': 'Available ', 'id': 'status:a' } + status: [ + { label: 'Available ', id: 'status:a' } ] } }) @@ -363,7 +363,7 @@ describe('Delivery-locations-resolver', function () { holdingLocation: [{ id: requestableM1Location }] }] return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability(items).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty + expect(items[0].deliveryLocation).to.not.be.empty() }) }) it('returns delivery locations for requestable M2 items', () => { @@ -396,7 +396,7 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver .attachDeliveryLocationsAndEddRequestability(items) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty + expect(items[0].deliveryLocation).to.be.empty() }) }) @@ -409,7 +409,7 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver .attachDeliveryLocationsAndEddRequestability(items) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty + expect(items[0].deliveryLocation).to.be.empty() }) }) @@ -480,7 +480,7 @@ describe('Delivery-locations-resolver', function () { } expect(DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([item]) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty + expect(items[0].deliveryLocation).to.be.empty() })) }) }) diff --git a/test/fixtures.js b/test/fixtures.js index b77ccf56..36fe6e38 100644 --- a/test/fixtures.js +++ b/test/fixtures.js @@ -23,7 +23,7 @@ let missingFixturePaths = 0 * Emulates app.esClient.search function via local fixtures */ function esClientSearchViaFixtures (properties) { - let path = esFixturePath(properties) + const path = esFixturePath(properties) usedFixturePaths[path] = true if (process.env.DEBUG_FIXTURES) console.log(`Using ES fixture ${path}`) @@ -50,7 +50,7 @@ function esClientSearchViaFixtures (properties) { * process.env.UPDATE_FIXTURES = 'if-missing' */ function writeEsResponseToFixture (properties, resp) { - let path = esFixturePath(properties) + const path = esFixturePath(properties) return new Promise((resolve, reject) => { fs.writeFile(path, JSON.stringify(resp, null, 2), (err, res) => { if (err) return reject(err) @@ -66,7 +66,7 @@ function writeEsResponseToFixture (properties, resp) { * @returns {Promise} A promise that resolves a boolean: true if fixture exists, false otherwise. */ function esFixtureExists (properties) { - let path = esFixturePath(properties) + const path = esFixturePath(properties) return new Promise((resolve, reject) => { fs.access(path, (err, fd) => { const exists = !err @@ -140,7 +140,7 @@ function scsbFixturePath (type, args) { * @returns {Promise} A promise that resolves a boolean: true if fixture exists, false otherwise. */ function scsbFixtureExists (type, barcodes) { - let path = scsbFixturePath(type, barcodes) + const path = scsbFixturePath(type, barcodes) return new Promise((resolve, reject) => { fs.access(path, (err, fd) => { const exists = !err @@ -155,7 +155,7 @@ const usedFixturePaths = {} * Emulates SCSBClient.getItemAvailabilityForBarcodes via local fixtures */ function scsbViaFixtures (type, barcodes) { - let path = scsbFixturePath(type, barcodes) + const path = scsbFixturePath(type, barcodes) usedFixturePaths[path] = true return new Promise((resolve, reject) => { @@ -180,7 +180,7 @@ function scsbViaFixtures (type, barcodes) { * process.env.UPDATE_FIXTURES = 'if-missing' */ function writeScsbResponseToFixture (type, properties, resp) { - let path = scsbFixturePath(type, properties) + const path = scsbFixturePath(type, properties) return new Promise((resolve, reject) => { fs.writeFile(path, JSON.stringify(resp, null, 2), (err, res) => { if (err) return reject(err) @@ -272,7 +272,7 @@ function enableDataApiFixtures (pathToFixtureMap) { // Override app's _doAuthenticatedRequest call to return fixtures for specific paths, otherwise fail: sinon.stub(dataApiClient, '_doAuthenticatedRequest').callsFake(function (requestOptions) { // Get relative api path: (e.g. 'patrons/1234') - const requestPath = url.parse(requestOptions.uri).path.replace('/api/v0.1/', '') + const requestPath = new url.URL(requestOptions.uri).path.replace('/api/v0.1/', '') if (pathToFixtureMap[requestPath]) { const content = fs.readFileSync(path.join('./test/fixtures/', pathToFixtureMap[requestPath]), 'utf8') return Promise.resolve(JSON.parse(content)) diff --git a/test/fixtures/edd_elastic_search_response.js b/test/fixtures/edd_elastic_search_response.js index 3ff10a38..5e3ba2df 100644 --- a/test/fixtures/edd_elastic_search_response.js +++ b/test/fixtures/edd_elastic_search_response.js @@ -1,753 +1,753 @@ module.exports = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'uri': 'i22566485', - 'identifier': [ + uri: 'i22566485', + identifier: [ 'urn:barcode:33433058338470' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ] }, { - 'uri': 'i22566489' + uri: 'i22566489' }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665', - 'accessMessage': [ + uri: 'i10283665', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ] }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665777', - 'accessMessage': [ + uri: 'i10283665777', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406777' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Not Available', - 'id': 'status:na' + label: 'Not Available', + id: 'status:na' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ] }, // not eddRequestable { - 'uri': 'i10283664', - 'recapCustomerCode': ['NC'], - 'holdingLocation': [ + uri: 'i10283664', + recapCustomerCode: ['NC'], + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000546836' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] }, // eddRequestable { - 'uri': 'i102836649', - 'recapCustomerCode': ['NA'], - 'holdingLocation': [ + uri: 'i102836649', + recapCustomerCode: ['NA'], + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000020117' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] }, // eddRequestable but unavailable (partner item) { - 'uri': 'i10283667', - 'recapCustomerCode': ['HL'], - 'holdingLocation': [ + uri: 'i10283667', + recapCustomerCode: ['HL'], + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:na', - 'label': 'Not Available' + id: 'status:na', + label: 'Not Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000020117' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } exports.fakeElasticSearchResponseCulItem = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_type': 'resource', - '_id': 'cb1000077', - '_source': { - 'extent': [ + _type: 'resource', + _id: 'cb1000077', + _source: { + extent: [ 'iii, 332 leaves, bound.' ], - 'note': [ + note: [ { - 'noteType': 'Thesis', - 'label': 'Thesis (Ph. D.)--Columbia University, 1989.', - 'type': 'bf:Note' + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--Columbia University, 1989.', + type: 'bf:Note' }, { - 'noteType': 'Bibliography', - 'label': 'Includes bibliographical references (leaves 314-332).', - 'type': 'bf:Note' + noteType: 'Bibliography', + label: 'Includes bibliographical references (leaves 314-332).', + type: 'bf:Note' } ], - 'language': [ + language: [ { - 'label': 'English', - 'id': 'lang:eng' + label: 'English', + id: 'lang:eng' } ], - 'createdYear': [ + createdYear: [ 1989 ], - 'title': [ + title: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdString': [ + createdString: [ '1989' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Cappetti, Carla Sofia.' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'nypl:Bnumber', - 'value': '1000077' + type: 'nypl:Bnumber', + value: '1000077' } ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'creator_sort': [ + creator_sort: [ 'cappetti, carla sofia.' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'updatedAt': 1523471203726, - 'publicationStatement': [ + updatedAt: 1523471203726, + publicationStatement: [ '1989.' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'identifier': [ + identifier: [ 'urn:bnum:1000077' ], - 'materialType': [ + materialType: [ { - 'label': 'Text', - 'id': 'resourcetypes:txt' + label: 'Text', + id: 'resourcetypes:txt' } ], - 'carrierType': [ + carrierType: [ { - 'label': 'volume', - 'id': 'carriertypes:nc' + label: 'volume', + id: 'carriertypes:nc' } ], - 'dateString': [ + dateString: [ '1989' ], - 'title_sort': [ + title_sort: [ 'urbanism as a way of writing : chicago urban sociology and chicago urban literat' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'titleDisplay': [ + titleDisplay: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'uri': 'cb1000077', - 'numItems': [ + uri: 'cb1000077', + numItems: [ 1 ], - 'numAvailable': [ + numAvailable: [ 1 ], - 'uris': [ + uris: [ 'cb1000077', 'cb1000077-ci1455504' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:1000020117' ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166' ], - 'uri': 'ci1455504', - 'identifierV2': [ + uri: 'ci1455504', + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166' }, { - 'type': 'bf:Barcode', - 'value': '1000020117' + type: 'bf:Barcode', + value: '1000020117' } ], - 'idBarcode': [ + idBarcode: [ '1000020117' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] }, { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:10000201179999' ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166 9999' ], - 'uri': 'ci14555049999', - 'identifierV2': [ + uri: 'ci14555049999', + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166 9999' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166 9999' }, { - 'type': 'bf:Barcode', - 'value': '10000201179999' + type: 'bf:Barcode', + value: '10000201179999' } ], - 'idBarcode': [ + idBarcode: [ '10000201179999' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] } diff --git a/test/fixtures/elastic_search_response.js b/test/fixtures/elastic_search_response.js index 592aac6a..817573e8 100644 --- a/test/fixtures/elastic_search_response.js +++ b/test/fixtures/elastic_search_response.js @@ -1,742 +1,742 @@ exports.fakeElasticSearchResponseNyplItem = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'uri': 'i22566485', - 'identifier': [ + uri: 'i22566485', + identifier: [ 'urn:barcode:33433058338470' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ] }, { - 'uri': 'i22566489' + uri: 'i22566489' }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665', - 'accessMessage': [ + uri: 'i10283665', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ] }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665777', - 'accessMessage': [ + uri: 'i10283665777', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406777' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Not Available', - 'id': 'status:na' + label: 'Not Available', + id: 'status:na' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i10283664', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i10283664', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:na', - 'label': 'Not available' + id: 'status:na', + label: 'Not available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000546836' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i102836649', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i102836649', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:10005468369' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance (unrequestable location)', - 'id': 'loc:rcpd8' + label: 'OFFSITE - Request in Advance (unrequestable location)', + id: 'loc:rcpd8' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'uri': 'i102836649-unrequestable', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i102836649-unrequestable', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:10005468369' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rcpd8||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } exports.fakeElasticSearchResponseCulItem = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_type': 'resource', - '_id': 'cb1000077', - '_source': { - 'extent': [ + _type: 'resource', + _id: 'cb1000077', + _source: { + extent: [ 'iii, 332 leaves, bound.' ], - 'note': [ + note: [ { - 'noteType': 'Thesis', - 'label': 'Thesis (Ph. D.)--Columbia University, 1989.', - 'type': 'bf:Note' + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--Columbia University, 1989.', + type: 'bf:Note' }, { - 'noteType': 'Bibliography', - 'label': 'Includes bibliographical references (leaves 314-332).', - 'type': 'bf:Note' + noteType: 'Bibliography', + label: 'Includes bibliographical references (leaves 314-332).', + type: 'bf:Note' } ], - 'language': [ + language: [ { - 'label': 'English', - 'id': 'lang:eng' + label: 'English', + id: 'lang:eng' } ], - 'createdYear': [ + createdYear: [ 1989 ], - 'title': [ + title: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdString': [ + createdString: [ '1989' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Cappetti, Carla Sofia.' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'nypl:Bnumber', - 'value': '1000077' + type: 'nypl:Bnumber', + value: '1000077' } ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'creator_sort': [ + creator_sort: [ 'cappetti, carla sofia.' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'updatedAt': 1523471203726, - 'publicationStatement': [ + updatedAt: 1523471203726, + publicationStatement: [ '1989.' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'identifier': [ + identifier: [ 'urn:bnum:1000077' ], - 'materialType': [ + materialType: [ { - 'label': 'Text', - 'id': 'resourcetypes:txt' + label: 'Text', + id: 'resourcetypes:txt' } ], - 'carrierType': [ + carrierType: [ { - 'label': 'volume', - 'id': 'carriertypes:nc' + label: 'volume', + id: 'carriertypes:nc' } ], - 'dateString': [ + dateString: [ '1989' ], - 'title_sort': [ + title_sort: [ 'urbanism as a way of writing : chicago urban sociology and chicago urban literat' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'titleDisplay': [ + titleDisplay: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'uri': 'cb1000077', - 'numItems': [ + uri: 'cb1000077', + numItems: [ 1 ], - 'numAvailable': [ + numAvailable: [ 1 ], - 'uris': [ + uris: [ 'cb1000077', 'cb1000077-ci1455504' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:1000020117' ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166' ], - 'uri': 'ci1455504', - 'recapCustomerCode': ['NP'], - 'identifierV2': [ + uri: 'ci1455504', + recapCustomerCode: ['NP'], + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166' }, { - 'type': 'bf:Barcode', - 'value': '1000020117' + type: 'bf:Barcode', + value: '1000020117' } ], - 'idBarcode': [ + idBarcode: [ '1000020117' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] }, { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:10000201179999' ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166 9999' ], - 'uri': 'ci14555049999', - 'identifierV2': [ + uri: 'ci14555049999', + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166 9999' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166 9999' }, { - 'type': 'bf:Barcode', - 'value': '10000201179999' + type: 'bf:Barcode', + value: '10000201179999' } ], - 'idBarcode': [ + idBarcode: [ '10000201179999' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] } diff --git a/test/fixtures/no_barcode_es_response.js b/test/fixtures/no_barcode_es_response.js index d0259d41..3ff18b00 100644 --- a/test/fixtures/no_barcode_es_response.js +++ b/test/fixtures/no_barcode_es_response.js @@ -1,730 +1,730 @@ module.exports = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'uri': 'i22566485', - 'status': [ + uri: 'i22566485', + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ] }, { - 'uri': 'i22566489' + uri: 'i22566489' }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665', - 'accessMessage': [ + uri: 'i10283665', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ] }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665777', - 'accessMessage': [ + uri: 'i10283665777', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Not Available', - 'id': 'status:na' + label: 'Not Available', + id: 'status:na' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i10283664', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i10283664', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:na', - 'label': 'Not available' + id: 'status:na', + label: 'Not available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i102836649', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i102836649', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance (unrequestable location)', - 'id': 'loc:rcpd8' + label: 'OFFSITE - Request in Advance (unrequestable location)', + id: 'loc:rcpd8' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'uri': 'i102836649-unrequestable', - 'recapCustomerCode': ['NP'], - 'accessMessage_packed': [ + uri: 'i102836649-unrequestable', + recapCustomerCode: ['NP'], + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rcpd8||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } exports.fakeElasticSearchResponseCulItem = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_type': 'resource', - '_id': 'cb1000077', - '_source': { - 'extent': [ + _type: 'resource', + _id: 'cb1000077', + _source: { + extent: [ 'iii, 332 leaves, bound.' ], - 'note': [ + note: [ { - 'noteType': 'Thesis', - 'label': 'Thesis (Ph. D.)--Columbia University, 1989.', - 'type': 'bf:Note' + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--Columbia University, 1989.', + type: 'bf:Note' }, { - 'noteType': 'Bibliography', - 'label': 'Includes bibliographical references (leaves 314-332).', - 'type': 'bf:Note' + noteType: 'Bibliography', + label: 'Includes bibliographical references (leaves 314-332).', + type: 'bf:Note' } ], - 'language': [ + language: [ { - 'label': 'English', - 'id': 'lang:eng' + label: 'English', + id: 'lang:eng' } ], - 'createdYear': [ + createdYear: [ 1989 ], - 'title': [ + title: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdString': [ + createdString: [ '1989' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Cappetti, Carla Sofia.' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'nypl:Bnumber', - 'value': '1000077' + type: 'nypl:Bnumber', + value: '1000077' } ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'creator_sort': [ + creator_sort: [ 'cappetti, carla sofia.' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'updatedAt': 1523471203726, - 'publicationStatement': [ + updatedAt: 1523471203726, + publicationStatement: [ '1989.' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'identifier': [ + identifier: [ 'urn:bnum:1000077' ], - 'materialType': [ + materialType: [ { - 'label': 'Text', - 'id': 'resourcetypes:txt' + label: 'Text', + id: 'resourcetypes:txt' } ], - 'carrierType': [ + carrierType: [ { - 'label': 'volume', - 'id': 'carriertypes:nc' + label: 'volume', + id: 'carriertypes:nc' } ], - 'dateString': [ + dateString: [ '1989' ], - 'title_sort': [ + title_sort: [ 'urbanism as a way of writing : chicago urban sociology and chicago urban literat' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'titleDisplay': [ + titleDisplay: [ 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' ], - 'uri': 'cb1000077', - 'numItems': [ + uri: 'cb1000077', + numItems: [ 1 ], - 'numAvailable': [ + numAvailable: [ 1 ], - 'uris': [ + uris: [ 'cb1000077', 'cb1000077-ci1455504' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166' ], - 'uri': 'ci1455504', - 'recapCustomerCode': ['NP'], - 'identifierV2': [ + uri: 'ci1455504', + recapCustomerCode: ['NP'], + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166' }, { - 'type': 'bf:Barcode', - 'value': '1000020117' + type: 'bf:Barcode', + value: '1000020117' } ], - 'idBarcode': [ + idBarcode: [ '1000020117' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] }, { - 'owner': [ + owner: [ { - 'label': 'Columbia University Libraries', - 'id': 'orgs:0002' + label: 'Columbia University Libraries', + id: 'orgs:0002' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:1||non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'label': 'Use in library', - 'id': 'accessMessage:1' + label: 'Use in library', + id: 'accessMessage:1' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'shelfMark': [ + shelfMark: [ 'LD1237.5D 1989 .C166 9999' ], - 'uri': 'ci14555049999', - 'identifierV2': [ + uri: 'ci14555049999', + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'LD1237.5D 1989 .C166 9999' + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166 9999' }, { - 'type': 'bf:Barcode', - 'value': '10000201179999' + type: 'bf:Barcode', + value: '10000201179999' } ], - 'idBarcode': [ + idBarcode: [ '10000201179999' ], - 'owner_packed': [ + owner_packed: [ 'orgs:0002||Columbia University Libraries' ], - 'requestable': [ + requestable: [ true ], - 'catalogItemType': [ + catalogItemType: [ { - 'label': 'non-circ', - 'id': 'catalogItemType:1' + label: 'non-circ', + id: 'catalogItemType:1' } ], - 'status': [ + status: [ { - 'label': 'Available ', - 'id': 'status:a' + label: 'Available ', + id: 'status:a' } ] } diff --git a/test/fixtures/recap-scsb-query-match.js b/test/fixtures/recap-scsb-query-match.js index 5ad47134..7b7a60fc 100644 --- a/test/fixtures/recap-scsb-query-match.js +++ b/test/fixtures/recap-scsb-query-match.js @@ -1,227 +1,227 @@ module.exports = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'uri': 'i10283667', - 'recapCustomerCode': ['XX'], - 'holdingLocation': [ + uri: 'i10283667', + recapCustomerCode: ['XX'], + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000546836' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } diff --git a/test/fixtures/recap-scsb-query-mismatch.js b/test/fixtures/recap-scsb-query-mismatch.js index 5ad47134..7b7a60fc 100644 --- a/test/fixtures/recap-scsb-query-mismatch.js +++ b/test/fixtures/recap-scsb-query-mismatch.js @@ -1,227 +1,227 @@ module.exports = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'uri': 'i10283667', - 'recapCustomerCode': ['XX'], - 'holdingLocation': [ + uri: 'i10283667', + recapCustomerCode: ['XX'], + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000546836' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } diff --git a/test/fixtures/schomburg.js b/test/fixtures/schomburg.js index d80870b5..e63cdf4c 100644 --- a/test/fixtures/schomburg.js +++ b/test/fixtures/schomburg.js @@ -1,44 +1,44 @@ module.exports = { scff3Microfiche: { - 'took': 817, - 'timed_out': false, - '_shards': { - 'total': 3, - 'successful': 3, - 'failed': 0 + took: 817, + timed_out: false, + _shards: { + total: 3, + successful: 3, + failed: 0 }, - 'hits': { - 'total': 18434492, - 'max_score': null, - 'hits': [{ - '_index': 'resources-2020-05-08', - '_type': 'resource', - '_id': 'b10769327', - '_version': 6, - 'found': true, - '_source': { - 'extent': [ + hits: { + total: 18434492, + max_score: null, + hits: [{ + _index: 'resources-2020-05-08', + _type: 'resource', + _id: 'b10769327', + _version: 6, + found: true, + _source: { + extent: [ 'v, 107 leaves.' ], - 'note': [ + note: [ { - 'noteType': 'Thesis', - 'label': 'Thesis (Ph. D.)--University of California, Berkeley, June 1977.', - 'type': 'bf:Note' + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--University of California, Berkeley, June 1977.', + type: 'bf:Note' }, { - 'noteType': 'Bibliography', - 'label': 'Bibliography: leaves 100-107.', - 'type': 'bf:Note' + noteType: 'Bibliography', + label: 'Bibliography: leaves 100-107.', + type: 'bf:Note' }, { - 'noteType': 'Reproduction', - 'label': 'Microfiche.', - 'type': 'bf:Note' + noteType: 'Reproduction', + label: 'Microfiche.', + type: 'bf:Note' } ], - 'nyplSource': 'sierra-nypl', - 'subjectLiteral_exploded': [ + nyplSource: 'sierra-nypl', + subjectLiteral_exploded: [ 'African American children', 'African American children -- Language', 'African Americans', @@ -46,193 +46,193 @@ module.exports = { 'Black English', 'Reading (Elementary)' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'createdYear': [ + createdYear: [ 1977 ], - 'type': [ + type: [ 'nypl:Item' ], - 'title': [ + title: [ 'The effect of Black examiners, who speak Black dialect or standard English, on the test performance of Black second and third grade students administered the survey of primary reading development [microform] / ' ], - 'shelfMark': [ + shelfMark: [ 'Sc Micro F-10210' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Fisch, Elaine.' ], - 'createdString': [ + createdString: [ '1977' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1977 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro F-10210' + type: 'bf:ShelfMark', + value: 'Sc Micro F-10210' }, { - 'type': 'nypl:Bnumber', - 'value': '10769327' + type: 'nypl:Bnumber', + value: '10769327' }, { - 'type': 'bf:Identifier', - 'value': '(WaOLN)nyp0776221' + type: 'bf:Identifier', + value: '(WaOLN)nyp0776221' } ], - 'creator_sort': [ + creator_sort: [ 'fisch, elaine.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'holdings': [], - 'updatedAt': 1619446503123, - 'mediaType_packed': [ + holdings: [], + updatedAt: 1619446503123, + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'publicationStatement': [ + publicationStatement: [ '1977.' ], - 'identifier': [ + identifier: [ 'urn:bnum:10769327', 'urn:undefined:(WaOLN)nyp0776221' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'title_sort': [ + title_sort: [ 'the effect of black examiners, who speak black dialect or standard english, on t' ], - 'dateString': [ + dateString: [ '1977' ], - 'mediaType': [ + mediaType: [ { - 'id': 'mediatypes:n', - 'label': 'unmediated' + id: 'mediatypes:n', + label: 'unmediated' } ], - 'subjectLiteral': [ + subjectLiteral: [ 'African American children -- Language.', 'African Americans -- Study and teaching.', 'Black English.', 'Reading (Elementary)' ], - 'titleDisplay': [ + titleDisplay: [ 'The effect of Black examiners, who speak Black dialect or standard English, on the test performance of Black second and third grade students administered the survey of primary reading development [microform] / by Elaine Fisch.' ], - 'uri': 'b10769327', - 'numItems': [ + uri: 'b10769327', + numItems: [ 1 ], - 'numAvailable': [ + numAvailable: [ 1 ], - 'uris': [ + uris: [ 'b10769327', 'b10769327-i13909591' ], - 'issuance': [ + issuance: [ { - 'id': 'urn:biblevel:m', - 'label': 'monograph/item' + id: 'urn:biblevel:m', + label: 'monograph/item' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:33433058833009' ], - 'shelfMark_sort': 'aSc Micro F-10210 no. 000001-2', - 'catalogItemType_packed': [ + shelfMark_sort: 'aSc Micro F-10210 no. 000001-2', + catalogItemType_packed: [ 'catalogItemType:26||microfiche' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'uri': 'i13909591', - 'shelfMark': [ + uri: 'i13909591', + shelfMark: [ 'Sc Micro F-10210 no. 1-2' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro F-10210 no. 1-2' + type: 'bf:ShelfMark', + value: 'Sc Micro F-10210 no. 1-2' }, { - 'type': 'bf:Barcode', - 'value': '33433058833009' + type: 'bf:Barcode', + value: '33433058833009' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff3||Schomburg Center - Research & Reference - Desk' ], - 'idBarcode': [ + idBarcode: [ '33433058833009' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:26', - 'label': 'microfiche' + id: 'catalogItemType:26', + label: 'microfiche' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available ' + id: 'status:a', + label: 'Available ' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff3', - 'label': 'Schomburg Center - Research & Reference - Desk' + id: 'loc:scff3', + label: 'Schomburg Center - Research & Reference - Desk' } ] } @@ -242,237 +242,237 @@ module.exports = { } }, invalidTypeScff3: { - 'took': 817, - 'timed_out': false, - '_shards': { - 'total': 3, - 'successful': 3, - 'failed': 0 + took: 817, + timed_out: false, + _shards: { + total: 3, + successful: 3, + failed: 0 }, - 'hits': { - 'total': 18434492, - 'max_score': null, - 'hits': [ + hits: { + total: 18434492, + max_score: null, + hits: [ { - '_index': 'resources-2020-05-08', - '_type': 'resource', - '_id': 'b13643829', - '_version': 3, - 'found': true, - '_source': { - 'extent': [ + _index: 'resources-2020-05-08', + _type: 'resource', + _id: 'b13643829', + _version: 3, + found: true, + _source: { + extent: [ '20 p. : ill. ;' ], - 'note': [ + note: [ { - 'noteType': 'Note', - 'label': 'Cover title.', - 'type': 'bf:Note' + noteType: 'Note', + label: 'Cover title.', + type: 'bf:Note' }, { - 'noteType': 'Note', - 'label': 'At head of title: Dark & Lovely.', - 'type': 'bf:Note' + noteType: 'Note', + label: 'At head of title: Dark & Lovely.', + type: 'bf:Note' } ], - 'nyplSource': 'sierra-nypl', - 'subjectLiteral_exploded': [ + nyplSource: 'sierra-nypl', + subjectLiteral_exploded: [ 'African American families', 'Family reunions', 'Family reunions -- United States', 'Family reunions -- United States -- Planning', 'Still family' ], - 'publisherLiteral': [ + publisherLiteral: [ 's.n.,' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'createdYear': [ + createdYear: [ 1994 ], - 'dateEndString': [ + dateEndString: [ '1995' ], - 'type': [ + type: [ 'nypl:Item' ], - 'title': [ + title: [ 'Proud heritage guide to planning a successful family reunion' ], - 'shelfMark': [ + shelfMark: [ 'Sc D 98-2481' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'createdString': [ + createdString: [ '1994' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1994 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc D 98-2481' + type: 'bf:ShelfMark', + value: 'Sc D 98-2481' }, { - 'type': 'nypl:Bnumber', - 'value': '13643829' + type: 'nypl:Bnumber', + value: '13643829' } ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'dateEndYear': [ + dateEndYear: [ 1995 ], - 'updatedAt': 1524981554942, - 'mediaType_packed': [ + updatedAt: 1524981554942, + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'publicationStatement': [ + publicationStatement: [ '[S.l. : s.n., 1994 or 1995]' ], - 'identifier': [ + identifier: [ 'urn:bnum:13643829' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'dateString': [ + dateString: [ '1994' ], - 'title_sort': [ + title_sort: [ 'proud heritage guide to planning a successful family reunion' ], - 'mediaType': [ + mediaType: [ { - 'id': 'mediatypes:n', - 'label': 'unmediated' + id: 'mediatypes:n', + label: 'unmediated' } ], - 'subjectLiteral': [ + subjectLiteral: [ 'African American families.', 'Family reunions -- United States -- Planning.', 'Still family.' ], - 'titleDisplay': [ + titleDisplay: [ 'Proud heritage guide to planning a successful family reunion / compliments of the Still family.' ], - 'uri': 'b13643829', - 'numItems': [ + uri: 'b13643829', + numItems: [ 1 ], - 'numAvailable': [ + numAvailable: [ 1 ], - 'uris': [ + uris: [ 'b13643829', 'b13643829-i11305566' ], - 'placeOfPublication': [ + placeOfPublication: [ '[S.l. :' ], - 'issuance': [ + issuance: [ { - 'id': 'urn:biblevel:m', - 'label': 'monograph/item' + id: 'urn:biblevel:m', + label: 'monograph/item' } ], - 'items': [ + items: [ { - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'identifier': [ + identifier: [ 'urn:barcode:33433015885043' ], - 'catalogItemType_packed': [ + catalogItemType_packed: [ 'catalogItemType:2||book non-circ' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'uri': 'i11305566', - 'shelfMark': [ + uri: 'i11305566', + shelfMark: [ 'Sc D 98-2481' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc D 98-2481' + type: 'bf:ShelfMark', + value: 'Sc D 98-2481' }, { - 'type': 'bf:Barcode', - 'value': '33433015885043' + type: 'bf:Barcode', + value: '33433015885043' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff3||Schomburg Center - Research & Reference - Desk' ], - 'idBarcode': [ + idBarcode: [ '33433015885043' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available ' + id: 'status:a', + label: 'Available ' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff3', - 'label': 'Schomburg Center - Research & Reference - Desk' + id: 'loc:scff3', + label: 'Schomburg Center - Research & Reference - Desk' } ] } ], - 'dimensions': [ + dimensions: [ '22 cm.' ] } @@ -480,308 +480,308 @@ module.exports = { } }, scff2Microfilm: { - 'took': 817, - 'timed_out': false, - '_shards': { - 'total': 3, - 'successful': 3, - 'failed': 0 + took: 817, + timed_out: false, + _shards: { + total: 3, + successful: 3, + failed: 0 }, - 'hits': { - 'total': 18434492, - 'max_score': null, - 'hits': [{ - '_index': 'resources-2020-05-08', - '_type': 'resource', - '_id': 'b10224367', - '_version': 6, - 'found': true, - '_source': { - 'extent': [ + hits: { + total: 18434492, + max_score: null, + hits: [{ + _index: 'resources-2020-05-08', + _type: 'resource', + _id: 'b10224367', + _version: 6, + found: true, + _source: { + extent: [ '223 p.' ], - 'note': [ + note: [ { - 'noteType': 'Reproduction', - 'label': 'Microfilm.', - 'type': 'bf:Note' + noteType: 'Reproduction', + label: 'Microfilm.', + type: 'bf:Note' } ], - 'nyplSource': 'sierra-nypl', - 'subjectLiteral_exploded': [ + nyplSource: 'sierra-nypl', + subjectLiteral_exploded: [ 'Helper, Hinton Rowan, 1829-1909', 'Slavery', 'Slavery -- United States', 'Slavery -- United States -- Controversial literature', 'Slavery -- United States -- Controversial literature -- 1860-' ], - 'publisherLiteral': [ + publisherLiteral: [ 'J. T. Lloyd,' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'createdYear': [ + createdYear: [ 1860 ], - 'type': [ + type: [ 'nypl:Item' ], - 'title': [ + title: [ "Helper's Impending crisis dissected[microform]" ], - 'shelfMark': [ + shelfMark: [ 'Sc Micro R-864 [pt. G]' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Wolfe, Samuel M.' ], - 'createdString': [ + createdString: [ '1860' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'idLccn': [ + idLccn: [ '11017853' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1860 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864 [pt. G]' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864 [pt. G]' }, { - 'type': 'nypl:Bnumber', - 'value': '10224367' + type: 'nypl:Bnumber', + value: '10224367' }, { - 'type': 'bf:Lccn', - 'value': '11017853' + type: 'bf:Lccn', + value: '11017853' }, { - 'type': 'bf:Identifier', - 'value': 'NN754080857' + type: 'bf:Identifier', + value: 'NN754080857' }, { - 'type': 'bf:Identifier', - 'value': '(WaOLN)nyp0226236' + type: 'bf:Identifier', + value: '(WaOLN)nyp0226236' } ], - 'creator_sort': [ + creator_sort: [ 'wolfe, samuel m.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'holdings': [], - 'updatedAt': 1619445163123, - 'mediaType_packed': [ + holdings: [], + updatedAt: 1619445163123, + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'publicationStatement': [ + publicationStatement: [ 'Philadelphia: J. T. Lloyd, 1860.' ], - 'identifier': [ + identifier: [ 'urn:bnum:10224367', 'urn:lccn:11017853', 'urn:undefined:NN754080857', 'urn:undefined:(WaOLN)nyp0226236' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'title_sort': [ + title_sort: [ "helper's impending crisis dissected[microform]" ], - 'dateString': [ + dateString: [ '1860' ], - 'mediaType': [ + mediaType: [ { - 'id': 'mediatypes:n', - 'label': 'unmediated' + id: 'mediatypes:n', + label: 'unmediated' } ], - 'subjectLiteral': [ + subjectLiteral: [ 'Helper, Hinton Rowan, 1829-1909.', 'Slavery -- United States -- Controversial literature -- 1860-' ], - 'titleDisplay': [ + titleDisplay: [ "Helper's Impending crisis dissected[microform] / by Samuel M.Wolfe, Virginia." ], - 'uri': 'b10224367', - 'numItems': [ + uri: 'b10224367', + numItems: [ 2 ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'uris': [ + uris: [ 'b10224367', 'b10224367-i24028840', 'b10224367-i30547944', 'b10224367-i10053088' ], - 'placeOfPublication': [ + placeOfPublication: [ 'Philadelphia:' ], - 'issuance': [ + issuance: [ { - 'id': 'urn:biblevel:m', - 'label': 'monograph/item' + id: 'urn:biblevel:m', + label: 'monograph/item' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:33433016495024' ], - 'shelfMark_sort': 'aSc Micro R-000864', - 'catalogItemType_packed': [ + shelfMark_sort: 'aSc Micro R-000864', + catalogItemType_packed: [ 'catalogItemType:6||microfilm service copy' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'uri': 'i24028840', - 'shelfMark': [ + uri: 'i24028840', + shelfMark: [ 'Sc Micro R-864' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864' }, { - 'type': 'bf:Barcode', - 'value': '33433016495024' + type: 'bf:Barcode', + value: '33433016495024' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'idBarcode': [ + idBarcode: [ '33433016495024' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:6', - 'label': 'microfilm service copy' + id: 'catalogItemType:6', + label: 'microfilm service copy' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available ' + id: 'status:a', + label: 'Available ' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff2', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff2', + label: 'Schomburg Center - Research & Reference' } ] }, { - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'shelfMark_sort': 'aSc Micro R-864 [pt. G]', - 'catalogItemType_packed': [ + shelfMark_sort: 'aSc Micro R-864 [pt. G]', + catalogItemType_packed: [ 'catalogItemType:6||microfilm service copy' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'uri': 'i10053088', - 'shelfMark': [ + uri: 'i10053088', + shelfMark: [ 'Sc Micro R-864 [pt. G]' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864 [pt. G]' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864 [pt. G]' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:6', - 'label': 'microfilm service copy' + id: 'catalogItemType:6', + label: 'microfilm service copy' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff2', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff2', + label: 'Schomburg Center - Research & Reference' } ] } @@ -791,308 +791,308 @@ module.exports = { } }, invalidTypeScff2: { - 'took': 817, - 'timed_out': false, - '_shards': { - 'total': 3, - 'successful': 3, - 'failed': 0 + took: 817, + timed_out: false, + _shards: { + total: 3, + successful: 3, + failed: 0 }, - 'hits': { - 'total': 18434492, - 'max_score': null, - 'hits': [{ - '_index': 'resources-2020-05-08', - '_type': 'resource', - '_id': 'b10224367', - '_version': 6, - 'found': true, - '_source': { - 'extent': [ + hits: { + total: 18434492, + max_score: null, + hits: [{ + _index: 'resources-2020-05-08', + _type: 'resource', + _id: 'b10224367', + _version: 6, + found: true, + _source: { + extent: [ '223 p.' ], - 'note': [ + note: [ { - 'noteType': 'Reproduction', - 'label': 'Microfilm.', - 'type': 'bf:Note' + noteType: 'Reproduction', + label: 'Microfilm.', + type: 'bf:Note' } ], - 'nyplSource': 'sierra-nypl', - 'subjectLiteral_exploded': [ + nyplSource: 'sierra-nypl', + subjectLiteral_exploded: [ 'Helper, Hinton Rowan, 1829-1909', 'Slavery', 'Slavery -- United States', 'Slavery -- United States -- Controversial literature', 'Slavery -- United States -- Controversial literature -- 1860-' ], - 'publisherLiteral': [ + publisherLiteral: [ 'J. T. Lloyd,' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'createdYear': [ + createdYear: [ 1860 ], - 'type': [ + type: [ 'nypl:Item' ], - 'title': [ + title: [ "Helper's Impending crisis dissected[microform]" ], - 'shelfMark': [ + shelfMark: [ 'Sc Micro R-864 [pt. G]' ], - 'creatorLiteral': [ + creatorLiteral: [ 'Wolfe, Samuel M.' ], - 'createdString': [ + createdString: [ '1860' ], - 'materialType_packed': [ + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'idLccn': [ + idLccn: [ '11017853' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'dateStartYear': [ + dateStartYear: [ 1860 ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864 [pt. G]' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864 [pt. G]' }, { - 'type': 'nypl:Bnumber', - 'value': '10224367' + type: 'nypl:Bnumber', + value: '10224367' }, { - 'type': 'bf:Lccn', - 'value': '11017853' + type: 'bf:Lccn', + value: '11017853' }, { - 'type': 'bf:Identifier', - 'value': 'NN754080857' + type: 'bf:Identifier', + value: 'NN754080857' }, { - 'type': 'bf:Identifier', - 'value': '(WaOLN)nyp0226236' + type: 'bf:Identifier', + value: '(WaOLN)nyp0226236' } ], - 'creator_sort': [ + creator_sort: [ 'wolfe, samuel m.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'holdings': [], - 'updatedAt': 1619445163123, - 'mediaType_packed': [ + holdings: [], + updatedAt: 1619445163123, + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'publicationStatement': [ + publicationStatement: [ 'Philadelphia: J. T. Lloyd, 1860.' ], - 'identifier': [ + identifier: [ 'urn:bnum:10224367', 'urn:lccn:11017853', 'urn:undefined:NN754080857', 'urn:undefined:(WaOLN)nyp0226236' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'title_sort': [ + title_sort: [ "helper's impending crisis dissected[microform]" ], - 'dateString': [ + dateString: [ '1860' ], - 'mediaType': [ + mediaType: [ { - 'id': 'mediatypes:n', - 'label': 'unmediated' + id: 'mediatypes:n', + label: 'unmediated' } ], - 'subjectLiteral': [ + subjectLiteral: [ 'Helper, Hinton Rowan, 1829-1909.', 'Slavery -- United States -- Controversial literature -- 1860-' ], - 'titleDisplay': [ + titleDisplay: [ "Helper's Impending crisis dissected[microform] / by Samuel M.Wolfe, Virginia." ], - 'uri': 'b10224367', - 'numItems': [ + uri: 'b10224367', + numItems: [ 2 ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'uris': [ + uris: [ 'b10224367', 'b10224367-i24028840', 'b10224367-i30547944', 'b10224367-i10053088' ], - 'placeOfPublication': [ + placeOfPublication: [ 'Philadelphia:' ], - 'issuance': [ + issuance: [ { - 'id': 'urn:biblevel:m', - 'label': 'monograph/item' + id: 'urn:biblevel:m', + label: 'monograph/item' } ], - 'items': [ + items: [ { - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'identifier': [ + identifier: [ 'urn:barcode:33433016495024' ], - 'shelfMark_sort': 'aSc Micro R-000864', - 'catalogItemType_packed': [ + shelfMark_sort: 'aSc Micro R-000864', + catalogItemType_packed: [ 'catalogItemType:6||microfilm service copy' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available ' ], - 'uri': 'i24028840', - 'shelfMark': [ + uri: 'i24028840', + shelfMark: [ 'Sc Micro R-864' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864' }, { - 'type': 'bf:Barcode', - 'value': '33433016495024' + type: 'bf:Barcode', + value: '33433016495024' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'idBarcode': [ + idBarcode: [ '33433016495024' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:4', - 'label': 'microfilm service copy' + id: 'catalogItemType:4', + label: 'microfilm service copy' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available ' + id: 'status:a', + label: 'Available ' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff2', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff2', + label: 'Schomburg Center - Research & Reference' } ] }, { - 'owner': [ + owner: [ { - 'id': 'orgs:1114', - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + id: 'orgs:1114', + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' } ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||Use in library' ], - 'shelfMark_sort': 'aSc Micro R-864 [pt. G]', - 'catalogItemType_packed': [ + shelfMark_sort: 'aSc Micro R-864 [pt. G]', + catalogItemType_packed: [ 'catalogItemType:6||microfilm service copy' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:1', - 'label': 'Use in library' + id: 'accessMessage:1', + label: 'Use in library' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'uri': 'i10053088', - 'shelfMark': [ + uri: 'i10053088', + shelfMark: [ 'Sc Micro R-864 [pt. G]' ], - 'identifierV2': [ + identifierV2: [ { - 'type': 'bf:ShelfMark', - 'value': 'Sc Micro R-864 [pt. G]' + type: 'bf:ShelfMark', + value: 'Sc Micro R-864 [pt. G]' } ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'requestable': [ + requestable: [ false ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:6', - 'label': 'microfilm service copy' + id: 'catalogItemType:6', + label: 'microfilm service copy' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff2', - 'label': 'Schomburg Center - Research & Reference' + id: 'loc:scff2', + label: 'Schomburg Center - Research & Reference' } ] } diff --git a/test/fixtures/specRequestable-es-response.js b/test/fixtures/specRequestable-es-response.js index 9b283045..e2133d07 100644 --- a/test/fixtures/specRequestable-es-response.js +++ b/test/fixtures/specRequestable-es-response.js @@ -1,434 +1,434 @@ module.exports = () => { return { - '_shards': { - 'failed': 0, - 'successful': 1, - 'total': 1 + _shards: { + failed: 0, + successful: 1, + total: 1 }, - 'took': 1, - 'hits': { - 'total': 1, - 'max_score': 1.3862944, - 'hits': [ + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ { - '_id': 'b10980129', - '_source': { - 'numItems': [ + _id: 'b10980129', + _source: { + numItems: [ 4 ], - 'createdString': [ + createdString: [ '1989' ], - 'issuance': [ + issuance: [ { - 'label': 'monograph/item', - 'id': 'urn:biblevel:m' + label: 'monograph/item', + id: 'urn:biblevel:m' } ], - 'creatorLiteral': [ + creatorLiteral: [ 'Maḥfūẓ, Najīb, 1911-2006.' ], - 'creator_sort': [ + creator_sort: [ 'maḥfūẓ, najīb, 1911-2006.' ], - 'level': 'debug', - 'items': [ + level: 'debug', + items: [ { - 'aeonUrl': 'fakeaeonurl.nypl.org', - 'uri': 'i22566485', - 'identifier': [ + aeonUrl: 'fakeaeonurl.nypl.org', + uri: 'i22566485', + identifier: [ 'urn:barcode:33433058338470' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ] }, { - 'uri': 'i22566489' + uri: 'i22566489' }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665', - 'accessMessage': [ + uri: 'i10283665', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Available', - 'id': 'status:a' + label: 'Available', + id: 'status:a' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ] }, { - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:scff2||Schomburg Center - Research & Reference' ], - 'suppressed': [ + suppressed: [ false ], - 'shelfMark': [ + shelfMark: [ 'Sc D 90-863' ], - 'accessMessage_packed': [ + accessMessage_packed: [ 'accessMessage:1||USE IN LIBRARY' ], - 'uri': 'i10283665777', - 'accessMessage': [ + uri: 'i10283665777', + accessMessage: [ { - 'label': 'USE IN LIBRARY', - 'id': 'accessMessage:1' + label: 'USE IN LIBRARY', + id: 'accessMessage:1' } ], - 'catalogItemType': [ + catalogItemType: [ { - 'id': 'catalogItemType:2', - 'label': 'book non-circ' + id: 'catalogItemType:2', + label: 'book non-circ' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:sc||Schomburg Center' ], - 'owner': [ + owner: [ { - 'label': 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', - 'id': 'orgs:1114' + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'label': 'Schomburg Center', - 'id': 'loc:sc' + label: 'Schomburg Center', + id: 'loc:sc' } ], - 'identifier': [ + identifier: [ 'urn:barcode:32101071572406777' ], - 'requestable': [ + requestable: [ true ], - 'owner_packed': [ + owner_packed: [ 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' ], - 'status': [ + status: [ { - 'label': 'Not Available', - 'id': 'status:na' + label: 'Not Available', + id: 'status:na' } ], - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'Schomburg Center - Research & Reference', - 'id': 'loc:scff2' + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:na||Not Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i10283664', - 'accessMessage_packed': [ + uri: 'i10283664', + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:na', - 'label': 'Not available' + id: 'status:na', + label: 'Not available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:1000546836' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'suppressed': [ + suppressed: [ false ] }, { - 'holdingLocation': [ + holdingLocation: [ { - 'label': 'OFFSITE - Request in Advance', - 'id': 'loc:rc2ma' + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' } ], - 'status_packed': [ + status_packed: [ 'status:a||Available' ], - 'owner': [ + owner: [ { - 'id': 'orgs:1000', - 'label': 'Stephen A. Schwarzman Building' + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' } ], - 'deliveryLocation': [ + deliveryLocation: [ { - 'id': 'loc:mala', - 'label': 'SASB - Allen Scholar Room' + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' } ], - 'deliveryLocation_packed': [ + deliveryLocation_packed: [ 'loc:mala||SASB - Allen Scholar Room' ], - 'uri': 'i102836649', - 'accessMessage_packed': [ + uri: 'i102836649', + accessMessage_packed: [ 'accessMessage:2||ADV REQUEST' ], - 'accessMessage': [ + accessMessage: [ { - 'id': 'accessMessage:2', - 'label': 'ADV REQUEST' + id: 'accessMessage:2', + label: 'ADV REQUEST' } ], - 'status': [ + status: [ { - 'id': 'status:a', - 'label': 'Available' + id: 'status:a', + label: 'Available' } ], - 'owner_packed': [ + owner_packed: [ 'orgs:1000||Stephen A. Schwarzman Building' ], - 'requestable': [ + requestable: [ false ], - 'identifier': [ + identifier: [ 'urn:barcode:10005468369' ], - 'holdingLocation_packed': [ + holdingLocation_packed: [ 'loc:rc2ma||OFFSITE - Request in Advance' ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649 2' ], - 'suppressed': [ + suppressed: [ false ] } ], - 'message': 'ResourceSerializer#serialize', - 'materialType_packed': [ + message: 'ResourceSerializer#serialize', + materialType_packed: [ 'resourcetypes:txt||Text' ], - 'suppressed': [ + suppressed: [ 'false' ], - 'placeOfPublication': [ + placeOfPublication: [ 'New York :' ], - 'dateEndString': [ + dateEndString: [ '1984' ], - 'title_sort': [ + title_sort: [ 'the thief and the dogs' ], - 'uris': [ + uris: [ 'b11293188', 'b11293188-i22566485', 'b11293188-i22566489', 'b11293188-i10283665', 'b11293188-i10283664' ], - 'language': [ + language: [ { - 'id': 'lang:eng', - 'label': 'English' + id: 'lang:eng', + label: 'English' } ], - 'dateString': [ + dateString: [ '1989' ], - 'identifier': [ + identifier: [ 'urn:bnum:11293188', 'urn:oclc:12248278', 'urn:lcc:PJ7846.A46', 'urn:lccCoarse:PJ7695.8-7976' ], - 'publisher': [ + publisher: [ 'Doubleday,' ], - 'type': [ + type: [ 'nypl:Item' ], - 'createdYear': [ + createdYear: [ 1989 ], - 'contributor_sort': [ + contributor_sort: [ 'badawī, muḥammad muṣṭafá.' ], - 'materialType': [ + materialType: [ { - 'id': 'resourcetypes:txt', - 'label': 'Text' + id: 'resourcetypes:txt', + label: 'Text' } ], - 'numAvailable': [ + numAvailable: [ 2 ], - 'dimensions': [ + dimensions: [ '22 cm.' ], - 'carrierType_packed': [ + carrierType_packed: [ 'carriertypes:nc||volume' ], - 'note': [ + note: [ 'Translation of: al-Liṣṣ wa-al-kilāb.' ], - 'dateStartYear': [ + dateStartYear: [ 1989 ], - 'shelfMark': [ + shelfMark: [ '*OFC 90-2649' ], - 'idOwi': [ + idOwi: [ 'urn:owi:58201773' ], - 'mediaType': [ + mediaType: [ { - 'label': 'unmediated', - 'id': 'mediatypes:n' + label: 'unmediated', + id: 'mediatypes:n' } ], - 'title': [ + title: [ 'The thief and the dogs', 'The thief and the dogs /' ], - 'titleAlt': [ + titleAlt: [ 'Liṣṣ wa-al-kilāb.' ], - 'language_packed': [ + language_packed: [ 'lang:eng||English' ], - 'mediaType_packed': [ + mediaType_packed: [ 'mediatypes:n||unmediated' ], - 'titleDisplay': [ + titleDisplay: [ 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' ], - 'uri': 'b11293188', - 'extent': [ + uri: 'b11293188', + extent: [ '158 p. ;' ], - 'carrierType': [ + carrierType: [ { - 'id': 'carriertypes:nc', - 'label': 'volume' + id: 'carriertypes:nc', + label: 'volume' } ], - 'issuance_packed': [ + issuance_packed: [ 'urn:biblevel:m||monograph/item' ], - 'contributorLiteral': [ + contributorLiteral: [ 'Badawī, Muḥammad Muṣṭafá.', 'Le Gassick, Trevor.', 'Rodenbeck, John.' ], - 'dateEndYear': [ + dateEndYear: [ 1984 ] }, - '_type': 'resource', - '_index': 'resources-2017-06-13', - '_score': 154.93451 + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 } ] }, - 'timed_out': false + timed_out: false } } diff --git a/test/fulfillment_resolver.test.js b/test/fulfillment_resolver.test.js index ec02311e..5a236182 100644 --- a/test/fulfillment_resolver.test.js +++ b/test/fulfillment_resolver.test.js @@ -75,7 +75,7 @@ describe('FulfillmentResolver', () => { const setup = (phys, edd) => { physStub = stub(FulfillmentResolver.prototype, '_determinePhysFulfillment').returns(phys) eddStub = stub(FulfillmentResolver.prototype, '_determineEddFulfillment').returns(edd) - const item = {recapCustomerCode: 'xx'} + const item = { recapCustomerCode: 'xx' } itemWithFulfillment = new FulfillmentResolver({ hits: { hits: [{ _source: { items: [item] } }] } }).responseWithFulfillment().hits.hits[0]._source.items[0] } const teardown = () => { @@ -90,8 +90,8 @@ describe('FulfillmentResolver', () => { }) it('attaches fulfillment values if they are defined', () => { setup('phys', 'edd') - expect(itemWithFulfillment.physFulfillment).to.deep.equal({'@id': 'phys'}) - expect(itemWithFulfillment.eddFulfillment).to.deep.equal({'@id': 'edd'}) + expect(itemWithFulfillment.physFulfillment).to.deep.equal({ '@id': 'phys' }) + expect(itemWithFulfillment.eddFulfillment).to.deep.equal({ '@id': 'edd' }) teardown() }) }) diff --git a/test/item-resource-serializer.test.js b/test/item-resource-serializer.test.js index 34e4af06..e41807b3 100644 --- a/test/item-resource-serializer.test.js +++ b/test/item-resource-serializer.test.js @@ -22,12 +22,12 @@ describe('ItemResourceSerializer', () => { const doc = ItemResourceSerializer.serialize(item) expect(doc).to.be.a('object') expect(doc['@id']).to.eq('res:i22566485') - expect(doc['identifier']).to.be.a('array') - expect(doc['identifier'][0]).to.eq('urn:barcode:33433058338470') - expect(doc['identifier'][1]).to.eq('urn:SierraNypl:22566485') - expect(doc['idNyplSourceId']).to.be.a('object') - expect(doc['idNyplSourceId']['@type']).to.eq('SierraNypl') - expect(doc['idNyplSourceId']['@value']).to.eq('22566485') + expect(doc.identifier).to.be.a('array') + expect(doc.identifier[0]).to.eq('urn:barcode:33433058338470') + expect(doc.identifier[1]).to.eq('urn:SierraNypl:22566485') + expect(doc.idNyplSourceId).to.be.a('object') + expect(doc.idNyplSourceId['@type']).to.eq('SierraNypl') + expect(doc.idNyplSourceId['@value']).to.eq('22566485') }) it('adds entity form of CUL source identifier', () => { @@ -38,11 +38,11 @@ describe('ItemResourceSerializer', () => { expect(doc).to.be.a('object') expect(doc['@id']).to.eq('res:ci98765') - expect(doc['identifier']).to.be.a('array') - expect(doc['identifier'][0]).to.eq('urn:RecapCul:98765') - expect(doc['idNyplSourceId']).to.be.a('object') - expect(doc['idNyplSourceId']['@type']).to.eq('RecapCul') - expect(doc['idNyplSourceId']['@value']).to.eq('98765') + expect(doc.identifier).to.be.a('array') + expect(doc.identifier[0]).to.eq('urn:RecapCul:98765') + expect(doc.idNyplSourceId).to.be.a('object') + expect(doc.idNyplSourceId['@type']).to.eq('RecapCul') + expect(doc.idNyplSourceId['@value']).to.eq('98765') }) it('adds entity form of HL source identifier', () => { @@ -53,11 +53,11 @@ describe('ItemResourceSerializer', () => { expect(doc).to.be.a('object') expect(doc['@id']).to.eq('res:hi9876543210') - expect(doc['identifier']).to.be.a('array') - expect(doc['identifier'][0]).to.eq('urn:RecapHl:9876543210') - expect(doc['idNyplSourceId']).to.be.a('object') - expect(doc['idNyplSourceId']['@type']).to.eq('RecapHl') - expect(doc['idNyplSourceId']['@value']).to.eq('9876543210') + expect(doc.identifier).to.be.a('array') + expect(doc.identifier[0]).to.eq('urn:RecapHl:9876543210') + expect(doc.idNyplSourceId).to.be.a('object') + expect(doc.idNyplSourceId['@type']).to.eq('RecapHl') + expect(doc.idNyplSourceId['@value']).to.eq('9876543210') }) }) diff --git a/test/location_label_updater.test.js b/test/location_label_updater.test.js index 98224a8e..c9576596 100644 --- a/test/location_label_updater.test.js +++ b/test/location_label_updater.test.js @@ -1,37 +1,43 @@ -let LocationLabelUpdater = require('../lib/location_label_updater.js') +const LocationLabelUpdater = require('../lib/location_label_updater.js') describe('Location LabelUpdater', function () { it('will overwrite an ElasticSearch Response\'s item holding location label', function () { // This is just enough information for LocationLabelUpdater to make use of - let fakeESResponse = {'hits': - {'hits': [{ - '_id': 'b10980129', - '_source': { - 'items': [{ - 'holdingLocation': [{'id': 'mai87', 'label': 'Some disgusting room'}] - }] - } - }]} + const fakeESResponse = { + hits: + { + hits: [{ + _id: 'b10980129', + _source: { + items: [{ + holdingLocation: [{ id: 'mai87', label: 'Some disgusting room' }] + }] + } + }] + } } - let updatedResponse = new LocationLabelUpdater(fakeESResponse).responseWithUpdatedLabels() + const updatedResponse = new LocationLabelUpdater(fakeESResponse).responseWithUpdatedLabels() expect(updatedResponse.hits.hits[0]._source.items[0].holdingLocation[0].label).to.equal('Schwarzman Building - Periodicals and Microforms Room 119') }) it('will overwrite an ElasticSearch Response\'s holdings record location label', function () { // This is just enough information for LocationLabelUpdater to make use of - let fakeESResponse = {'hits': - {'hits': [{ - '_id': 'b10980129', - '_source': { - 'holdings': [{ - 'location': [{'code': 'mai', 'label': 'Some other room name'}] - }] - } - }]} + const fakeESResponse = { + hits: + { + hits: [{ + _id: 'b10980129', + _source: { + holdings: [{ + location: [{ code: 'mai', label: 'Some other room name' }] + }] + } + }] + } } - let updatedResponse = new LocationLabelUpdater(fakeESResponse).responseWithUpdatedLabels() + const updatedResponse = new LocationLabelUpdater(fakeESResponse).responseWithUpdatedLabels() expect(updatedResponse.hits.hits[0]._source.holdings[0].location[0].label).to.equal('Schwarzman Building - Microforms Room 315') }) }) diff --git a/test/ownership_determination.test.js b/test/ownership_determination.test.js index 0614033a..a5ec11c9 100644 --- a/test/ownership_determination.test.js +++ b/test/ownership_determination.test.js @@ -1,26 +1,26 @@ -var isItemNyplOwned = require('../lib/ownership_determination').isItemNyplOwned +const isItemNyplOwned = require('../lib/ownership_determination').isItemNyplOwned describe('isItemNyplOwned', function () { it('will only return true for certain items', function () { - let fake_nypl_items = [{uri: 'i10022734'}, {uri: 'i123489'}] - let fake_columbia_items = [{uri: 'ci10022734'}, {uri: 'ci123489'}] - let fake_princeton_items = [{uri: 'pi10022734'}, {uri: 'pi123489'}] - let fake_nonsense_items = [{uri: 'jsaoisjosjiaosjio'}, {uri: 'hello-mother'}] + const fakeNyplItems = [{ uri: 'i10022734' }, { uri: 'i123489' }] + const fakeColumbiaItems = [{ uri: 'ci10022734' }, { uri: 'ci123489' }] + const fakePrincetonItems = [{ uri: 'pi10022734' }, { uri: 'pi123489' }] + const fakeNonsenseItems = [{ uri: 'jsaoisjosjiaosjio' }, { uri: 'hello-mother' }] - fake_nypl_items.forEach((nypl_item) => { - expect(isItemNyplOwned(nypl_item)).to.equal(true) + fakeNyplItems.forEach((nyplItem) => { + expect(isItemNyplOwned(nyplItem)).to.equal(true) }) - fake_columbia_items.forEach((columbia_item) => { - expect(isItemNyplOwned(columbia_item)).to.equal(false) + fakeColumbiaItems.forEach((columbiaItem) => { + expect(isItemNyplOwned(columbiaItem)).to.equal(false) }) - fake_princeton_items.forEach((princeton_item) => { - expect(isItemNyplOwned(princeton_item)).to.equal(false) + fakePrincetonItems.forEach((princetonItem) => { + expect(isItemNyplOwned(princetonItem)).to.equal(false) }) - fake_nonsense_items.forEach((fake_nonsense_item) => { - expect(isItemNyplOwned(fake_nonsense_item)).to.equal(false) + fakeNonsenseItems.forEach((fakeNonsenseItem) => { + expect(isItemNyplOwned(fakeNonsenseItem)).to.equal(false) }) }) }) diff --git a/test/parallel-fields-extractor.test.js b/test/parallel-fields-extractor.test.js index 05f2fd95..3f4f42e5 100644 --- a/test/parallel-fields-extractor.test.js +++ b/test/parallel-fields-extractor.test.js @@ -14,7 +14,7 @@ describe('Parallel Fields Extractor', () => { it('adds each of the items in that array to the bibs as parallel', () => { const parallelsExtracted = parallelFieldsExtractor(parallelFieldsBib).hits.hits[0]._source expect(Object.keys(parallelsExtracted).length).to.equal(4) - expect(parallelsExtracted).to.deep.equal({ 'parallelPublicationStatement': ['Москва : Вагриус, 2006.'], 'parallelTableOfContents': ['Черный маг -- Копыто инженера -- Вечер страшной субботы -- Великий канцлер -- Фантастический роман -- Золотое Копье -- Князь тьмы -- Мастер и Маргарита (полная рукописная редакция) -- Мастер и Маргарита (окончательная редакция).'], 'parallelNote': ['\"Литературно-художественное издание\"--Colophon.'], 'parallelPlaceOfPublication': ['Москва :'] }) + expect(parallelsExtracted).to.deep.equal({ parallelPublicationStatement: ['Москва : Вагриус, 2006.'], parallelTableOfContents: ['Черный маг -- Копыто инженера -- Вечер страшной субботы -- Великий канцлер -- Фантастический роман -- Золотое Копье -- Князь тьмы -- Мастер и Маргарита (полная рукописная редакция) -- Мастер и Маргарита (окончательная редакция).'], parallelNote: ['"Литературно-художественное издание"--Colophon.'], parallelPlaceOfPublication: ['Москва :'] }) }) it('adds parallel field values to the property array on the index indicated', () => { diff --git a/test/requestability_resolver.test.js b/test/requestability_resolver.test.js index f07a6ca7..247361bd 100644 --- a/test/requestability_resolver.test.js +++ b/test/requestability_resolver.test.js @@ -11,12 +11,12 @@ describe('RequestabilityResolver', () => { it('returns physRequestable true for scff3 microfiche', () => { const resp = RequestabilityResolver.fixItemRequestability(scff3Microfiche) const item = resp.hits.hits[0]._source.items[0] - expect(item.physRequestable).to.be.true + expect(item.physRequestable).to.equal(true) }) it('returns physRequestable false for invalid item type, scff3', () => { const resp = RequestabilityResolver.fixItemRequestability(invalidTypeScff3) const item = resp.hits.hits[0]._source.items[0] - expect(item.physRequestable).to.be.false + expect(item.physRequestable).to.equal(false) }) // it('returns physRequestable true for scff2 microfilm', () => { // const resp = RequestabilityResolver.fixItemRequestability(scff2Microfilm) @@ -26,7 +26,7 @@ describe('RequestabilityResolver', () => { it('returns physRequestable false for invalid item type, scff2', () => { const resp = RequestabilityResolver.fixItemRequestability(invalidTypeScff2) const item = resp.hits.hits[0]._source.items[0] - expect(item.physRequestable).to.be.false + expect(item.physRequestable).to.equal(false) }) }) describe('fixItemRequestability', function () { @@ -34,15 +34,15 @@ describe('RequestabilityResolver', () => { it('sets physRequestable false for items with no barcodes', () => { const noBarcode = noBarcodeResponse() const resp = RequestabilityResolver.fixItemRequestability(noBarcode) - expect(resp.hits.hits[0]._source.items.every((item) => item.physRequestable === false)).to.be.true + expect(resp.hits.hits[0]._source.items.every((item) => item.physRequestable === false)).to.equal(true) }) it('will set requestable to false for an item not found in ReCAP', function () { - let indexedButNotAvailableInSCSBURI = 'i22566485' + const indexedButNotAvailableInSCSBURI = 'i22566485' const response = RequestabilityResolver.fixItemRequestability(NyplResponse) // Find the modified item in the response: - let theItem = response.hits.hits[0]._source.items.find((item) => item.uri === indexedButNotAvailableInSCSBURI) + const theItem = response.hits.hits[0]._source.items.find((item) => item.uri === indexedButNotAvailableInSCSBURI) // Our fakeRESTClient said its barcode doesn't exist, so it should appear with `requestable` false expect(theItem.requestable[0]).to.equal(false) }) @@ -50,9 +50,9 @@ describe('RequestabilityResolver', () => { it('marks ReCAP items that are in requestable locations and have delivery locations as physRequestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var availableItem = items.find((item) => { + const availableItem = items.find((item) => { return item.uri === 'i10283664' }) expect(availableItem.physRequestable).to.equal(true) @@ -62,9 +62,9 @@ describe('RequestabilityResolver', () => { it('marks ReCAP items that are in unrequestable locations as not eddRequestable nor physRequestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var availableItem = items.find((item) => { + const availableItem = items.find((item) => { return item.uri === 'i102836649-unrequestable' }) expect(availableItem.physRequestable).to.equal(false) @@ -74,11 +74,11 @@ describe('RequestabilityResolver', () => { it('marks SCSB Available items (that are indexed as Not Available) as requestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with Discovery status 'Not Available', but SCSB // status 'Available' should be made requestable: - var availableItem = items.find((item) => { + const availableItem = items.find((item) => { return item.uri === 'i10283664' }) expect(availableItem.requestable[0]).to.equal(true) @@ -87,27 +87,27 @@ describe('RequestabilityResolver', () => { it('marks SCSB Not-Available items as requestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with SCSB status 'Not Available' should be made not // requestable: - var notAvailableItem = items.find((item) => item.uri === 'i102836649') + const notAvailableItem = items.find((item) => item.uri === 'i102836649') expect(notAvailableItem.requestable[0]).to.equal(true) }) it('marks on-site (loc:scff2) Available items as requestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var availableItem = items.find((item) => item.uri === 'i10283665') + const availableItem = items.find((item) => item.uri === 'i10283665') expect(availableItem.requestable[0]).to.equal(true) }) it('marks on-site location with physRequestable false and eddRequestable', function () { const response = RequestabilityResolver.fixItemRequestability(NyplResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items - var notAvailableItem = items.find((item) => item.uri === 'i10283665777') + const notAvailableItem = items.find((item) => item.uri === 'i10283665777') expect(notAvailableItem.requestable[0]).to.equal(true) }) }) @@ -134,10 +134,10 @@ describe('RequestabilityResolver', () => { const eddResponse = eddElasticSearchResponse() it('marks items eddRequestable:true when its reCAP code is listed as such in nypl-core', () => { const response = RequestabilityResolver.fixItemRequestability(eddResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with customer code NA (eddRequestable = true) - var eddItem = items.find((item) => { + const eddItem = items.find((item) => { return item.uri === 'i102836649' }) expect(eddItem.eddRequestable).to.equal(true) @@ -145,10 +145,10 @@ describe('RequestabilityResolver', () => { it('marks items eddRequestable:false when its reCAP code is listed as such in nypl-core', () => { const response = RequestabilityResolver.fixItemRequestability(eddResponse) - var items = response.hits.hits[0]._source.items + const items = response.hits.hits[0]._source.items // A ReCAP item with customer code NC (eddRequestable = false) - var nonEddItem = items.find((item) => { + const nonEddItem = items.find((item) => { return item.uri === 'i10283664' }) expect(nonEddItem.eddRequestable).to.equal(false) diff --git a/test/resource_serializer.test.js b/test/resource_serializer.test.js index f4033cc7..a5baf49b 100644 --- a/test/resource_serializer.test.js +++ b/test/resource_serializer.test.js @@ -16,33 +16,33 @@ describe('Resource Serializer', () => { { '@type': 'nypl:Aggregation', '@id': 'res:location', - 'id': 'location', - 'field': 'location', - 'values': [ + id: 'location', + field: 'location', + values: [ { - 'value': 'loc:maf92', - 'count': 1, - 'label': 'Schwarzman Building M2 - Dorot Jewish Division Room 111' + value: 'loc:maf92', + count: 1, + label: 'Schwarzman Building M2 - Dorot Jewish Division Room 111' } ] }, { '@type': 'nypl:Aggregation', '@id': 'res:format', - 'id': 'format', - 'field': 'format', - 'values': [] + id: 'format', + field: 'format', + values: [] }, { '@type': 'nypl:Aggregation', '@id': 'res:status', - 'id': 'status', - 'field': 'status', - 'values': [ + id: 'status', + field: 'status', + values: [ { - 'value': 'status:a', - 'count': 1, - 'label': 'Available' + value: 'status:a', + count: 1, + label: 'Available' } ] } diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index 59ecb35e..be701d5b 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -5,7 +5,7 @@ const fixtures = require('./fixtures') const { expect } = require('chai') describe('Test Resources responses', function () { - var sampleResources = [{id: 'b10015541', type: 'nypl:Item'}, {id: 'b10022950', type: 'nypl:Item'}] + const sampleResources = [{ id: 'b10015541', type: 'nypl:Item' }, { id: 'b10022950', type: 'nypl:Item' }] this.timeout(10000) @@ -142,7 +142,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.items[0].physRequestable).to.be.true + expect(doc.items[0].physRequestable).to.equal(true) done() }) }) @@ -152,7 +152,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.items[0].physRequestable).to.be.true + expect(doc.items[0].physRequestable).to.equal(true) done() }) }) @@ -162,7 +162,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.items[0].requestable[0]).to.be.false + expect(doc.items[0].requestable[0]).to.equal(false) done() }) }) @@ -174,7 +174,7 @@ describe('Test Resources responses', function () { request.get(`${global.TEST_BASE_URL}/api/v0.1/discovery/resources/${spec.id}`, function (err, response, body) { if (err) throw err assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert(doc['@type'].indexOf(spec.type) >= 0) done() }) @@ -189,7 +189,7 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert(doc.title) assert.equal(doc.title[0], 'Religion--love or hate?') @@ -243,7 +243,7 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) // At writing the fixture has both `identifier` and `identifierV2` fields, // so it will choose the latter (which are stored as entities) @@ -297,7 +297,7 @@ describe('Test Resources responses', function () { expect(response.statusCode).to.equal(200) - var doc = JSON.parse(body) + const doc = JSON.parse(body) expect(doc.identifier).to.be.a('array') @@ -327,7 +327,7 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert(doc.title) assert.equal(doc.title[0], 'When Harlem was in vogue') @@ -350,7 +350,7 @@ describe('Test Resources responses', function () { expect(response.statusCode).to.equal(200) - var doc = JSON.parse(body) + const doc = JSON.parse(body) expect(doc.note).to.be.a('array') expect(doc.note).to.have.lengthOf(5) @@ -372,7 +372,7 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert(doc.supplementaryContent) assert(doc.supplementaryContent.length > 0) @@ -391,9 +391,9 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) - let eItem = doc.items.find((item) => item.electronicLocator) + const eItem = doc.items.find((item) => item.electronicLocator) assert(eItem.electronicLocator.length > 0) assert.equal(eItem.electronicLocator[0]['@type'], 'nypl:ElectronicLocation') assert.equal(eItem.electronicLocator[0].url, 'http://hdl.handle.net/2027/nyp.33433057532081') @@ -409,9 +409,9 @@ describe('Test Resources responses', function () { assert.equal(200, response.statusCode) - var doc = JSON.parse(body) + const doc = JSON.parse(body) - let eItem = doc.electronicResources + const eItem = doc.electronicResources expect(eItem).to.deep.equal([ { url: 'http://hdl.handle.net/2027/nyp.33433057532081', @@ -437,7 +437,7 @@ describe('Test Resources responses', function () { }) describe('GET resources search', function () { - var searchAllUrl = null + let searchAllUrl = null before(() => { searchAllUrl = `${global.TEST_BASE_URL}/api/v0.1/discovery/resources?q=` @@ -453,11 +453,11 @@ describe('Test Resources responses', function () { }) }) - it(`Resource search all (${searchAllUrl}) returns lots o\' results`, function (done) { + it(`Resource search all (${searchAllUrl}) returns lots o' results`, function (done) { request.get(searchAllUrl, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert(doc.totalResults > 400000) assert.equal(50, doc.itemListElement.length) @@ -469,7 +469,7 @@ describe('Test Resources responses', function () { it('Resource search all page 1 has requested page size', function (done) { request.get(`${searchAllUrl}&per_page=42`, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert.equal(42, doc.itemListElement.length) @@ -480,13 +480,13 @@ describe('Test Resources responses', function () { it('Resource search pagination is consistent', function (done) { request.get(`${searchAllUrl}&page=101&per_page=1`, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) - var item101 = doc.itemListElement[0].result + const doc = JSON.parse(body) + const item101 = doc.itemListElement[0].result // Now fetch same item in different way: request.get(`${searchAllUrl}&page=2&per_page=100`, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) assert.equal(doc.itemListElement[0].result['@id'], item101['@id']) done() }) @@ -500,14 +500,14 @@ describe('Test Resources responses', function () { request.get(`${searchAllUrl}&filters[holdingLocation]=${holdingLocationId}`, function (err, response, body) { if (err) throw err - let doc = JSON.parse(body) + const doc = JSON.parse(body) // Ensure we received results expect(doc.totalResults).to.be.above(1) // Ensure each result... doc.itemListElement.forEach((element) => { // .. has some items that ... - let itemsWithHoldingLocation = element.result.items.filter((item) => { + const itemsWithHoldingLocation = element.result.items.filter((item) => { if (!item.holdingLocation) return false // .. have holding locations that match the filtered location. return item.holdingLocation.filter((loc) => loc['@id'] === holdingLocationId).length > 0 @@ -583,24 +583,24 @@ describe('Test Resources responses', function () { }) it('Ensure a chain of added filters reduces resultset correctly', function (done) { - var dates = [1984, 1985] + const dates = [1984, 1985] - var nextUrl = searchAllUrl + let nextUrl = searchAllUrl // Fetch all results: request.get(nextUrl, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) // Establish ALL count: - var prevTotal = doc.totalResults + let prevTotal = doc.totalResults // Next, add filter on the first date (objects whose start/end date range include 1984) nextUrl = `${nextUrl}&filters[dateAfter]=${dates[0]}` return request.get(nextUrl, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) // Ensure count decreased: expect(doc.totalResults).to.be.below(prevTotal) @@ -622,7 +622,7 @@ describe('Test Resources responses', function () { nextUrl += `&filters[dateBefore]=${dates[1]}` return request.get(nextUrl, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) // Ensure count decreased: expect(doc.totalResults).to.be.below(prevTotal) @@ -646,7 +646,7 @@ describe('Test Resources responses', function () { return request.get(nextUrl, function (err, response, body) { if (err) throw err - var doc = JSON.parse(body) + const doc = JSON.parse(body) // Ensure count decreased: expect(doc.totalResults).to.be.below(prevTotal) @@ -684,7 +684,7 @@ describe('Test Resources responses', function () { }) describe('search_scope=standard_number', function () { - var searchAllUrl = null + let searchAllUrl = null before(() => { searchAllUrl = `${global.TEST_BASE_URL}/api/v0.1/discovery/resources?search_scope=standard_number&q=` @@ -759,12 +759,12 @@ describe('Test Resources responses', function () { // Some bnumbers and the item callnumbers that should produce them: const bnumStandardNumberMapping = { - 'b11826883': 'JQL 08-18', - 'b13627363': 'VPS (Rice, E. Cats, cats, & cats)', - 'b12423567': 'AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)', - 'pb1717': 'SF445.5 .C378', - 'b13565153': 'VQG (Loudon, J. W. Gardening for ladies. 1854)', - 'b12709113': 'IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)' + b11826883: 'JQL 08-18', + b13627363: 'VPS (Rice, E. Cats, cats, & cats)', + b12423567: 'AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)', + pb1717: 'SF445.5 .C378', + b13565153: 'VQG (Loudon, J. W. Gardening for ladies. 1854)', + b12709113: 'IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)' } Object.keys(bnumStandardNumberMapping).forEach((bnum) => { diff --git a/test/resources.test.js b/test/resources.test.js index b2352424..4cf6df60 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -7,7 +7,7 @@ const errors = require('../lib/errors') const fixtures = require('./fixtures') describe('Resources query', function () { - let resourcesPrivMethods = {} + const resourcesPrivMethods = {} let app before(function () { @@ -42,7 +42,7 @@ describe('Resources query', function () { resourcesPrivMethods .parseSearchParams({ merge_checkin_card_items: 'false' }) .merge_checkin_card_items - ).to.equal(false) + ).to.equal(false) }) }) @@ -93,7 +93,7 @@ describe('Resources query', function () { expect(body.bool.must).to.be.a('array') expect(body.bool.must[0]).to.be.a('object') expect(body.bool.must[0].query_string).to.be.a('object') - expect(body.bool.must[0].query_string.query).to.equal('subjectLiteral:\"hot potatoes\"') + expect(body.bool.must[0].query_string.query).to.equal('subjectLiteral:"hot potatoes"') }) it('escapes colon if field not recognized', function () { @@ -104,7 +104,7 @@ describe('Resources query', function () { expect(body.bool.must).to.be.a('array') expect(body.bool.must[0]).to.be.a('object') expect(body.bool.must[0].query_string).to.be.a('object') - expect(body.bool.must[0].query_string.query).to.equal('fladeedle\\:\"hot potatoes\"') + expect(body.bool.must[0].query_string.query).to.equal('fladeedle\\:"hot potatoes"') }) it('uses "query string query" if plain keyword query used', function () { @@ -356,7 +356,7 @@ describe('Resources query', function () { fixtures.disableScsbFixtures() sinon.stub(scsbClient, 'getItemsAvailabilityForBnum') - .callsFake(() => Promise.reject()) + .callsFake(() => Promise.reject(new Error())) sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') .callsFake(() => Promise.resolve([])) }) @@ -405,23 +405,23 @@ describe('Resources query', function () { expect(nestedFilters) .to.deep.equal([ { - 'range': { + range: { 'items.volumeRange': { - 'gte': 1, - 'lte': 2 + gte: 1, + lte: 2 } } }, { - 'range': { + range: { 'items.dateRange': { - 'gte': 3, - 'lte': 4 + gte: 3, + lte: 4 } } }, { - 'terms': { + terms: { 'items.formatLiteral': [ 'text', 'microfilm' @@ -429,7 +429,7 @@ describe('Resources query', function () { } }, { - 'terms': { + terms: { 'items.holdingLocation.id': [ 'SASB', 'LPA' @@ -437,7 +437,7 @@ describe('Resources query', function () { } }, { - 'terms': { + terms: { 'items.status.id': [ 'here', 'there' @@ -476,7 +476,7 @@ describe('Resources query', function () { it('should return filters for volume in case there is a volume', () => { expect(resourcesPrivMethods.itemsFilterContext({ query: { volume: [1, 2] } })) - .to.deep.equal({ filter: [{ range: { 'items.volumeRange': { gte: 1, lte: 2 } } }] }) + .to.deep.equal({ filter: [{ range: { 'items.volumeRange': { gte: 1, lte: 2 } } }] }) }) it('should return filters for date in case there is a date', () => { @@ -674,7 +674,7 @@ describe('Resources query', function () { { exists: { field: 'items.electronicLocator' } } ], filter: [ - { range: { 'items.volumeRange': { 'gte': 1, 'lte': 2 } } }, + { range: { 'items.volumeRange': { gte: 1, lte: 2 } } }, { terms: { 'items.holdingLocation.id': ['SASB', 'LPA'] } } ] } diff --git a/test/test_helper.js b/test/test_helper.js index 2e77d7e5..12bc781d 100644 --- a/test/test_helper.js +++ b/test/test_helper.js @@ -27,7 +27,7 @@ before(() => { const value = productionEnv[key] let handleValue = Promise.resolve(value) // Decrypt the config that's encrypted: - if ([ 'SCSB_URL', 'SCSB_API_KEY', 'NYPL_OAUTH_SECRET' ].includes(key)) { + if (['SCSB_URL', 'SCSB_API_KEY', 'NYPL_OAUTH_SECRET'].includes(key)) { handleValue = kmsHelper.decrypt(value) } return handleValue diff --git a/test/util.test.js b/test/util.test.js index d10769ae..5e33a750 100644 --- a/test/util.test.js +++ b/test/util.test.js @@ -6,23 +6,23 @@ describe('Util', function () { describe('isSchomburg', () => { it('returns false for non schomburg location', () => { const item = { - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:mal' + id: 'loc:mal' } ] } - expect(util.isInSchomburg(item)).to.be.false + expect(util.isInSchomburg(item)).to.equal(false) }) it('returns true for schomburg items', () => { const item = { - 'holdingLocation': [ + holdingLocation: [ { - 'id': 'loc:scff3' + id: 'loc:scff3' } ] } - expect(util.isInSchomburg(item)).to.be.true + expect(util.isInSchomburg(item)).to.equal(true) }) }) @@ -36,16 +36,16 @@ describe('Util', function () { describe('parseParams', () => { it('should parse an int', () => { - var incoming = { 'foo': '3' } - var spec = { foo: { type: 'int' } } - var outgoing = util.parseParams(incoming, spec) + const incoming = { foo: '3' } + const spec = { foo: { type: 'int' } } + const outgoing = util.parseParams(incoming, spec) expect(outgoing).to.be.an('object') expect(outgoing.foo).to.equal(3) }) it('should parse a boolean', () => { - const incoming = { 'true': 'true', 'false': 'false' } + const incoming = { true: 'true', false: 'false' } const spec = { true: { type: 'boolean' }, false: { type: 'boolean' } } const outgoing = util.parseParams(incoming, spec) @@ -55,9 +55,9 @@ describe('Util', function () { }) it('should parse a single value unless multiple allowed', () => { - var incoming = { 'notRepeatable': ['first val', 'second val'], 'repeatable': ['1', '3'] } - var spec = { notRepeatable: { type: 'string' }, repeatable: { type: 'int', repeatable: true } } - var outgoing = util.parseParams(incoming, spec) + const incoming = { notRepeatable: ['first val', 'second val'], repeatable: ['1', '3'] } + const spec = { notRepeatable: { type: 'string' }, repeatable: { type: 'int', repeatable: true } } + const outgoing = util.parseParams(incoming, spec) expect(outgoing.notRepeatable).to.be.a('string') expect(outgoing.notRepeatable).to.equal('second val') @@ -67,15 +67,15 @@ describe('Util', function () { }) it('should parse a hash of filters', () => { - var incoming = { - 'filters': { - 'subjectLiteral': 'cats', - 'contributorLiteral': ['Contrib 1', 'Contrib 2'], - 'date': '2012', - 'badNumeric': 'blah' + const incoming = { + filters: { + subjectLiteral: 'cats', + contributorLiteral: ['Contrib 1', 'Contrib 2'], + date: '2012', + badNumeric: 'blah' } } - var spec = { + const spec = { filters: { type: 'hash', fields: { @@ -86,7 +86,7 @@ describe('Util', function () { } } } - var outgoing = util.parseParams(incoming, spec) + const outgoing = util.parseParams(incoming, spec) expect(outgoing).to.be.an('object') expect(outgoing.filters).to.be.a('object') @@ -101,13 +101,13 @@ describe('Util', function () { }) it('should apply defaults', () => { - var incoming = { - 'q': '', - 'filters': { - 'badNumeric': 'blah' + const incoming = { + q: '', + filters: { + badNumeric: 'blah' } } - var spec = { + const spec = { q: { type: 'string', default: 'default query' }, page: { type: 'int', default: 1 }, filters: { @@ -117,7 +117,7 @@ describe('Util', function () { } } } - var outgoing = util.parseParams(incoming, spec) + const outgoing = util.parseParams(incoming, spec) expect(outgoing).to.be.an('object') From dac48f132611032232bb86351aeb2feffdd0fa63 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 12 Mar 2024 15:25:54 -0400 Subject: [PATCH 09/51] Fix all tests --- app.js | 16 +- config/test.env | 28 +- lib/availability_resolver.js | 2 +- lib/es-client.js | 2 +- lib/load-config.js | 16 +- lib/logger.js | 62 +- lib/resources.js | 15 +- package-lock.json | 402 +- package.json | 8 +- test/aggregations.test.js | 36 - test/delivery-locations-resolver.test.js | 27 +- test/fixtures.js | 10 +- ...esponse-b1234-just-non-recap-statuses.json | 56 +- .../es-response-b1234-recap-statuses.json | 2 +- ...uery-0063c9c99940d2fb617ace9ec6ae975b.json | 666 +- ...uery-01ec8ac20d4caf1a8fff0b2efeda21dc.json | 918 - ...uery-031480faa31b9e8451ac1dfc46e9c2c3.json | 1970 +- ...uery-0600618a472f03915c357c47f7252b21.json | 1974 +- ...uery-0868de6b598fcf3b6c79d7f478450082.json | 999 + ...uery-08c981967257e7283e3b3da246e2c5b7.json | 918 - ...uery-0b98a0d1eaa3f1e2e9ebcea053c46482.json | 1374 +- ...uery-0c87674e2eea7f4714de92f52fc285b5.json | 14078 ------- ...uery-0ddcd39540ac575980523b2f15bfeb26.json | 18343 +++++----- ...uery-0f5d0588bb785fd49eff14f4b51b19e4.json | 30265 ---------------- ...uery-121137ffc8f53bcde6cbfa353abc873d.json | 13660 +++++++ ...uery-17bc6a76d1c2a5e16798b484b1b07ac0.json | 286 - ...uery-18b5b3ec3a016af2ceea77369ec9ca59.json | 918 - ...uery-1c2d8f93ab77fffcea01c8a459215262.json | 13972 +++++++ ...uery-1db82abdf32d18268de7b647ec615b8d.json | 1217 - ...uery-2169f11a58545261999f3895ac55b21a.json | 999 + ...uery-242ac555d052117964fb4bd1f94d5db7.json | 28871 +++++++++++++++ ...uery-2520e3b1f978b51c5cd28cc72e15f1ef.json | 576 +- ...uery-26f75cdf5ce8aeaf285ef0a8860332d1.json | 999 + ...uery-286be314fe931d66b3330db990eaff90.json | 367 + ...uery-2d9d9b8b2275d60bed361ae2f96c4e29.json | 22697 ------------ ...uery-3149089ee876c7ae06e3c3d11d071381.json | 999 + ...uery-32d7184d0fa52e06db76c5375578a489.json | 14078 ------- ...uery-3335c674a3cb042fc07f6a8448208978.json | 918 - ...uery-4356f3bc84584e2564ddf8544411ac5b.json | 999 + ...uery-4492e53fd966b7d8ff7400cc46e55c48.json | 208 - ...uery-48a4fe5a4b5d67c7241fa3abddcbb79a.json | 11800 ------ ...uery-495b17ae29764e74b951feb9d1bc5d81.json | 918 - ...uery-52a176a516835538d3a8131a02c15113.json | 999 + ...uery-53cdab256d393a17fccaee10862edaa4.json | 918 - ...uery-5b802a2585b735233442e1a57bc5bfcb.json | 229 - ...uery-5db5ff2be8108213f947837665382acb.json | 918 - ...uery-5f8bbe520199022d66e509963906d92c.json | 25591 +++++++------ ...uery-5fd8a7bc95ea9e9ad14fe9b45e2b1561.json | 16741 +++++++++ ...uery-602d854de6556f3e37a31574d484bebb.json | 14078 ------- ...uery-611d6d3ca022d6d4732d52a0821eb41f.json | 100 +- ...uery-62de0489db3c24b174806d72649004c5.json | 15346 -------- ...uery-6420fa3c29a11c684c79018e357e753c.json | 14 - ...uery-69b0dc828a8d3231402658b40516e83c.json | 546 +- ...uery-6bcf4623953f18ea854a3a9ae2106d25.json | 25237 +++++++------ ...uery-6de3356edb615c91451b75776c601fb9.json | 12947 ------- ...uery-6fa83483f91c71a2a4b98ac73c958162.json | 999 + ...uery-707de869c4b3e2190f67566671fab9f4.json | 23806 ++++++++++++ ...uery-718f499a27489109e9b1b6c1f418f385.json | 2797 -- ...uery-71d36c1f33f0f5275ed40ae1693d9183.json | 28034 -------------- ...uery-7317ebe654dd7a589f29dcd1b090ebde.json | 2544 +- ...uery-74aaa61ebf97366fbad1553c74794c4c.json | 13972 +++++++ ...uery-78203567e820c5b101a2cfd66a93e62b.json | 18541 +++++----- ...uery-7ace9db01f2b30beba1d55702c75d623.json | 269 + ...uery-7ca6c9aba76cb9bfe3d8723b854b5cda.json | 918 - ...uery-7d8af73c10574d2aec7f5a723121d125.json | 918 - ...uery-84acf41118ccc2510fafb67456030a54.json | 136 +- ...uery-8518bdc5e3bd335ea12befb8eaf8b697.json | 14078 ------- ...uery-8f3c5260ceb02bb81bc94e262266c822.json | 334 + ...uery-8f6a3a4db3edc6e0c6377d0dbd28973e.json | 918 - ...uery-8f96cd24c7eab6d6aa97fe3e581662ca.json | 273 + ...uery-92f4cc751d82f219043b8f57955b9f6d.json | 556 + ...uery-99abeeea550928cd544770101ca7fff8.json | 13972 +++++++ ...uery-9a0a78fda43572ca696125e7dc658532.json | 1374 +- ...uery-9c5eb8e5dedfef7dab293b393216270e.json | 999 + ...uery-9e6862cbcbe39a3aad216d368a28ea8e.json | 112 +- ...uery-a0111709561e56b2a43cdfb8983d4e3e.json | 301 + ...uery-a0e4b5292f813a1a98d1fe8459106211.json | 999 + ...uery-a1849941cf6e1b1e8830be2a63d7304d.json | 14493 ++++++++ ...uery-a19ae4e78b36593cbe7b84eebb64396f.json | 918 - ...uery-a744712a30c8bcda83ef121d25017ba7.json | 1067 +- ...uery-af1eb94bf25cec28cbb6055cc02978ea.json | 15630 ++++++++ ...uery-af2c6a904983b67a7eed159c29009afa.json | 999 + ...uery-b42be6cd6e74c6eb45bd02fb0b86e80e.json | 2544 +- ...uery-b45864e0a007ab2dea34d6b0899f0959.json | 708 +- ...uery-b4e10eb0d4b0cd46fdf7886dcc46e403.json | 21097 ----------- ...uery-b7376b6a73076f225ec5c02b314cb34d.json | 999 + ...uery-b7681fefd657539ea771ca2ce9ee66f3.json | 62 + ...uery-b85578028da1324e5ebd99def98866e7.json | 253 - ...uery-b8e8618ef319b1bd53783dcd19ee846b.json | 100 +- ...uery-bc4f4f8e4e3a1348da83546b2b0806ec.json | 1139 +- ...uery-be679a41ee3d347dc7dab8d9ac734ce1.json | 736 +- ...uery-c18c145cf2a213e7a77d1172888575fd.json | 999 + ...uery-c48428f4ada00371fbaba874d3852095.json | 222 - ...uery-c6b123ef4b18a3c4774ea9b10bb59478.json | 13972 +++++++ ...uery-c7c98a9fcb6da17b0db0c005f5d43c93.json | 319 - ...uery-ce843ff20c8c4b43375099b360db01c5.json | 16027 ++++++++ ...uery-cf0e287ac48c9c7f060cd8497214322e.json | 999 + ...uery-d1d6ee98f88d468431f7ec807e910aad.json | 218 - ...uery-d30b11438fadbf33762e80d55a2991da.json | 100 +- ...uery-d3ffa10ceddb6785fcc94c17b23cc16a.json | 1417 +- ...uery-d818d68da1ce53dad67bfe8f6aa95de7.json | 24457 ------------- ...uery-d84f39ec0be89d9e044ab5c449f72a35.json | 918 - ...uery-e06d69933681f0e1e98f5fef0cdc4d74.json | 14445 -------- ...uery-e208ec0c3f3bf953053d1573fd11b700.json | 772 +- ...uery-e4b879a0948f7f28c8daf7cb132886f1.json | 21111 +++++++++++ ...uery-e95f6837773f6991b91fe23ccd1d6d77.json | 11694 ++++++ ...uery-f2ccfdfa3e4c8ac6d4f2fa84e1d3eaa9.json | 13106 +++++++ ...uery-f7f1826a6090dac07ee7f124c63d3fbd.json | 15715 -------- ...uery-f9cdec0fa8bba6b8d45d9bf5baa2fe97.json | 918 - ...uery-fc436ffcdd88db79315260f3cc3b1212.json | 28083 ++++++++++++++ ...uery-fceda164d061c2f414161e43132029cf.json | 2741 ++ ...uery-fed340f471700bc9bc37480d8c1495a6.json | 13423 ------- ...bnum-d41d8cd98f00b204e9800998ecf8427e.json | 134 +- ...ode-49ee27f2d9834e5cb92d4018a9468a64.json} | 5 + ...ode-4a86f5100c2412aa6c747b6a4980a8b8.json} | 176 +- ...ode-4eb3fad2438146c7e687a865179ebc89.json} | 218 +- ...ode-5aa8466d9f5620b303b09ea3f221fab2.json} | 104 +- ...ode-5dc39526e3786ae0cbecbdef1db3e7a4.json} | 274 +- ...ode-6d9bc4ccfec5900d645ec91611d139ee.json} | 184 +- ...ode-86d3e2182e29772fa98a527eb571085b.json} | 8 +- ...ode-8a1efe7954b1daeec96bdaef058cbad0.json} | 8 +- ...ode-a240a643965b774ab9384fbfc813a6f3.json} | 12 +- ...ode-b03969825ecd51133aa3ec63442c38bc.json} | 20 +- ...ode-de2b279b21a808f0b0ca151f03968031.json} | 4 +- ...ode-ed0a6cc5e79279ebad32c4806edd44ca.json} | 8 +- ...code-ff5b8e7ea9a28bf4a8c8409597bbf6df.json | 7 + test/resources-responses.test.js | 16 +- test/test_helper.js | 64 +- 128 files changed, 331234 insertions(+), 339592 deletions(-) delete mode 100644 test/aggregations.test.js delete mode 100644 test/fixtures/query-01ec8ac20d4caf1a8fff0b2efeda21dc.json create mode 100644 test/fixtures/query-0868de6b598fcf3b6c79d7f478450082.json delete mode 100644 test/fixtures/query-08c981967257e7283e3b3da246e2c5b7.json delete mode 100644 test/fixtures/query-0c87674e2eea7f4714de92f52fc285b5.json delete mode 100644 test/fixtures/query-0f5d0588bb785fd49eff14f4b51b19e4.json create mode 100644 test/fixtures/query-121137ffc8f53bcde6cbfa353abc873d.json delete mode 100644 test/fixtures/query-17bc6a76d1c2a5e16798b484b1b07ac0.json delete mode 100644 test/fixtures/query-18b5b3ec3a016af2ceea77369ec9ca59.json create mode 100644 test/fixtures/query-1c2d8f93ab77fffcea01c8a459215262.json delete mode 100644 test/fixtures/query-1db82abdf32d18268de7b647ec615b8d.json create mode 100644 test/fixtures/query-2169f11a58545261999f3895ac55b21a.json create mode 100644 test/fixtures/query-242ac555d052117964fb4bd1f94d5db7.json create mode 100644 test/fixtures/query-26f75cdf5ce8aeaf285ef0a8860332d1.json create mode 100644 test/fixtures/query-286be314fe931d66b3330db990eaff90.json delete mode 100644 test/fixtures/query-2d9d9b8b2275d60bed361ae2f96c4e29.json create mode 100644 test/fixtures/query-3149089ee876c7ae06e3c3d11d071381.json delete mode 100644 test/fixtures/query-32d7184d0fa52e06db76c5375578a489.json delete mode 100644 test/fixtures/query-3335c674a3cb042fc07f6a8448208978.json create mode 100644 test/fixtures/query-4356f3bc84584e2564ddf8544411ac5b.json delete mode 100644 test/fixtures/query-4492e53fd966b7d8ff7400cc46e55c48.json delete mode 100644 test/fixtures/query-48a4fe5a4b5d67c7241fa3abddcbb79a.json delete mode 100644 test/fixtures/query-495b17ae29764e74b951feb9d1bc5d81.json create mode 100644 test/fixtures/query-52a176a516835538d3a8131a02c15113.json delete mode 100644 test/fixtures/query-53cdab256d393a17fccaee10862edaa4.json delete mode 100644 test/fixtures/query-5b802a2585b735233442e1a57bc5bfcb.json delete mode 100644 test/fixtures/query-5db5ff2be8108213f947837665382acb.json create mode 100644 test/fixtures/query-5fd8a7bc95ea9e9ad14fe9b45e2b1561.json delete mode 100644 test/fixtures/query-602d854de6556f3e37a31574d484bebb.json delete mode 100644 test/fixtures/query-62de0489db3c24b174806d72649004c5.json delete mode 100644 test/fixtures/query-6420fa3c29a11c684c79018e357e753c.json delete mode 100644 test/fixtures/query-6de3356edb615c91451b75776c601fb9.json create mode 100644 test/fixtures/query-6fa83483f91c71a2a4b98ac73c958162.json create mode 100644 test/fixtures/query-707de869c4b3e2190f67566671fab9f4.json delete mode 100644 test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json delete mode 100644 test/fixtures/query-71d36c1f33f0f5275ed40ae1693d9183.json create mode 100644 test/fixtures/query-74aaa61ebf97366fbad1553c74794c4c.json create mode 100644 test/fixtures/query-7ace9db01f2b30beba1d55702c75d623.json delete mode 100644 test/fixtures/query-7ca6c9aba76cb9bfe3d8723b854b5cda.json delete mode 100644 test/fixtures/query-7d8af73c10574d2aec7f5a723121d125.json delete mode 100644 test/fixtures/query-8518bdc5e3bd335ea12befb8eaf8b697.json create mode 100644 test/fixtures/query-8f3c5260ceb02bb81bc94e262266c822.json delete mode 100644 test/fixtures/query-8f6a3a4db3edc6e0c6377d0dbd28973e.json create mode 100644 test/fixtures/query-8f96cd24c7eab6d6aa97fe3e581662ca.json create mode 100644 test/fixtures/query-92f4cc751d82f219043b8f57955b9f6d.json create mode 100644 test/fixtures/query-99abeeea550928cd544770101ca7fff8.json create mode 100644 test/fixtures/query-9c5eb8e5dedfef7dab293b393216270e.json create mode 100644 test/fixtures/query-a0111709561e56b2a43cdfb8983d4e3e.json create mode 100644 test/fixtures/query-a0e4b5292f813a1a98d1fe8459106211.json create mode 100644 test/fixtures/query-a1849941cf6e1b1e8830be2a63d7304d.json delete mode 100644 test/fixtures/query-a19ae4e78b36593cbe7b84eebb64396f.json create mode 100644 test/fixtures/query-af1eb94bf25cec28cbb6055cc02978ea.json create mode 100644 test/fixtures/query-af2c6a904983b67a7eed159c29009afa.json delete mode 100644 test/fixtures/query-b4e10eb0d4b0cd46fdf7886dcc46e403.json create mode 100644 test/fixtures/query-b7376b6a73076f225ec5c02b314cb34d.json create mode 100644 test/fixtures/query-b7681fefd657539ea771ca2ce9ee66f3.json delete mode 100644 test/fixtures/query-b85578028da1324e5ebd99def98866e7.json create mode 100644 test/fixtures/query-c18c145cf2a213e7a77d1172888575fd.json delete mode 100644 test/fixtures/query-c48428f4ada00371fbaba874d3852095.json create mode 100644 test/fixtures/query-c6b123ef4b18a3c4774ea9b10bb59478.json delete mode 100644 test/fixtures/query-c7c98a9fcb6da17b0db0c005f5d43c93.json create mode 100644 test/fixtures/query-ce843ff20c8c4b43375099b360db01c5.json create mode 100644 test/fixtures/query-cf0e287ac48c9c7f060cd8497214322e.json delete mode 100644 test/fixtures/query-d1d6ee98f88d468431f7ec807e910aad.json delete mode 100644 test/fixtures/query-d818d68da1ce53dad67bfe8f6aa95de7.json delete mode 100644 test/fixtures/query-d84f39ec0be89d9e044ab5c449f72a35.json delete mode 100644 test/fixtures/query-e06d69933681f0e1e98f5fef0cdc4d74.json create mode 100644 test/fixtures/query-e4b879a0948f7f28c8daf7cb132886f1.json create mode 100644 test/fixtures/query-e95f6837773f6991b91fe23ccd1d6d77.json create mode 100644 test/fixtures/query-f2ccfdfa3e4c8ac6d4f2fa84e1d3eaa9.json delete mode 100644 test/fixtures/query-f7f1826a6090dac07ee7f124c63d3fbd.json delete mode 100644 test/fixtures/query-f9cdec0fa8bba6b8d45d9bf5baa2fe97.json create mode 100644 test/fixtures/query-fc436ffcdd88db79315260f3cc3b1212.json create mode 100644 test/fixtures/query-fceda164d061c2f414161e43132029cf.json delete mode 100644 test/fixtures/query-fed340f471700bc9bc37480d8c1495a6.json rename test/fixtures/{scsb-by-barcode-b4315e7200e7a00512bb05c6aaa0c3b4.json => scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json} (50%) rename test/fixtures/{scsb-by-barcode-da942f963c559b4c183cb45fb0a4d051.json => scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json} (100%) rename test/fixtures/{scsb-by-barcode-128f5b12c1ee2dd4132c06a4c7862d22.json => scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json} (87%) rename test/fixtures/{scsb-by-barcode-1b7617efc4c13c001722342534fecbac.json => scsb-by-barcode-5aa8466d9f5620b303b09ea3f221fab2.json} (94%) rename test/fixtures/{scsb-by-barcode-b3232841610dbf201ae490784d7f504f.json => scsb-by-barcode-5dc39526e3786ae0cbecbdef1db3e7a4.json} (68%) rename test/fixtures/{scsb-by-barcode-b5c1f2072cd2a6f6934eb1079861bd29.json => scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json} (99%) rename test/fixtures/{scsb-by-barcode-459f6f37fcdb71a9c34013aa059821ef.json => scsb-by-barcode-86d3e2182e29772fa98a527eb571085b.json} (99%) rename test/fixtures/{scsb-by-barcode-2cc9d5c309214602bb1963e2567a5e08.json => scsb-by-barcode-8a1efe7954b1daeec96bdaef058cbad0.json} (99%) rename test/fixtures/{scsb-by-barcode-8741f373536f95bcdc119cace14a1a17.json => scsb-by-barcode-a240a643965b774ab9384fbfc813a6f3.json} (100%) rename test/fixtures/{scsb-by-barcode-7112d7d97c20b128eca788b9b9280966.json => scsb-by-barcode-b03969825ecd51133aa3ec63442c38bc.json} (98%) rename test/fixtures/{scsb-by-barcode-49571d38fe75fc26379dc78cc87bf250.json => scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json} (100%) rename test/fixtures/{scsb-by-barcode-c611e4c0e4880bfee11c1a4cd80d95bb.json => scsb-by-barcode-ed0a6cc5e79279ebad32c4806edd44ca.json} (99%) create mode 100644 test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json diff --git a/app.js b/app.js index 720aa7fd..cb731f2d 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const config = require('config') const express = require('express') const esClient = require('./lib/es-client') -const { loadConfig } = require('./lib/load-config') +const loadConfig = require('./lib/load-config') const { preflightCheck } = require('./lib/preflight_check') const swaggerDocs = require('./swagger.v1.1.x.json') @@ -18,8 +18,8 @@ const app = express() // See https://expressjs.com/en/4x/api.html#trust.proxy.options.table app.set('trust proxy', 'loopback') -const run = async () => { - await loadConfig() +app.init = async () => { + await loadConfig.loadConfig() preflightCheck() @@ -55,16 +55,18 @@ const run = async () => { app.get('/api/v0.1/discovery/swagger', function (req, res) { res.send(swaggerDocs) }) +} + +app.start = async () => { + await app.init() const port = process.env.PORT || config.port - require('./lib/globals')(app).then((app) => { - app.listen(port, function () { + return require('./lib/globals')(app).then((app) => { + return app.listen(port, function () { app.logger.info('Server started on port ' + port) }) }) } -run() - module.exports = app diff --git a/config/test.env b/config/test.env index 0137d853..b71278c2 100644 --- a/config/test.env +++ b/config/test.env @@ -1,17 +1,23 @@ -# Number of items returned for each bib by default: -SEARCH_ITEMS_SIZE=200 +ENCRYPTED_ELASTICSEARCH_URI=encrypted-elasticsearch-uri +ENCRYPTED_RESOURCES_INDEX=encrypted-resourdces-index -# This can be any port, but let's choose something reasonably high to -# avoid conflict: -PORT=5678 - -ELASTICSEARCH_HOST=https://es.example.com -RESOURCES_INDEX=index-name +ENCRYPTED_SCSB_URL=encrypted-scsb-url +ENCRYPTED_SCSB_API_KEY=encrypted-scsb-api-key NYPL_API_BASE_URL=http://api.example.com/api/v0.1/ NYPL_OAUTH_URL=http://oauth.example.com -NYPL_OAUTH_ID=user -NYPL_OAUTH_SECRET=secret +ENCRYPTED_NYPL_OAUTH_ID=encrypted-nypl-oauth-id +ENCRYPTED_NYPL_OAUTH_SECRET=encrypted-nypl-oauth-id + +NYPL_CORE_VERSION=v2.14 + +LOG_LEVEL=error +FEATURES=on-site-edd + +SEARCH_ITEMS_SIZE=100 +PORT=5678 + +HIDE_NYPL_SOURCE= BIB_HAS_VOLUMES_THRESHOLD=0.8 -BIB_HAS_DATES_THRESHOLD=0.8 \ No newline at end of file +BIB_HAS_DATES_THRESHOLD=0.8 diff --git a/lib/availability_resolver.js b/lib/availability_resolver.js index 14c9cb27..b0e92282 100644 --- a/lib/availability_resolver.js +++ b/lib/availability_resolver.js @@ -59,7 +59,7 @@ class AvailabilityResolver { logger.debug('_fixItemStatusAggregation: Skipping because no SCSB statuses provided') return Promise.resolve() } - const bnum = this.elasticSearchResponse.hits.hits[0]._id + const bnum = resp.hits.hits[0]._id const { nyplSource } = NyplSourceMapper.instance().splitIdentifier(bnum) // Get total number of items: diff --git a/lib/es-client.js b/lib/es-client.js index b522e897..f3a9df1c 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -84,7 +84,7 @@ clientWrapper.nonRecapItemStatusAggregation = (bnum) => { return clientWrapper.search(esQuery) .then((resp) => { - return deepValue(resp, 'aggregations.statuses.nonrecap_statuses.nonrecap_status_buckets.buckets') + return deepValue(resp, 'body.aggregations.statuses.nonrecap_statuses.nonrecap_status_buckets.buckets') }) } diff --git a/lib/load-config.js b/lib/load-config.js index 402a904c..9d9b394e 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -1,8 +1,9 @@ const dotenv = require('dotenv') +const logger = require('./logger') const { decrypt } = require('./kms-helper') -const loadConfig = async () => { +module.exports.loadConfig = async () => { // Use `ENV` var to determine what config to load (default production): const env = process.env.ENV && ['local', 'qa', 'qa-new-domain', 'production'].includes(process.env.ENV) @@ -14,10 +15,14 @@ const loadConfig = async () => { dotenv.config({ path: envPath }) // Now that we've loaded env vars, which may include LOG_LEVEL, instantiate logger: - const logger = require('./logger') + logger.setLevel(process.env.LOG_LEVEL) logger.info(`Load-config: Loaded ${envPath} for ENV '${process.env.ENV || ''}'`) + return await exports.decryptEncryptedConfig() +} + +module.exports.decryptEncryptedConfig = () => { // Identify env vars that begin with "ENCRYPTED_" const encryptedKeys = Object.keys(process.env) .filter((key) => /^ENCRYPTED_/.test(key)) @@ -29,12 +34,11 @@ const loadConfig = async () => { .map(async (key) => { const keyWithoutPrefix = key.replace(/^ENCRYPTED_/, '') const decrypted = await decrypt(process.env[key]) + .catch((e) => { + logger.error(`Load-config: Failed to decrypt ${key}`) + }) logger.debug(`Load-config: Decrypted ${key}`) process.env[keyWithoutPrefix] = decrypted }) ) } - -module.exports = { - loadConfig -} diff --git a/lib/logger.js b/lib/logger.js index e5f5a541..e4195c41 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -1,47 +1,27 @@ const winston = require('winston') -winston.emitErrs = false -// Log Level is set by env 'LOG_LEVEL'. -// If that's not set, it defaults to the level appropriate for NODE_ENV. -// Failing that, it's set to 'debug'. -const logLevel = process.env.LOG_LEVEL || - { - production: 'info', - test: 'error' - }[process.env.NODE_ENV] || 'debug' - -const loggerTransports = [ - new winston.transports.File({ - level: logLevel, - filename: './log/discovery-api.log', - handleExceptions: true, - maxsize: 5242880, // 5MB - maxFiles: 5, - colorize: false, - json: false, - formatter: (options) => { - const outputObject = { - level: options.level.toUpperCase(), - message: options.message, - timestamp: new Date().toISOString() - } - - return JSON.stringify(Object.assign(outputObject, options.meta)) - } - }) -] +const logger = winston.createLogger({ + level: process.env.LOG_LEVEL || 'info', + format: winston.format.json(), + transports: [ + new winston.transports.File({ + filename: './log/discovery-api.log' + }) + ] +}) -loggerTransports.push(new winston.transports.Console({ - level: logLevel, - handleExceptions: true, - json: true, - stringify: true, - colorize: true -})) +// +// If we're not in production then log to the `console` with the format: +// `${info.level}: ${info.message} JSON.stringify({ ...rest }) ` +// +if (process.env.NODE_ENV !== 'production') { + logger.add(new winston.transports.Console({ + format: winston.format.simple() + })) +} -const logger = new winston.Logger({ - transports: loggerTransports, - exitOnError: false -}) +logger.setLevel = (level) => { + logger.level = level +} module.exports = logger diff --git a/lib/resources.js b/lib/resources.js index a9108d94..487f05be 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -263,8 +263,7 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#findByUri', body) return app.esClient.search(body) .then((resp) => { - // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body // Mindfully throw errors for known issues: if (!resp || !resp.hits) { @@ -329,8 +328,7 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#itemsByFilter', body) return app.esClient.search(body) .then((resp) => { - // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body if (!resp || !resp.hits || resp.hits.total === 0) return Promise.reject(new Error('No matching items')) resp = new LocationLabelUpdater(resp).responseWithUpdatedLabels() @@ -718,8 +716,7 @@ module.exports = function (app, _private = null) { return app.esClient.search(body) .then((resp) => { - // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body const massagedResponse = new ResponseMassager(resp) return massagedResponse.massagedResponse(request) @@ -755,8 +752,7 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#aggregations:', body) return app.esClient.search(body) .then((resp) => { - // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body // Transform response slightly before serialization: resp.aggregations = Object.keys(resp.aggregations) @@ -802,8 +798,7 @@ module.exports = function (app, _private = null) { app.logger.debug('Resources#aggregation:', body) return app.esClient.search(body) .then((resp) => { - // ES 6.8 differs from ES 5.3 by nesting the old response in resp.body: - resp = resp.body || {} + resp = resp.body // If it's nested, it will be in our special '_nested' prop: resp = resp.aggregations[params.field]._nested || resp.aggregations[params.field] diff --git a/package-lock.json b/package-lock.json index 1567d679..c4834c9e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "MIT", "dependencies": { "@elastic/elasticsearch": "~7.12.0", - "@nypl/nypl-core-objects": "2.1.1", + "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.1", "@nypl/scsb-rest-client": "1.0.6", "config": "1.12.0", @@ -23,7 +23,7 @@ "ramda": "^0.21.0", "request": "2.88.2", "string_score": "^0.1.22", - "winston": "2.3.1" + "winston": "3.12.0" }, "devDependencies": { "aws-sdk": "^2.1137.0", @@ -36,7 +36,7 @@ "qs": "^6.5.1", "request-promise": "^4.1.1", "should": "^7.0.2", - "sinon": "^4.3.0", + "sinon": "^17.0.1", "standard": "^17.0.1" } }, @@ -56,6 +56,16 @@ "node": ">=0.1.90" } }, + "node_modules/@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "dependencies": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, "node_modules/@elastic/elasticsearch": { "version": "7.12.0", "resolved": "https://registry.npmjs.org/@elastic/elasticsearch/-/elasticsearch-7.12.0.tgz", @@ -263,9 +273,9 @@ } }, "node_modules/@nypl/nypl-core-objects": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@nypl/nypl-core-objects/-/nypl-core-objects-2.1.1.tgz", - "integrity": "sha512-WqWyFJTRCeVPgK9wKB6hNDExMeWKRow7TSAAbnotCVRrEjdsEHbfe1BXtDfi6G9FrFbKlEID5TT1YNS4KK6gfw==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@nypl/nypl-core-objects/-/nypl-core-objects-2.3.2.tgz", + "integrity": "sha512-5IRW6y/kv6Oh82nnLaSDMjJj3rKSG+YhVum5LsY/2Heoq3Jve+p31Et9DvymgqaZNldSADRTR2GPwdfovOiCVg==", "dependencies": { "csv": "^5.3.2", "csv-stringify": "^5.6.0", @@ -382,35 +392,48 @@ } }, "node_modules/@sinonjs/commons": { - "version": "1.8.6", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, - "node_modules/@sinonjs/formatio": { - "version": "2.0.0", + "node_modules/@sinonjs/fake-timers": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz", + "integrity": "sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "samsam": "1.3.0" + "@sinonjs/commons": "^3.0.0" } }, "node_modules/@sinonjs/samsam": { - "version": "3.3.3", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "@sinonjs/commons": "^1.3.0", - "array-from": "^2.1.1", - "lodash": "^4.17.15" + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" } }, "node_modules/@sinonjs/text-encoding": { "version": "0.7.2", - "dev": true, - "license": "(Unlicense OR Apache-2.0)" + "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", + "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", + "dev": true }, "node_modules/@types/concat-stream": { "version": "1.6.1", @@ -444,6 +467,11 @@ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.12.tgz", "integrity": "sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg==" }, + "node_modules/@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" + }, "node_modules/@ungap/structured-clone": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", @@ -604,11 +632,6 @@ "version": "1.1.1", "license": "MIT" }, - "node_modules/array-from": { - "version": "2.1.1", - "dev": true, - "license": "MIT" - }, "node_modules/array-includes": { "version": "3.1.7", "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", @@ -1282,9 +1305,17 @@ "node": ">=0.10.0" } }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, "node_modules/color-convert": { "version": "1.9.3", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -1292,9 +1323,17 @@ }, "node_modules/color-name": { "version": "1.1.3", - "dev": true, "license": "MIT" }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "node_modules/colors": { "version": "1.0.3", "license": "MIT", @@ -1302,6 +1341,15 @@ "node": ">=0.1.90" } }, + "node_modules/colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, "node_modules/combined-stream": { "version": "1.0.8", "license": "MIT", @@ -1708,6 +1756,11 @@ "dev": true, "license": "MIT" }, + "node_modules/enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + }, "node_modules/encodeurl": { "version": "1.0.2", "license": "MIT", @@ -2855,6 +2908,11 @@ "reusify": "^1.0.4" } }, + "node_modules/fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" + }, "node_modules/figures": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", @@ -2964,6 +3022,11 @@ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, + "node_modules/fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" + }, "node_modules/follow-redirects": { "version": "1.15.2", "dev": true, @@ -3830,6 +3893,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-string": { "version": "1.0.7", "dev": true, @@ -4121,9 +4195,10 @@ } }, "node_modules/just-extend": { - "version": "4.2.1", - "dev": true, - "license": "MIT" + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz", + "integrity": "sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==", + "dev": true }, "node_modules/just-flatten": { "version": "1.0.0", @@ -4138,6 +4213,11 @@ "json-buffer": "3.0.1" } }, + "node_modules/kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" + }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", @@ -4194,8 +4274,9 @@ }, "node_modules/lodash.get": { "version": "4.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", @@ -4249,6 +4330,30 @@ "node": ">=4" } }, + "node_modules/logform": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz", + "integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==", + "dependencies": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/logform/node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", + "engines": { + "node": ">=0.1.90" + } + }, "node_modules/loglevel": { "version": "1.8.1", "license": "MIT", @@ -4264,11 +4369,6 @@ "version": "0.5.3", "license": "MIT" }, - "node_modules/lolex": { - "version": "2.7.5", - "dev": true, - "license": "BSD-3-Clause" - }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -4554,46 +4654,23 @@ "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, "node_modules/nise": { - "version": "1.5.3", + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz", + "integrity": "sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/formatio": "^3.2.1", - "@sinonjs/text-encoding": "^0.7.1", - "just-extend": "^4.0.2", - "lolex": "^5.0.1", - "path-to-regexp": "^1.7.0" - } - }, - "node_modules/nise/node_modules/@sinonjs/formatio": { - "version": "3.2.2", - "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "@sinonjs/commons": "^1", - "@sinonjs/samsam": "^3.1.0" - } - }, - "node_modules/nise/node_modules/isarray": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/nise/node_modules/lolex": { - "version": "5.1.2", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^1.7.0" + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^11.2.2", + "@sinonjs/text-encoding": "^0.7.2", + "just-extend": "^6.2.0", + "path-to-regexp": "^6.2.1" } }, "node_modules/nise/node_modules/path-to-regexp": { - "version": "1.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "0.0.1" - } + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true }, "node_modules/node-cache": { "version": "4.2.1", @@ -5160,6 +5237,14 @@ "wrappy": "1" } }, + "node_modules/one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "dependencies": { + "fn.name": "1.x.x" + } + }, "node_modules/onetime": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", @@ -5510,6 +5595,30 @@ "version": "3.2.3", "license": "MIT" }, + "node_modules/prompt/node_modules/winston": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz", + "integrity": "sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==", + "dependencies": { + "async": "^2.6.4", + "colors": "1.0.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "stack-trace": "0.0.x" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/prompt/node_modules/winston/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dependencies": { + "lodash": "^4.17.14" + } + }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", @@ -5982,16 +6091,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } + }, "node_modules/safer-buffer": { "version": "2.1.2", "license": "MIT" }, - "node_modules/samsam": { - "version": "1.3.0", - "deprecated": "This package has been deprecated in favour of @sinonjs/samsam", - "dev": true, - "license": "BSD-3-Clause" - }, "node_modules/sax": { "version": "1.2.1", "dev": true, @@ -6159,30 +6270,44 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/sinon": { - "version": "4.5.0", - "dev": true, - "hasInstallScript": true, - "license": "BSD-3-Clause", + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", "dependencies": { - "@sinonjs/formatio": "^2.0.0", - "diff": "^3.1.0", - "lodash.get": "^4.4.2", - "lolex": "^2.2.0", - "nise": "^1.2.0", - "supports-color": "^5.1.0", - "type-detect": "^4.0.5" + "is-arrayish": "^0.3.1" } }, - "node_modules/sinon/node_modules/supports-color": { - "version": "5.5.0", + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/sinon": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.1.tgz", + "integrity": "sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^11.2.2", + "@sinonjs/samsam": "^8.0.0", + "diff": "^5.1.0", + "nise": "^5.1.5", + "supports-color": "^7.2.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon/node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=0.3.1" } }, "node_modules/slice-ansi": { @@ -6625,6 +6750,11 @@ "node": ">=0.8.0" } }, + "node_modules/text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -6665,6 +6795,14 @@ "node": ">=0.8" } }, + "node_modules/triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", + "engines": { + "node": ">= 14.0.0" + } + }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", @@ -7043,23 +7181,77 @@ } }, "node_modules/winston": { - "version": "2.3.1", - "license": "MIT", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.12.0.tgz", + "integrity": "sha512-OwbxKaOlESDi01mC9rkM0dQqQt2I8DAUMRLZ/HpbwvDXm85IryEHgoogy5fziQy38PntgZsLlhAYHz//UPHZ5w==", "dependencies": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.4.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.7.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.0.tgz", + "integrity": "sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==", + "dependencies": { + "logform": "^2.3.2", + "readable-stream": "^3.6.0", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/winston-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/winston/node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", + "engines": { + "node": ">=0.1.90" } }, "node_modules/winston/node_modules/async": { - "version": "1.0.0", - "license": "MIT" + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/winston/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } }, "node_modules/word-wrap": { "version": "1.2.5", diff --git a/package.json b/package.json index d7c5d81a..8decca7a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "analyze": true, "author": "NYPL Digital", "dependencies": { - "@nypl/nypl-core-objects": "2.1.1", + "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.1", "@nypl/scsb-rest-client": "1.0.6", "config": "1.12.0", @@ -16,7 +16,7 @@ "ramda": "^0.21.0", "request": "2.88.2", "string_score": "^0.1.22", - "winston": "2.3.1" + "winston": "3.12.0" }, "devDependencies": { "aws-sdk": "^2.1137.0", @@ -29,12 +29,12 @@ "qs": "^6.5.1", "request-promise": "^4.1.1", "should": "^7.0.2", - "sinon": "^4.3.0", + "sinon": "^17.0.1", "standard": "^17.0.1" }, "scripts": { "test": "./node_modules/.bin/standard --env mocha && NODE_ENV=test ./node_modules/.bin/mocha test --exit", - "start": "node app.js", + "start": "node server.js", "deploy-development": "git checkout development && git pull origin development && eb deploy discovery-api-dev --profile nypl-sandbox", "deploy-qa": "git checkout qa && git pull origin qa && eb deploy discovery-api-qa --profile nypl-digital-dev", "deploy-production": "git checkout production && git pull origin qa && eb deploy discovery-api-production --profile nypl-digital-dev", diff --git a/test/aggregations.test.js b/test/aggregations.test.js deleted file mode 100644 index 83d1bf83..00000000 --- a/test/aggregations.test.js +++ /dev/null @@ -1,36 +0,0 @@ -const request = require('request-promise') -const assert = require('assert') - -const fixtures = require('./fixtures') - -describe('Aggregations response', function () { - this.timeout(10000) - - before(function () { - fixtures.enableEsFixtures() - }) - - after(function () { - fixtures.disableEsFixtures() - }) - - const requestPath = '/api/v0.1/discovery/resources/aggregations?q=hamilton&search_scope=all' - // This is a bad test. - // * It's super dependent on our index at the time of writing. - // * It talks to the network - // * It tests functionality in that should probably go into a Serializer unit test - // That said - it's what I have to fix this regession: - // https://github.com/NYPL-discovery/discovery-api/issues/45 - it('should unpack fields', function (done) { - request.get(`${global.TEST_BASE_URL}${requestPath}`, function (err, response, body) { - if (err) throw err - assert.equal(200, response.statusCode) - const doc = JSON.parse(body) - const values = doc.itemListElement[0].values - expect(values.length).to.be.above(0) - expect(values[0].value).to.equal('orgs:1000') - expect(values[0].label).to.equal('Stephen A. Schwarzman Building') - done() - }) - }) -}) diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index e8ab9b20..8529b021 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -151,7 +151,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocation for LPA or SC only deliverable items, patron is scholar type', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteOnlySchomburg], 'mala').then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) // Confirm the known scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -162,7 +162,7 @@ describe('Delivery-locations-resolver', function () { it('will return empty delivery locations for an unrequestable onsite location code', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteNypl]).then((items) => { - expect(items[0].deliveryLocation).to.be.empty() + expect(items[0].deliveryLocation).to.have.lengthOf(0) }) }) @@ -174,7 +174,7 @@ describe('Delivery-locations-resolver', function () { it('will ammend the deliveryLocation property for an offsite NYPL item', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNypl]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) }) }) @@ -186,7 +186,7 @@ describe('Delivery-locations-resolver', function () { it('will ammend the deliveryLocation property for a PUL item', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.pul]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) }) }) @@ -210,7 +210,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocation for non-scholars', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) // Confirm the known scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -238,13 +238,13 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([offsiteItemInNonRequestableLocation]) .then((items) => { expect(items[0].deliveryLocation).to.be.a('array') - expect(items[0].deliveryLocation).to.be.empty() + expect(items[0].deliveryLocation).to.have.lengthOf(0) }) }) it('will reveal specific scholar room deliveryLocation when specified', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms], 'mal17').then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) // Confirm the non specified scholar rooms are not included: scholarRooms.forEach((scholarRoom) => { @@ -257,7 +257,7 @@ describe('Delivery-locations-resolver', function () { it('will hide "Scholar" deliveryLocations for scholars with no specific scholar room', function () { return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.offsiteNyplDeliverableToScholarRooms]).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) // Confirm that all scholar rooms are included: scholarRooms.forEach((scholarRoom) => { @@ -353,19 +353,22 @@ describe('Delivery-locations-resolver', function () { describe('attachDeliveryLocationsAndEddRequestability - romcom', () => { before(takeThisPartyPartiallyOffline) + const requestableM2Location = 'map92' const requestableM1Location = 'map82' const nonrequestableM2Location = 'ccj92' const unrequestableM2CustomerCode = 'EM' + it('will return delivery locations for an requestable M1 item', function () { const items = [{ uri: 'b123', holdingLocation: [{ id: requestableM1Location }] }] return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability(items).then((items) => { - expect(items[0].deliveryLocation).to.not.be.empty() + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) }) }) + it('returns delivery locations for requestable M2 items', () => { const items = [{ uri: 'b123', @@ -396,7 +399,7 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver .attachDeliveryLocationsAndEddRequestability(items) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty() + expect(items[0].deliveryLocation).to.have.lengthOf(0) }) }) @@ -409,7 +412,7 @@ describe('Delivery-locations-resolver', function () { return DeliveryLocationsResolver .attachDeliveryLocationsAndEddRequestability(items) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty() + expect(items[0].deliveryLocation).to.have.lengthOf(0) }) }) @@ -480,7 +483,7 @@ describe('Delivery-locations-resolver', function () { } expect(DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([item]) .then((items) => { - expect(items[0].deliveryLocation).to.be.empty() + expect(items[0].deliveryLocation).to.deep.equal([]) })) }) }) diff --git a/test/fixtures.js b/test/fixtures.js index 36fe6e38..a7af4164 100644 --- a/test/fixtures.js +++ b/test/fixtures.js @@ -34,7 +34,9 @@ function esClientSearchViaFixtures (properties) { missingFixturePaths += 1 return reject(err) } - + if (process.env.DEBUG_FIXTURES) { + console.log('Using fixture size ' + content.length + 'b') + } return resolve(JSON.parse(content)) }) }) @@ -50,6 +52,10 @@ function esClientSearchViaFixtures (properties) { * process.env.UPDATE_FIXTURES = 'if-missing' */ function writeEsResponseToFixture (properties, resp) { + // Get rid fo useless extras: + delete resp.headers + delete resp.meta + const path = esFixturePath(properties) return new Promise((resolve, reject) => { fs.writeFile(path, JSON.stringify(resp, null, 2), (err, res) => { @@ -272,7 +278,7 @@ function enableDataApiFixtures (pathToFixtureMap) { // Override app's _doAuthenticatedRequest call to return fixtures for specific paths, otherwise fail: sinon.stub(dataApiClient, '_doAuthenticatedRequest').callsFake(function (requestOptions) { // Get relative api path: (e.g. 'patrons/1234') - const requestPath = new url.URL(requestOptions.uri).path.replace('/api/v0.1/', '') + const requestPath = new url.URL(requestOptions.uri).pathname.replace('/api/v0.1/', '') if (pathToFixtureMap[requestPath]) { const content = fs.readFileSync(path.join('./test/fixtures/', pathToFixtureMap[requestPath]), 'utf8') return Promise.resolve(JSON.parse(content)) diff --git a/test/fixtures/es-response-b1234-just-non-recap-statuses.json b/test/fixtures/es-response-b1234-just-non-recap-statuses.json index 686902de..1e58da41 100644 --- a/test/fixtures/es-response-b1234-just-non-recap-statuses.json +++ b/test/fixtures/es-response-b1234-just-non-recap-statuses.json @@ -1,32 +1,34 @@ { - "took": 11, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 0.0, - "hits": [] - }, - "aggregations": { - "statuses": { - "doc_count": 4, - "nonrecap_statuses": { - "doc_count": 2, - "nonrecap_status_buckets": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 2 - } - ] + "body": { + "took": 11, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 0.0, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 4, + "nonrecap_statuses": { + "doc_count": 2, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 2 + } + ] + } } } } } -} \ No newline at end of file +} diff --git a/test/fixtures/es-response-b1234-recap-statuses.json b/test/fixtures/es-response-b1234-recap-statuses.json index a4314add..f7790ba7 100644 --- a/test/fixtures/es-response-b1234-recap-statuses.json +++ b/test/fixtures/es-response-b1234-recap-statuses.json @@ -336,4 +336,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json b/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json index bbb5cf24..3906effd 100644 --- a/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json +++ b/test/fixtures/query-0063c9c99940d2fb617ace9ec6ae975b.json @@ -1,325 +1,373 @@ { - "took": 18, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.464135, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10628074", - "_score": 15.464135, - "_source": { - "extent": [ - "387 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Diet", - "Diet -- Great Britain", - "Food consumption", - "Food consumption -- Great Britain" - ], - "publisherLiteral": [ - "Scolar Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." - ], - "shelfMark": [ - "JLD 80-944" - ], - "creatorLiteral": [ - "Burnett, John, 1925-" - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "79322081" - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLD 80-944" - }, - { - "type": "nypl:Bnumber", - "value": "10628074" - }, - { - "type": "bf:Isbn", - "value": "0859674614 :" - }, - { - "type": "bf:Lccn", - "value": "79322081" - }, - { - "type": "nypl:Oclc", - "value": "5330384" - }, - { - "type": "nypl:Oclc", - "value": "5330384" - }, - { - "type": "bf:Identifier", - "value": "NN804170330" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0633800" + "body": { + "took": 7, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.5077095, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10628074", + "_score": 15.5077095, + "_source": { + "extent": [ + "387 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Diet", + "Diet -- Great Britain", + "Food consumption", + "Food consumption -- Great Britain" + ], + "publisherLiteral": [ + "Scolar Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "shelfMark": [ + "JLD 80-944" + ], + "creatorLiteral": [ + "Burnett, John, 1925-" + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "79322081" + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLD 80-944" + }, + { + "type": "nypl:Bnumber", + "value": "10628074" + }, + { + "type": "bf:Isbn", + "value": "0859674614 :" + }, + { + "type": "bf:Lccn", + "value": "79322081" + }, + { + "type": "nypl:Oclc", + "value": "5330384" + }, + { + "type": "nypl:Oclc", + "value": "5330384" + }, + { + "type": "bf:Identifier", + "value": "NN804170330" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0633800" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5330384" + } + ], + "idOclc": [ + "5330384" + ], + "updatedAt": 1659164805775, + "publicationStatement": [ + "London : Scolar Press, 1979." + ], + "identifier": [ + "urn:bnum:10628074", + "urn:isbn:0859674614 :", + "urn:lccn:79322081", + "urn:oclc:5330384", + "urn:undefined:NN804170330", + "urn:undefined:(WaOLN)nyp0633800", + "urn:undefined:(OCoLC)5330384" + ], + "idIsbn": [ + "0859674614 " + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "titleDisplay": [ + "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." + ], + "uri": "b10628074", + "lccClassification": [ + "TX360.G7 B8 1979" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0859674614" + ], + "dimensions": [ + "21 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5330384" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i15761885", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JLD 80-944" + ], + "identifierV2": [ + { + "value": "JLD 80-944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433080108636" + } + ], + "physicalLocation": [ + "JLD 80-944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433080108636" + ], + "idBarcode": [ + "33433080108636" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "aJLD 80-000944" + }, + "sort": [ + null + ] + } + ] + } } - ], - "idOclc": [ - "5330384" - ], - "updatedAt": 1659164805775, - "publicationStatement": [ - "London : Scolar Press, 1979." - ], - "identifier": [ - "urn:bnum:10628074", - "urn:isbn:0859674614 :", - "urn:lccn:79322081", - "urn:oclc:5330384", - "urn:undefined:NN804170330", - "urn:undefined:(WaOLN)nyp0633800", - "urn:undefined:(OCoLC)5330384" - ], - "idIsbn": [ - "0859674614 " - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "loc:rc2ma||Offsite", + "doc_count": 1 } - ], - "subjectLiteral": [ - "Diet -- Great Britain.", - "Food consumption -- Great Britain." - ], - "titleDisplay": [ - "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." - ], - "uri": "b10628074", - "lccClassification": [ - "TX360.G7 B8 1979" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 1 } - ], - "idIsbn_clean": [ - "0859674614" - ], - "dimensions": [ - "21 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i15761885", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLD 80-944" - ], - "identifierV2": [ - { - "value": "JLD 80-944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433080108636" - } - ], - "physicalLocation": [ - "JLD 80-944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433080108636" - ], - "idBarcode": [ - "33433080108636" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJLD 80-000944" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "3891", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10628074\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 24 }, - "item_format": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-01ec8ac20d4caf1a8fff0b2efeda21dc.json b/test/fixtures/query-01ec8ac20d4caf1a8fff0b2efeda21dc.json deleted file mode 100644 index 726b76c1..00000000 --- a/test/fixtures/query-01ec8ac20d4caf1a8fff0b2efeda21dc.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 290, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.905142, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.905142, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json b/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json index 8e2356c6..55d4c5d9 100644 --- a/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json +++ b/test/fixtures/query-031480faa31b9e8451ac1dfc46e9c2c3.json @@ -1,982 +1,1030 @@ { - "took": 10, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.919557, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b14937001", - "_score": 14.919557, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", - "type": "bf:Note" + "body": { + "took": 35, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.996885, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 14.996885, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1" + ], + "createdYear": [ + 1855 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "idOclc": [ + "1608345" + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1671729582968, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:bnum:14937001", + "urn:lccn:cau08001961", + "urn:oclc:1608345", + "urn:undefined:0494254", + "urn:undefined:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi14937001-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i14937001-e", + "formatLiteral": [ + "Text" + ] + } + } + ] + } }, - { - "noteType": "Note", - "label": "Kunst-blatt. Stuttgart, 1816-1849.", - "type": "bf:Note" + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } + } + ] + } }, - { - "noteType": "Supplement", - "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. G. Cotta'sche buchhandlung." - ], - "language": [ - { - "id": "lang:ger", - "label": "German" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097964930" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1" - ], - "createdYear": [ - 1855 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Morgenblatt für gebildete leser." - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1855" - ], - "idLccn": [ - "cau08001961" - ], - "numElectronicResources": [ - 88 - ], - "dateStartYear": [ - 1855 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DF+ (Morgenblatt für gebildete Leser)" - }, - { - "type": "nypl:Bnumber", - "value": "14937001" - }, - { - "type": "bf:Lccn", - "value": "cau08001961" - }, - { - "type": "nypl:Oclc", - "value": "1608345" - }, + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "type": "bf:Identifier", - "value": "0494254" + "key": "loc:rc2ma||Offsite", + "doc_count": 3 }, { - "type": "bf:Identifier", - "value": "(WaOLN)ret0001042" + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 } - ], - "idOclc": [ - "1608345" - ], - "dateEndYear": [ - 1 - ], - "updatedAt": 1671729582968, - "publicationStatement": [ - "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." - ], - "identifier": [ - "urn:bnum:14937001", - "urn:lccn:cau08001961", - "urn:oclc:1608345", - "urn:undefined:0494254", - "urn:undefined:(WaOLN)ret0001042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1855" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 5 } - ], - "titleDisplay": [ - "Morgenblatt für gebildete leser." - ], - "uri": "b14937001", - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Stuttgart, Tübingen [etc.]" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:s", - "label": "serial" + "key": "status:a||Available", + "doc_count": 4 } ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi14937001-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899526k" - }, - { - "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899527i" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899528g" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899529e" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899530t" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899531r" - }, - { - "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", - "url": "http://hdl.handle.net/2027/umn.31951001899532p" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899534l" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899535j" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899536h" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899537f" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899538d" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899539b" - }, - { - "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", - "url": "http://hdl.handle.net/2027/umn.31951001899541o" - }, - { - "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", - "url": "http://hdl.handle.net/2027/umn.31951001899542m" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899505s" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899506q" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899544i" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899545g" - }, - { - "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", - "url": "http://hdl.handle.net/2027/umn.31951001899547c" - }, - { - "label": "Full text available via HathiTrust - jahrg.22 (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899548a" - }, - { - "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899620s" - }, - { - "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", - "url": "http://hdl.handle.net/2027/umn.31951001899550n" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899551l" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899552j" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899624k" - }, - { - "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", - "url": "http://hdl.handle.net/2027/umn.31951001899554f" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899555d" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899556b" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995587" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995595" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899560k" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899561i" - }, - { - "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", - "url": "http://hdl.handle.net/2027/umn.31951001899563e" - }, - { - "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", - "url": "http://hdl.handle.net/2027/umn.31951001899641k" - }, - { - "label": "Full text available via HathiTrust - jahrg.33 (1839)", - "url": "http://hdl.handle.net/2027/umn.319510018995668" - }, - { - "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", - "url": "http://hdl.handle.net/2027/umn.31951001899642i" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899645c" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899646a" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", - "url": "http://hdl.handle.net/2027/umn.319510018995692" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", - "url": "http://hdl.handle.net/2027/umn.31951001899571f" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899572d" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899573b" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", - "url": "http://hdl.handle.net/2027/umn.319510018995749" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", - "url": "http://hdl.handle.net/2027/umn.31951p01107664f" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", - "url": "http://hdl.handle.net/2027/umn.319510018995765" - }, - { - "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", - "url": "http://hdl.handle.net/2027/umn.319510018995781" - }, - { - "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", - "url": "http://hdl.handle.net/2027/umn.31951001899509k" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", - "url": "http://hdl.handle.net/2027/umn.31951001899582a" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", - "url": "http://hdl.handle.net/2027/umn.319510018995838" - }, - { - "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", - "url": "http://hdl.handle.net/2027/umn.31951001899589w" - }, - { - "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", - "url": "http://hdl.handle.net/2027/umn.31951001899590b" - }, - { - "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", - "url": "http://hdl.handle.net/2027/umn.31951001899599t" - }, - { - "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", - "url": "http://hdl.handle.net/2027/umn.31951001899512v" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899600y" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899601w" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899602u" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899603s" - }, - { - "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", - "url": "http://hdl.handle.net/2027/umn.31951001899605o" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899606m" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899607k" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899608i" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899609g" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899610v" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899611t" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899612r" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899613p" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899614n" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899615l" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899616j" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899617h" - }, - { - "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", - "url": "http://hdl.handle.net/2027/umn.31951001899619d" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899513t" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899514r" - }, - { - "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", - "url": "http://hdl.handle.net/2027/umn.31951001899516n" - }, - { - "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", - "url": "http://hdl.handle.net/2027/umn.31951001899521u" - }, - { - "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054677" - }, - { - "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054701" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054743" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054768" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054776" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054800" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054818" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054826" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054834" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054842" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054859" - }, - { - "label": "Full text available via HathiTrust - vol.40 (1846)", - "url": "http://hdl.handle.net/2027/njp.32101064488156" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i14937001-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433097964930" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - null - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": 4, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - } - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - } - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - } - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 3 - }, - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19344", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14937001\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"terms\":{\"items.formatLiteral\":[\"Text\"]}},{\"terms\":{\"items.holdingLocation.id\":[\"loc:mal92\"]}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1164" + }, + "timeout": 30000 + }, + "options": {}, + "id": 17 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-0600618a472f03915c357c47f7252b21.json b/test/fixtures/query-0600618a472f03915c357c47f7252b21.json index f450353e..10bce84e 100644 --- a/test/fixtures/query-0600618a472f03915c357c47f7252b21.json +++ b/test/fixtures/query-0600618a472f03915c357c47f7252b21.json @@ -1,983 +1,1031 @@ { - "took": 6, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.920464, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b14937001", - "_score": 14.920464, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Kunst-blatt. Stuttgart, 1816-1849.", - "type": "bf:Note" + "body": { + "took": 9, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.996885, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 14.996885, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1" + ], + "createdYear": [ + 1855 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "idOclc": [ + "1608345" + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1671729582968, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:bnum:14937001", + "urn:lccn:cau08001961", + "urn:oclc:1608345", + "urn:undefined:0494254", + "urn:undefined:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi14937001-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i14937001-e", + "formatLiteral": [ + "Text" + ] + } + } + ] + } }, - { - "noteType": "Supplement", - "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. G. Cotta'sche buchhandlung." - ], - "language": [ - { - "id": "lang:ger", - "label": "German" + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097964930" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1" - ], - "createdYear": [ - 1855 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Morgenblatt für gebildete leser." - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1855" - ], - "idLccn": [ - "cau08001961" - ], - "numElectronicResources": [ - 88 - ], - "dateStartYear": [ - 1855 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DF+ (Morgenblatt für gebildete Leser)" - }, - { - "type": "nypl:Bnumber", - "value": "14937001" - }, - { - "type": "bf:Lccn", - "value": "cau08001961" - }, - { - "type": "nypl:Oclc", - "value": "1608345" - }, + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "type": "bf:Identifier", - "value": "0494254" + "key": "loc:rc2ma||Offsite", + "doc_count": 3 }, { - "type": "bf:Identifier", - "value": "(WaOLN)ret0001042" - } - ], - "idOclc": [ - "1608345" - ], - "dateEndYear": [ - 1 - ], - "updatedAt": 1671729582968, - "publicationStatement": [ - "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." - ], - "identifier": [ - "urn:bnum:14937001", - "urn:lccn:cau08001961", - "urn:oclc:1608345", - "urn:undefined:0494254", - "urn:undefined:(WaOLN)ret0001042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 } - ], - "dateString": [ - "1855" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 5 } - ], - "titleDisplay": [ - "Morgenblatt für gebildete leser." - ], - "uri": "b14937001", - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Stuttgart, Tübingen [etc.]" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:s", - "label": "serial" + "key": "status:a||Available", + "doc_count": 4 } ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi14937001-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899526k" - }, - { - "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899527i" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899528g" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899529e" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899530t" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899531r" - }, - { - "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", - "url": "http://hdl.handle.net/2027/umn.31951001899532p" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899534l" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899535j" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899536h" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899537f" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899538d" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899539b" - }, - { - "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", - "url": "http://hdl.handle.net/2027/umn.31951001899541o" - }, - { - "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", - "url": "http://hdl.handle.net/2027/umn.31951001899542m" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899505s" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899506q" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899544i" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899545g" - }, - { - "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", - "url": "http://hdl.handle.net/2027/umn.31951001899547c" - }, - { - "label": "Full text available via HathiTrust - jahrg.22 (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899548a" - }, - { - "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899620s" - }, - { - "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", - "url": "http://hdl.handle.net/2027/umn.31951001899550n" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899551l" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899552j" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899624k" - }, - { - "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", - "url": "http://hdl.handle.net/2027/umn.31951001899554f" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899555d" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899556b" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995587" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995595" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899560k" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899561i" - }, - { - "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", - "url": "http://hdl.handle.net/2027/umn.31951001899563e" - }, - { - "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", - "url": "http://hdl.handle.net/2027/umn.31951001899641k" - }, - { - "label": "Full text available via HathiTrust - jahrg.33 (1839)", - "url": "http://hdl.handle.net/2027/umn.319510018995668" - }, - { - "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", - "url": "http://hdl.handle.net/2027/umn.31951001899642i" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899645c" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899646a" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", - "url": "http://hdl.handle.net/2027/umn.319510018995692" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", - "url": "http://hdl.handle.net/2027/umn.31951001899571f" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899572d" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899573b" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", - "url": "http://hdl.handle.net/2027/umn.319510018995749" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", - "url": "http://hdl.handle.net/2027/umn.31951p01107664f" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", - "url": "http://hdl.handle.net/2027/umn.319510018995765" - }, - { - "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", - "url": "http://hdl.handle.net/2027/umn.319510018995781" - }, - { - "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", - "url": "http://hdl.handle.net/2027/umn.31951001899509k" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", - "url": "http://hdl.handle.net/2027/umn.31951001899582a" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", - "url": "http://hdl.handle.net/2027/umn.319510018995838" - }, - { - "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", - "url": "http://hdl.handle.net/2027/umn.31951001899589w" - }, - { - "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", - "url": "http://hdl.handle.net/2027/umn.31951001899590b" - }, - { - "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", - "url": "http://hdl.handle.net/2027/umn.31951001899599t" - }, - { - "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", - "url": "http://hdl.handle.net/2027/umn.31951001899512v" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899600y" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899601w" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899602u" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899603s" - }, - { - "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", - "url": "http://hdl.handle.net/2027/umn.31951001899605o" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899606m" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899607k" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899608i" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899609g" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899610v" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899611t" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899612r" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899613p" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899614n" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899615l" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899616j" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899617h" - }, - { - "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", - "url": "http://hdl.handle.net/2027/umn.31951001899619d" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899513t" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899514r" - }, - { - "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", - "url": "http://hdl.handle.net/2027/umn.31951001899516n" - }, - { - "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", - "url": "http://hdl.handle.net/2027/umn.31951001899521u" - }, - { - "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054677" - }, - { - "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054701" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054743" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054768" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054776" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054800" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054818" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054826" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054834" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054842" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054859" - }, - { - "label": "Full text available via HathiTrust - vol.40 (1846)", - "url": "http://hdl.handle.net/2027/njp.32101064488156" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i14937001-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433097964930" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "formatLiteral": [ - "Text" - ] - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 3 - }, - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:54 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19331", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14937001\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 13 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-0868de6b598fcf3b6c79d7f478450082.json b/test/fixtures/query-0868de6b598fcf3b6c79d7f478450082.json new file mode 100644 index 00000000..0e98f837 --- /dev/null +++ b/test/fixtures/query-0868de6b598fcf3b6c79d7f478450082.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 87, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.007645, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.007645, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Sudoc no. \\\\-\\\\- 086\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"Sudoc no. \\\\-\\\\- 086\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"Sudoc no. \\\\-\\\\- 086\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1081" + }, + "timeout": 30000 + }, + "options": {}, + "id": 67 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-08c981967257e7283e3b3da246e2c5b7.json b/test/fixtures/query-08c981967257e7283e3b3da246e2c5b7.json deleted file mode 100644 index c7b61ed1..00000000 --- a/test/fixtures/query-08c981967257e7283e3b3da246e2c5b7.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 73, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.907039, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.907039, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json b/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json index 9d359097..059359aa 100644 --- a/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json +++ b/test/fixtures/query-0b98a0d1eaa3f1e2e9ebcea053c46482.json @@ -1,686 +1,734 @@ { - "took": 6, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.460481, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011374", - "_score": 15.460481, - "_source": { - "extent": [ - "2 v. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Library's copy lacks added t.p.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Published for W. Hone, by Hunt and Clarke" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1828" - ], - "createdYear": [ - 1827 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The table book" - ], - "shelfMark": [ - "JFE 86-498" - ], - "numItemVolumesParsed": [ - 4 - ], - "creatorLiteral": [ - "Hone, William, 1780-1842." - ], - "createdString": [ - "1827" - ], - "idLccn": [ - "35038534" - ], - "numElectronicResources": [ - 4 - ], - "dateStartYear": [ - 1827 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498" - }, - { - "type": "nypl:Bnumber", - "value": "10011374" - }, - { - "type": "bf:Lccn", - "value": "35038534" - }, - { - "type": "nypl:Oclc", - "value": "NYPG012000337-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213343" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211346" - } - ], - "idOclc": [ - "NYPG012000337-B" - ], - "dateEndYear": [ - 1828 - ], - "updatedAt": 1671716548227, - "publicationStatement": [ - "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." - ], - "identifier": [ - "urn:bnum:10011374", - "urn:lccn:35038534", - "urn:oclc:NYPG012000337-B", - "urn:undefined:NNSZ01213343", - "urn:undefined:(WaOLN)nyp0211346" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1827" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The table book, by William Hone." - ], - "uri": "b10011374", - "lccClassification": [ - "AC4 .H65" - ], - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi10011374-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://hdl.handle.net/2027/nyp.33433057532081" - }, - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://hdl.handle.net/2027/nyp.33433057532339" - }, - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://hdl.handle.net/2027/nyp.33433067332548" - }, - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://hdl.handle.net/2027/nyp.33433067332555" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i10011374-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } + "body": { + "took": 9, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.555761, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011374", + "_score": 15.555761, + "_source": { + "extent": [ + "2 v. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1828" + ], + "createdYear": [ + 1827 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The table book" + ], + "shelfMark": [ + "JFE 86-498" + ], + "numItemVolumesParsed": [ + 4 + ], + "creatorLiteral": [ + "Hone, William, 1780-1842." + ], + "createdString": [ + "1827" + ], + "idLccn": [ + "35038534" + ], + "numElectronicResources": [ + 4 + ], + "dateStartYear": [ + 1827 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "idOclc": [ + "NYPG012000337-B" + ], + "dateEndYear": [ + 1828 + ], + "updatedAt": 1671716548227, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:bnum:10011374", + "urn:lccn:35038534", + "urn:oclc:NYPG012000337-B", + "urn:undefined:NNSZ01213343", + "urn:undefined:(WaOLN)nyp0211346" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "lccClassification": [ + "AC4 .H65" + ], + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433057532339" - ], - "physicalLocation": [ - "JFE 86-498" - ], - "shelfMark_sort": "aJFE 86-498 v. 000002", - "m2CustomerCode": [ - "XF" - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi10011374-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i10011374-e", + "formatLiteral": [ + "Text" + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057532339" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-498 v. 000002", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785802", + "shelfMark": [ + "JFE 86-498 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057532339" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057532339" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 2-" - ], - "type": [ - "bf:Item" - ], - "uri": "i13785802", - "shelfMark": [ - "JFE 86-498 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057532339" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057532339" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433067332555" - ], - "physicalLocation": [ - "*AY (Hone, W. Table book)" - ], - "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433067332555" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747243", + "shelfMark": [ + "*AY (Hone, W. Table book) v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book) v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433067332555" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433067332555" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 2-" - ], - "type": [ - "bf:Item" - ], - "uri": "i14747243", - "shelfMark": [ - "*AY (Hone, W. Table book) v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*AY (Hone, W. Table book) v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433067332555" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433067332555" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433057532081" - ], - "physicalLocation": [ - "JFE 86-498" - ], - "shelfMark_sort": "aJFE 86-498 v. 000001", - "m2CustomerCode": [ - "XF" - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057532081" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-498 v. 000001", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005487", + "shelfMark": [ + "JFE 86-498 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057532081" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057532081" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 1-" - ], - "type": [ - "bf:Item" - ], - "uri": "i10005487", - "shelfMark": [ - "JFE 86-498 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057532081" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057532081" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 1-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433067332548" - ], - "physicalLocation": [ - "*AY (Hone, W. Table book)" - ], - "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433067332548" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005488", + "shelfMark": [ + "*AY (Hone, W. Table book) v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book) v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433067332548" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433067332548" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 1-" - ], - "type": [ - "bf:Item" - ], - "uri": "i10005488", - "shelfMark": [ - "*AY (Hone, W. Table book) v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*AY (Hone, W. Table book) v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433067332548" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433067332548" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "formatLiteral": [ - "Text" ] - }, - "sort": [ - " 1-" - ] - } - ] + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 2 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 5 + } + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 2 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 2 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:56 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "8317", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10011374\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 30 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-0c87674e2eea7f4714de92f52fc285b5.json b/test/fixtures/query-0c87674e2eea7f4714de92f52fc285b5.json deleted file mode 100644 index 1143130f..00000000 --- a/test/fixtures/query-0c87674e2eea7f4714de92f52fc285b5.json +++ /dev/null @@ -1,14078 +0,0 @@ -{ - "took": 1054, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 13319664, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000005", - "_score": null, - "_source": { - "extent": [ - "1 score (43 p.) + 1 part (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Acc. arr. for piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Soch. 22\"--Caption.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: 11049.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Concertos (Violin)", - "Concertos (Violin) -- Solo with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muzyka" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" - ], - "shelfMark": [ - "JMF 83-336" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wieniawski, Henri, 1835-1880." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-336" - }, - { - "type": "nypl:Bnumber", - "value": "10000005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-C" - }, - { - "type": "bf:Identifier", - "value": "11049. Muzyka" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100551" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200004" - } - ], - "idOclc": [ - "NYPG001000001-C" - ], - "uniformTitle": [ - "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Moskva : Muzyka, 1980." - ], - "identifier": [ - "urn:bnum:10000005", - "urn:oclc:NYPG001000001-C", - "urn:undefined:11049. Muzyka", - "urn:undefined:NNSZ00100551", - "urn:undefined:(WaOLN)nyp0200004" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Concertos (Violin) -- Solo with piano." - ], - "titleDisplay": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." - ], - "uri": "b10000005", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Concertos, no. 2, op. 22" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10000005" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-336" - ], - "identifierV2": [ - { - "value": "JMF 83-336", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032711909" - } - ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032711909" - ], - "idBarcode": [ - "33433032711909" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000007", - "_score": null, - "_source": { - "extent": [ - "14 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 7:35.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: Z.8917.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Guitar music", - "Guitar", - "Guitar -- Studies and exercises" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editio Musica" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Due studi per chitarra" - ], - "shelfMark": [ - "JMG 83-276" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Patachich, Iván." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-276" - }, - { - "type": "nypl:Bnumber", - "value": "10000007" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-C" - }, - { - "type": "bf:Identifier", - "value": "Z.8917. Editio Musica" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100552" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200006" - } - ], - "idOclc": [ - "NYPG001000002-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Budapest : Editio Musica, c1981." - ], - "identifier": [ - "urn:bnum:10000007", - "urn:oclc:NYPG001000002-C", - "urn:undefined:Z.8917. Editio Musica", - "urn:undefined:NNSZ00100552", - "urn:undefined:(WaOLN)nyp0200006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Guitar music.", - "Guitar -- Studies and exercises." - ], - "titleDisplay": [ - "Due studi per chitarra / Patachich Iván." - ], - "uri": "b10000007", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-276" - ], - "identifierV2": [ - { - "value": "JMG 83-276", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883591" - } - ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883591" - ], - "idBarcode": [ - "33433032883591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000276" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000009", - "_score": null, - "_source": { - "extent": [ - "30 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Edition Peters Nr. 5489.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: E.P. 13028.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Peters ; C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miniaturen II : 13 kleine Klavierstücke" - ], - "shelfMark": [ - "JMG 83-278" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Golle, Jürgen, 1942-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-278" - }, - { - "type": "nypl:Bnumber", - "value": "10000009" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters Nr. 5489 Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "E.P. 13028. Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100553" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200008" - } - ], - "idOclc": [ - "NYPG001000003-C" - ], - "uniformTitle": [ - "Miniaturen, no. 2" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000009", - "urn:oclc:NYPG001000003-C", - "urn:undefined:Edition Peters Nr. 5489 Edition Peters", - "urn:undefined:E.P. 13028. Edition Peters", - "urn:undefined:NNSZ00100553", - "urn:undefined:(WaOLN)nyp0200008" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." - ], - "uri": "b10000009", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen, no. 2" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000009" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-278" - ], - "identifierV2": [ - { - "value": "JMG 83-278", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883617" - } - ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883617" - ], - "idBarcode": [ - "33433032883617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000278" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000011", - "_score": null, - "_source": { - "extent": [ - "46 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Boeijenga" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1982" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Passie en pasen : suite voor orgel, opus 50" - ], - "shelfMark": [ - "JMG 83-279" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Berg, Jan J. van den." - ], - "createdString": [ - "1976" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-279" - }, - { - "type": "nypl:Bnumber", - "value": "10000011" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-C" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200010" - } - ], - "idOclc": [ - "NYPG001000004-C" - ], - "dateEndYear": [ - 1982 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." - ], - "identifier": [ - "urn:bnum:10000011", - "urn:oclc:NYPG001000004-C", - "urn:undefined:(WaOLN)nyp0200010" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music." - ], - "titleDisplay": [ - "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." - ], - "uri": "b10000011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sneek [Netherlands]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-279" - ], - "identifierV2": [ - { - "value": "JMG 83-279", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883625" - } - ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883625" - ], - "idBarcode": [ - "33433032883625" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000013", - "_score": null, - "_source": { - "extent": [ - "32 p. of music : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Arr. for piano with chord symbols; superlinear German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Germany (East)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harth Musik Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Disko Treff 1 : Klavier." - ], - "shelfMark": [ - "JMF 83-366" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-366" - }, - { - "type": "nypl:Bnumber", - "value": "10000013" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100555" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200012" - } - ], - "idOclc": [ - "NYPG001000005-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Leipzig : Harth Musik Verlag, c1980." - ], - "identifier": [ - "urn:bnum:10000013", - "urn:oclc:NYPG001000005-C", - "urn:undefined:NNSZ00100555", - "urn:undefined:(WaOLN)nyp0200012" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Germany (East)" - ], - "titleDisplay": [ - "Disko Treff 1 : Klavier." - ], - "uri": "b10000013", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Disko Treff eins." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000013" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-366" - ], - "identifierV2": [ - { - "value": "JMF 83-366", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032712204" - } - ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032712204" - ], - "idBarcode": [ - "33433032712204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000366" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000015", - "_score": null, - "_source": { - "extent": [ - "25 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For organ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A McAfee Music Publication.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: DM 220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Belwin-Mills" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suite no. 1 : 1977" - ], - "shelfMark": [ - "JNG 83-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hampton, Calvin." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 83-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000015" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-C" - }, - { - "type": "bf:Identifier", - "value": "DM 220. Belwin-Mills" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100556" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200014" - } - ], - "idOclc": [ - "NYPG001000006-C" - ], - "uniformTitle": [ - "Suite, organ, no. 1" - ], - "updatedAt": 1678726416948, - "publicationStatement": [ - "Melville, NY : Belwin-Mills, [1980?]" - ], - "identifier": [ - "urn:bnum:10000015", - "urn:oclc:NYPG001000006-C", - "urn:undefined:DM 220. Belwin-Mills", - "urn:undefined:NNSZ00100556", - "urn:undefined:(WaOLN)nyp0200014" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)" - ], - "titleDisplay": [ - "Suite no. 1 : 1977 / Calvin Hampton." - ], - "uri": "b10000015", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Melville, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Suite, no. 1" - ], - "tableOfContents": [ - "Fanfares -- Antiphon -- Toccata." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000015" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000017", - "_score": null, - "_source": { - "extent": [ - "1 score (17 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For baritone and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Words printed also as text.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 3:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Corbière, Tristan, 1845-1875", - "Corbière, Tristan, 1845-1875 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lettre du Mexique : pour baryton et piano, 1942" - ], - "shelfMark": [ - "JMG 83-395" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Escher, Rudolf." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Corbière, Tristan, 1845-1875." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-395" - }, - { - "type": "nypl:Bnumber", - "value": "10000017" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100557" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200016" - } - ], - "idOclc": [ - "NYPG001000007-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Amsterdam : Donemus, c1981." - ], - "identifier": [ - "urn:bnum:10000017", - "urn:oclc:NYPG001000007-C", - "urn:undefined:NNSZ00100557", - "urn:undefined:(WaOLN)nyp0200016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Corbière, Tristan, 1845-1875 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." - ], - "uri": "b10000017", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000017" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-395" - ], - "identifierV2": [ - { - "value": "JMG 83-395", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032735007" - } - ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032735007" - ], - "idBarcode": [ - "33433032735007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000395" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000019", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: M 18.487.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Waltzes (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zwölf Walzer und ein Epilog : für Klavier" - ], - "shelfMark": [ - "JMG 83-111" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Benary, Peter." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-111" - }, - { - "type": "nypl:Bnumber", - "value": "10000019" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-C" - }, - { - "type": "bf:Identifier", - "value": "Möseler M 18.487." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200018" - } - ], - "idOclc": [ - "NYPG001000008-C" - ], - "uniformTitle": [ - "Walzer und ein Epilog" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000019", - "urn:oclc:NYPG001000008-C", - "urn:undefined:Möseler M 18.487.", - "urn:undefined:NNSZ00100558", - "urn:undefined:(WaOLN)nyp0200018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Waltzes (Piano)" - ], - "titleDisplay": [ - "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." - ], - "uri": "b10000019", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Walzer und ein Epilog", - "Walzer und ein Epilog." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-111" - ], - "identifierV2": [ - { - "value": "JMG 83-111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845053" - } - ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845053" - ], - "idBarcode": [ - "33433032845053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000111" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000021", - "_score": null, - "_source": { - "extent": [ - "1 score (51 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: NM 384.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Neue Musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aurora : sinfonischer Prolog : Partitur" - ], - "shelfMark": [ - "JMG 83-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Weitzendorf, Heinz." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000021" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-C" - }, - { - "type": "bf:Identifier", - "value": "NM 384. Verlag Neue Musik" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200020" - } - ], - "idOclc": [ - "NYPG001000009-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Berlin : Verlag Neue Musik, c1978." - ], - "identifier": [ - "urn:bnum:10000021", - "urn:oclc:NYPG001000009-C", - "urn:undefined:NM 384. Verlag Neue Musik", - "urn:undefined:NNSZ00100559", - "urn:undefined:(WaOLN)nyp0200020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." - ], - "uri": "b10000021", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Berlin" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000021" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-113" - ], - "identifierV2": [ - { - "value": "JMG 83-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845079" - } - ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845079" - ], - "idBarcode": [ - "33433032845079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000023", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (18 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For band or wind ensemble.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Based on the composer's Veni creator spiritus.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: KC913.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Band music", - "Band music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shawnee Press" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica sacra" - ], - "shelfMark": [ - "JMF 83-38" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zaninelli, Luigi." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-38" - }, - { - "type": "nypl:Bnumber", - "value": "10000023" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-C" - }, - { - "type": "bf:Identifier", - "value": "KC913 Shawnee Press" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100560" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200022" - } - ], - "idOclc": [ - "NYPG001000010-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Delaware Water Gap, Pa. : Shawnee Press, c1979." - ], - "identifier": [ - "urn:bnum:10000023", - "urn:oclc:NYPG001000010-C", - "urn:undefined:KC913 Shawnee Press", - "urn:undefined:NNSZ00100560", - "urn:undefined:(WaOLN)nyp0200022" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Band music -- Scores." - ], - "titleDisplay": [ - "Musica sacra / Luigi Zaninelli." - ], - "uri": "b10000023", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delaware Water Gap, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-38" - ], - "identifierV2": [ - { - "value": "JMF 83-38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709028" - } - ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709028" - ], - "idBarcode": [ - "33433032709028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000038" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000025", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei Sonatinen für Klavier" - ], - "shelfMark": [ - "JMF 83-107" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stockmeier, Wolfgang." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-107" - }, - { - "type": "nypl:Bnumber", - "value": "10000025" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100561" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200024" - } - ], - "idOclc": [ - "NYPG001000011-C" - ], - "uniformTitle": [ - "Sonatinas, piano" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000025", - "urn:oclc:NYPG001000011-C", - "urn:undefined:NNSZ00100561", - "urn:undefined:(WaOLN)nyp0200024" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Drei Sonatinen für Klavier / Wolfgang Stockmeier." - ], - "uri": "b10000025", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatinas" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-107" - ], - "identifierV2": [ - { - "value": "JMF 83-107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709697" - } - ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709697" - ], - "idBarcode": [ - "33433032709697" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000027", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Violin)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei kleine Sonaten : für Violine solo" - ], - "shelfMark": [ - "JMF 83-95" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Köhler, Friedemann." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 172" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-95" - }, - { - "type": "nypl:Bnumber", - "value": "10000027" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100562" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200026" - } - ], - "idOclc": [ - "NYPG001000012-C" - ], - "uniformTitle": [ - "Kleine Sonaten, violin" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Wolfenbüttel : Möseler Verlag, c1979." - ], - "identifier": [ - "urn:bnum:10000027", - "urn:oclc:NYPG001000012-C", - "urn:undefined:NNSZ00100562", - "urn:undefined:(WaOLN)nyp0200026" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Violin)" - ], - "titleDisplay": [ - "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." - ], - "uri": "b10000027", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kleine Sonaten" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000027" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-95" - ], - "identifierV2": [ - { - "value": "JMF 83-95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709572" - } - ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709572" - ], - "idBarcode": [ - "33433032709572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000095" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000029", - "_score": null, - "_source": { - "extent": [ - "16 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: 29589.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Organ music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Hansen ; Distribution, Magnamusic-Baton" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cruor : for organ solo, 1977" - ], - "shelfMark": [ - "JMF 83-93" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lorentzen, Bent." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82771131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-93" - }, - { - "type": "nypl:Bnumber", - "value": "10000029" - }, - { - "type": "bf:Lccn", - "value": "82771131" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-C" - }, - { - "type": "bf:Identifier", - "value": "Wilhelm Hansen edition no. 4372." - }, - { - "type": "bf:Identifier", - "value": "29589." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100563" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200028" - } - ], - "idOclc": [ - "NYPG001000013-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." - ], - "identifier": [ - "urn:bnum:10000029", - "urn:lccn:82771131", - "urn:oclc:NYPG001000013-C", - "urn:undefined:Wilhelm Hansen edition no. 4372.", - "urn:undefined:29589.", - "urn:undefined:NNSZ00100563", - "urn:undefined:(WaOLN)nyp0200028" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Organ music." - ], - "titleDisplay": [ - "Cruor : for organ solo, 1977 / B. Lorentzen." - ], - "uri": "b10000029", - "lccClassification": [ - "M11 .L" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen ; New York : [s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-93" - ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709556" - } - ], - "physicalLocation": [ - "JMF 83-93" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709556" - ], - "idBarcode": [ - "33433032709556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000093" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000031", - "_score": null, - "_source": { - "extent": [ - "21 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Müller" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Neun Miniaturen : für Klavier : op. 52" - ], - "shelfMark": [ - "JMG 83-17" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Petersen, Wilhelm, 1890-1957." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-17" - }, - { - "type": "nypl:Bnumber", - "value": "10000031" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-C" - }, - { - "type": "bf:Identifier", - "value": "W. Müller WM 1713 SM." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100564" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200030" - } - ], - "idOclc": [ - "NYPG001000014-C" - ], - "uniformTitle": [ - "Miniaturen" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Heidelberg : W. Müller, c1979." - ], - "identifier": [ - "urn:bnum:10000031", - "urn:oclc:NYPG001000014-C", - "urn:undefined:W. Müller WM 1713 SM.", - "urn:undefined:NNSZ00100564", - "urn:undefined:(WaOLN)nyp0200030" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." - ], - "uri": "b10000031", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Heidelberg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen", - "Miniaturen." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-17" - ], - "identifierV2": [ - { - "value": "JMG 83-17", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841631" - } - ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841631" - ], - "idBarcode": [ - "33433032841631" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000017" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000033", - "_score": null, - "_source": { - "extent": [ - "1 score (20 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For voice and organ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs (Medium voice) with organ", - "Psalms (Music)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Agápe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Psalm settings" - ], - "shelfMark": [ - "JMG 83-59" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nelhybel, Vaclav." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-59" - }, - { - "type": "nypl:Bnumber", - "value": "10000033" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100565" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200032" - } - ], - "idOclc": [ - "NYPG001000015-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Carol Stream, Ill. : Agápe, c1981." - ], - "identifier": [ - "urn:bnum:10000033", - "urn:oclc:NYPG001000015-C", - "urn:undefined:NNSZ00100565", - "urn:undefined:(WaOLN)nyp0200032" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs (Medium voice) with organ.", - "Psalms (Music)" - ], - "titleDisplay": [ - "Psalm settings / Vaclav Nelhybel." - ], - "uri": "b10000033", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Carol Stream, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000033" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842035" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842035" - ], - "idBarcode": [ - "33433032842035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000035", - "_score": null, - "_source": { - "extent": [ - "22 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Suite.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 12:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Serenade voor piano : 1980" - ], - "shelfMark": [ - "JMG 83-6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kasbergen, Marinus, 1936-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-6" - }, - { - "type": "nypl:Bnumber", - "value": "10000035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100566" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200034" - } - ], - "idOclc": [ - "NYPG001000016-C" - ], - "uniformTitle": [ - "Serenade, piano" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000035", - "urn:oclc:NYPG001000016-C", - "urn:undefined:NNSZ00100566", - "urn:undefined:(WaOLN)nyp0200034" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Piano)" - ], - "titleDisplay": [ - "Serenade voor piano : 1980 / Marinus Kasbergen." - ], - "uri": "b10000035", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Serenade" - ], - "tableOfContents": [ - "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841490" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841490" - ], - "idBarcode": [ - "33433032841490" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000037", - "_score": null, - "_source": { - "extent": [ - "13a p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 15:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Guitar)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Eight studies for guitar : in form of a suite : 1979" - ], - "shelfMark": [ - "JMG 83-5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hekster, Walter." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-5" - }, - { - "type": "nypl:Bnumber", - "value": "10000037" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200036" - } - ], - "idOclc": [ - "NYPG001000017-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000037", - "urn:oclc:NYPG001000017-C", - "urn:undefined:NNSZ00100567", - "urn:undefined:(WaOLN)nyp0200036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Guitar)" - ], - "titleDisplay": [ - "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." - ], - "uri": "b10000037", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000037" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-5" - ], - "identifierV2": [ - { - "value": "JMG 83-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841482" - } - ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841482" - ], - "idBarcode": [ - "33433032841482" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000005" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000039", - "_score": null, - "_source": { - "extent": [ - "49 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five sonatas for pianoforte" - ], - "shelfMark": [ - "JMG 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hässler, Johann Wilhelm, 1747-1822." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Oberdoerffer, Fritz." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000039" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters no. 66799. C.F. Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200038" - } - ], - "idOclc": [ - "NYPG001000018-C" - ], - "uniformTitle": [ - "Sonatas, piano. Selections" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000039", - "urn:oclc:NYPG001000018-C", - "urn:undefined:Edition Peters no. 66799. C.F. Peters", - "urn:undefined:NNSZ00100568", - "urn:undefined:(WaOLN)nyp0200038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." - ], - "uri": "b10000039", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatas" - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-66" - ], - "identifierV2": [ - { - "value": "JMG 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842100" - } - ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842100" - ], - "idBarcode": [ - "33433032842100" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000041", - "_score": null, - "_source": { - "extent": [ - "1 score (23 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 5 clarinets.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Woodwind quintets (Clarinets (5))", - "Woodwind quintets (Clarinets (5)) -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Primavera" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Encounter" - ], - "shelfMark": [ - "JMF 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Usher, Julia." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81770739" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000041" - }, - { - "type": "bf:Lccn", - "value": "81770739" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100569" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200040" - } - ], - "idOclc": [ - "NYPG001000019-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Primavera, c1980." - ], - "identifier": [ - "urn:bnum:10000041", - "urn:lccn:81770739", - "urn:oclc:NYPG001000019-C", - "urn:undefined:NNSZ00100569", - "urn:undefined:(WaOLN)nyp0200040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Woodwind quintets (Clarinets (5)) -- Scores." - ], - "titleDisplay": [ - "Encounter / Julia Usher." - ], - "uri": "b10000041", - "lccClassification": [ - "M557.2.U8 E5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Greeting -- Circular argument -- Escape." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-66" - ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709291" - } - ], - "physicalLocation": [ - "JMF 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709291" - ], - "idBarcode": [ - "33433032709291" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000043", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (28 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 5:00-6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: D.15 579.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wind ensembles", - "Wind ensembles -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Doblinger" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Capriccio : für 10 Blasinstrumente" - ], - "shelfMark": [ - "JMC 83-9" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Eröd, Iván." - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Doblingers Studienpartituren ; Stp. 410" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMC 83-9" - }, - { - "type": "nypl:Bnumber", - "value": "10000043" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-C" - }, - { - "type": "bf:Identifier", - "value": "Stp. 410 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "D.15 579 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200042" - } - ], - "idOclc": [ - "NYPG001000020-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wien : Verlag Doblinger, c1980." - ], - "identifier": [ - "urn:bnum:10000043", - "urn:oclc:NYPG001000020-C", - "urn:undefined:Stp. 410 Verlag Doblinger", - "urn:undefined:D.15 579 Verlag Doblinger", - "urn:undefined:NNSZ00100570", - "urn:undefined:(WaOLN)nyp0200042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wind ensembles -- Scores." - ], - "titleDisplay": [ - "Capriccio : für 10 Blasinstrumente / Iván Eröd." - ], - "uri": "b10000043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wien" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMC 83-9" - ], - "identifierV2": [ - { - "value": "JMC 83-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004744128" - } - ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433004744128" - ], - "idBarcode": [ - "33433004744128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMC 83-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000044", - "_score": null, - "_source": { - "extent": [ - "[99] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ngawang Sopa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77901316" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2361" - }, - { - "type": "nypl:Bnumber", - "value": "10000044" - }, - { - "type": "bf:Lccn", - "value": "77901316" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100021" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200043" - } - ], - "idOclc": [ - "NYPG001000021-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Ngawang Sopa, 1976." - ], - "identifier": [ - "urn:bnum:10000044", - "urn:lccn:77901316", - "urn:oclc:NYPG001000021-B", - "urn:undefined:NNSZ00100021", - "urn:undefined:(WaOLN)nyp0200043" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." - ], - "uri": "b10000044", - "lccClassification": [ - "BQ942.Y367 R47 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000044" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000011", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2361" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080645" - } - ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080645" - ], - "idBarcode": [ - "33433015080645" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000045", - "_score": null, - "_source": { - "extent": [ - "12 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Violin music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sole selling agents, Or-Tav" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Thoughts & feelings : for violin solo" - ], - "shelfMark": [ - "JMG 82-688" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stutschewsky, Joachim, 1891-1982." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "80770813" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 82-688" - }, - { - "type": "nypl:Bnumber", - "value": "10000045" - }, - { - "type": "bf:Lccn", - "value": "80770813" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100571" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200044" - } - ], - "idOclc": [ - "NYPG001000021-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tel-Aviv : Sole selling agents, Or-Tav, c1979." - ], - "identifier": [ - "urn:bnum:10000045", - "urn:lccn:80770813", - "urn:oclc:NYPG001000021-C", - "urn:undefined:NNSZ00100571", - "urn:undefined:(WaOLN)nyp0200044" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Violin music." - ], - "titleDisplay": [ - "Thoughts & feelings : for violin solo / Joachim Stutschewsky." - ], - "uri": "b10000045", - "lccClassification": [ - "M42 .S" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tel-Aviv" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000045" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942043", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 82-688" - ], - "identifierV2": [ - { - "value": "JMG 82-688", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032707568" - } - ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032707568" - ], - "idBarcode": [ - "33433032707568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 82-000688" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000046", - "_score": null, - "_source": { - "extent": [ - "[83] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kye rdor rnam bśad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", - "Tripiṭaka.", - "Tripiṭaka. -- Commentaries", - "Sa-skya-pa lamas", - "Sa-skya-pa lamas -- Tibet", - "Sa-skya-pa lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trayang and Jamyang Samten" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2362" - }, - { - "type": "nypl:Bnumber", - "value": "10000046" - }, - { - "type": "bf:Lccn", - "value": "77900893" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100022" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200045" - } - ], - "idOclc": [ - "NYPG001000022-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Trayang and Jamyang Samten, 1976." - ], - "identifier": [ - "urn:bnum:10000046", - "urn:lccn:77900893", - "urn:oclc:NYPG001000022-B", - "urn:undefined:NNSZ00100022", - "urn:undefined:(WaOLN)nyp0200045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", - "Tripiṭaka. -- Commentaries.", - "Sa-skya-pa lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." - ], - "uri": "b10000046", - "lccClassification": [ - "BG974.0727 T75" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "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" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000046" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080413" - } - ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080413" - ], - "idBarcode": [ - "33433015080413" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000047", - "_score": null, - "_source": { - "extent": [ - "1 score (30 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 15 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vocalises (High voice) with instrumental ensemble", - "Vocalises (High voice) with instrumental ensemble -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" - ], - "shelfMark": [ - "JMG 83-79" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "81770634" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-79" - }, - { - "type": "nypl:Bnumber", - "value": "10000047" - }, - { - "type": "bf:Lccn", - "value": "81770634" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200046" - } - ], - "idOclc": [ - "NYPG001000022-C" - ], - "uniformTitle": [ - "Vocalise, soprano, instrumental ensemble, op. 38" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." - ], - "identifier": [ - "urn:bnum:10000047", - "urn:lccn:81770634", - "urn:oclc:NYPG001000022-C", - "urn:undefined:NNSZ00100572", - "urn:undefined:(WaOLN)nyp0200046" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vocalises (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." - ], - "uri": "b10000047", - "lccClassification": [ - "M1613.3 .R8 op.38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London, England (Arlington Park House, London W4)" - ], - "titleAlt": [ - "Vocalise, op. 38" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "38 cm." - ] - }, - "sort": [ - "b10000047" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-79" - ], - "identifierV2": [ - { - "value": "JMG 83-79", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842233" - } - ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842233" - ], - "idBarcode": [ - "33433032842233" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000079" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000048", - "_score": null, - "_source": { - "extent": [ - "[150] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kunzang Topgey" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901012" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2382" - }, - { - "type": "nypl:Bnumber", - "value": "10000048" - }, - { - "type": "bf:Lccn", - "value": "76901012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100023" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200047" - } - ], - "idOclc": [ - "NYPG001000023-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Thimphu : Kunzang Topgey, 1976." - ], - "identifier": [ - "urn:bnum:10000048", - "urn:lccn:76901012", - "urn:oclc:NYPG001000023-B", - "urn:undefined:NNSZ00100023", - "urn:undefined:(WaOLN)nyp0200047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000048", - "lccClassification": [ - "BQ7695 .B55" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Thimphu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 38 cm." - ] - }, - "sort": [ - "b10000048" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000013", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080439" - } - ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080439" - ], - "idBarcode": [ - "33433015080439" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002382" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000049", - "_score": null, - "_source": { - "extent": [ - "1 score (105 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 25 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Symphony, op. 26 : full score" - ], - "shelfMark": [ - "JMG 83-80" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "81770641" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-80" - }, - { - "type": "nypl:Bnumber", - "value": "10000049" - }, - { - "type": "bf:Lccn", - "value": "81770641" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100573" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200048" - } - ], - "idOclc": [ - "NYPG001000023-C" - ], - "uniformTitle": [ - "Symphony, op. 26" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." - ], - "identifier": [ - "urn:bnum:10000049", - "urn:lccn:81770641", - "urn:oclc:NYPG001000023-C", - "urn:undefined:NNSZ00100573", - "urn:undefined:(WaOLN)nyp0200048" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "Symphony, op. 26 : full score / Francis Routh." - ], - "uri": "b10000049", - "lccClassification": [ - "M1001 .R8615 op.26" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London (Arlington Park House, London W4 4HD)" - ], - "titleAlt": [ - "Symphony, op. 26" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000049" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-80" - ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842241" - } - ], - "physicalLocation": [ - "JMG 83-80" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842241" - ], - "idBarcode": [ - "33433032842241" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000080" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000050", - "_score": null, - "_source": { - "extent": [ - "[188] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas", - "Bkaʼ-brgyud-pa lamas -- Tibet", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", - "Spiritual life", - "Spiritual life -- Buddhism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Urgyan Dorje" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901747" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2381" - }, - { - "type": "nypl:Bnumber", - "value": "10000050" - }, - { - "type": "bf:Lccn", - "value": "76901747" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100024" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200049" - } - ], - "idOclc": [ - "NYPG001000024-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New Delhi : Urgyan Dorje, 1976." - ], - "identifier": [ - "urn:bnum:10000050", - "urn:lccn:76901747", - "urn:oclc:NYPG001000024-B", - "urn:undefined:NNSZ00100024", - "urn:undefined:(WaOLN)nyp0200049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", - "Spiritual life -- Buddhism." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000050", - "lccClassification": [ - "BQ942.A187 A35 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000014", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080421" - } - ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080421" - ], - "idBarcode": [ - "33433015080421" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002381" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000051", - "_score": null, - "_source": { - "extent": [ - "score (64 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Samfundet til udgivelse af dansk musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" - ], - "shelfMark": [ - "JMG 83-75" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Christiansen, Henning." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "78770955" - ], - "seriesStatement": [ - "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-75" - }, - { - "type": "nypl:Bnumber", - "value": "10000051" - }, - { - "type": "bf:Lccn", - "value": "78770955" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100574" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200050" - } - ], - "idOclc": [ - "NYPG001000024-C" - ], - "uniformTitle": [ - "Symphony, no. 2, op. 69c", - "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "København : Samfundet til udgivelse af dansk musik, 1977." - ], - "identifier": [ - "urn:bnum:10000051", - "urn:lccn:78770955", - "urn:oclc:NYPG001000024-C", - "urn:undefined:NNSZ00100574", - "urn:undefined:(WaOLN)nyp0200050" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." - ], - "uri": "b10000051", - "lccClassification": [ - "M1001 .C533 op.69c" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "København" - ], - "titleAlt": [ - "Symphony, no. 2, op. 69c", - "Den forsvundne." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "37 cm." - ] - }, - "sort": [ - "b10000051" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942046", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-75" - ], - "identifierV2": [ - { - "value": "JMG 83-75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842191" - } - ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842191" - ], - "idBarcode": [ - "33433032842191" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000075" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json b/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json index 2b0d383b..d6969e86 100644 --- a/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json +++ b/test/fixtures/query-0ddcd39540ac575980523b2f15bfeb26.json @@ -1,9118 +1,9271 @@ { - "took": 239, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 13.817177, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b18932917", - "_score": 13.817177, - "_source": { - "extent": [ - "52 linear ft., 127 boxes" - ], - "note": [ - { - "noteType": "Source", - "label": "Phelps-Stokes Fund", - "type": "bf:Note" + "body": { + "took": 155, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 13.685157, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b18932917", + "_score": 13.685157, + "_source": { + "extent": [ + "52 linear ft., 127 boxes" + ], + "note": [ + { + "noteType": "Source", + "label": "Phelps-Stokes Fund", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "The Phelps and Stokes families had long been associated with a variety of philanthropic enterprises in the 19th and 20th centuries. The Phelps-Stokes Fund was created in 1911 as a non-profit foundation under the will of Caroline Phelps Stokes. Its original objectives were to improve housing for the poor in New York City, and the \"education of Negroes, both in Africa and the United States, North American Indians, and needy and deserving white students.\" The contacts maintained by the staff and trustees of the Fund through correspondence, travel, and service on numerous boards and commissions often had a greater impact than any direct financial assistance rendered by the Fund. For the period of these records, it served as a headquarters for visiting African educators, students and government officials, and, in addition to sponsoring its own commissions and reports, became a clearinghouse for information on the intellectual and political life of colonial and post-colonial Africa", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Finding aid available.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bunche, Ralph J. 1904-1971", + "Du Bois, W. E. B. 1868-1963", + "Washington, Booker T., 1856-1915", + "Johnson, Charles Spurgeon, 1893-1956", + "Burroughs, Nannie Helen, 1879-", + "Jones, Thomas Jesse, 1873-1950", + "Patterson, Frederick D. 1901-1988", + "Aggrey, James Emman Kwegyir, 1875-1927", + "Dillard, J. H. 1856-1940", + "Dillon, Wilton S., 1923-", + "Johnson, Guy Benton, 1901-1991", + "Stokes, Anson Phelps, 1874-1958", + "Tobias, Channing H", + "Stokes, I. N. Phelps 1867-1944", + "Davis, Jackson T., 1882-1947", + "Brawley, Benjamin, 1882-1939", + "Ross, Emory", + "Peabody, George Foster, 1852-1938", + "Phelps-Stokes Fund", + "Booker Washington Institute of Liberia", + "Cooperative College Development Program", + "United Negro College Fund", + "South African Institute of Race Relations", + "Indian Rights Association", + "Mellon Haitian Nurses Training Program", + "Southern Regional Council", + "American Society of African Culture", + "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", + "Fisk University", + "Tuskegee Institute", + "Endowments", + "Endowments -- United States", + "African Americans", + "African Americans -- Housing", + "African Americans -- Charities", + "African Americans -- Education", + "African Americans -- Scholarships, fellowships, etc", + "Student aid", + "Student aid -- Africa", + "Student aid -- United States", + "Education", + "Education -- United States", + "Education -- United States -- Societies, etc", + "Housing", + "Housing -- New York (State)", + "Housing -- New York (State) -- New York", + "Slums", + "Slums -- New York (State)", + "Slums -- New York (State) -- New York", + "Agricultural colleges", + "Agricultural colleges -- Liberia", + "Missions", + "Missions -- Educational work", + "Missions, American", + "Missions, American -- Africa", + "Missions -- Africa", + "Nurses", + "Nurses -- Haiti", + "Indians of North America", + "Indians of North America -- Legal status, laws, etc", + "Educational exchanges", + "Education, Cooperative", + "Education, Cooperative -- United States", + "International relief", + "International relief -- Africa", + "African American college students", + "International organization", + "Race relations", + "Art", + "Art -- Nigeria", + "Music", + "Music -- Nigeria", + "Medical centers", + "Medical centers -- Nigeria", + "Indians of North America -- Education", + "Education -- Africa", + "Education -- Ghana", + "Education -- Liberia", + "African American universities and colleges", + "South Africa", + "South Africa -- Race relations", + "Liberia", + "Liberia -- History", + "United States", + "United States -- Race relations", + "United States -- Foreign relations", + "United States -- Foreign relations -- South Africa" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "The Phelps-Stokes Fund Records contain administrative records including trustee and committee minutes, correspondence, memoranda, financial records, legal documents, speeches, reports, occasional papers, and printed material, such as pamphlets, brochures, clippings, articles, press releases and programs. Records concern the early work of the Fund in researching and supporting education for Africans and African Americans and improvement in housing conditions, through study commissions, reports, and project grants, as well as its engagement in contemporary debates concerning the philosophy and policies of Booker T. Washington and W. E. B. Du Bois. To a lesser extent, the Fund provided early support for surveys of American Indian schools and administration, such as the 1928 Lewis Meriam study and the 1939 Navajo Indian study. Later endeavors included administering grants for conferences on race relations, exchange and training programs, cooperative programs with other foundations, government aid programs, and a number of cultural projects.", + "The bulk of the collection contains the office files of the four principal leaders of the Fund, Anson Phelps Stokes (1924-1946), Thomas Jesse Jones (1917-1946), Channing Tobias (1946-1953), and Frederick D. Patterson (1953-1969). Of particular interest is material concerning the Fund's relationships with organizations such as Agricultural Missions; Booker T. Washington Agricultural and Industrial Institute of Liberia, founded by the Fund in 1929; British and Foreign Bible Society; Capahosic (VA) Conferences, where black and white leaders gathered for off-the-record conferences; Carnegie Corporation; Committee on Negro Americans in the Defense Industry; Cooperative College Development Program to assist historically black colleges in coordinating development programs and improving management resources; General Education Board; Harmon Foundation; Highlander Folk School; International Missionary Council; Jeanes and Slater Funds; National Association for the Advancement of Colored People, including its disagreements with Fund policies; Rosenwald Fund; South African Institute of Race Relations; Southern Regional Council; YMCA National Council, including South African Work of the Foreign Committee, as well as historically black schools and colleges, especially Bethune-Cookman, Calhoun, Fisk, Hampton, Manassas, Penn School, Talladega, and Tuskegee.", + "Significant correspondents include diplomats, educators, reformers, and foundation officials, such as Ralph J. Bunche; W. E. B. Dubois, particularly regarding the Encyclopedia of the Negro project and opposition to the Fund in the 1930s and 1940s; NAACP director Walter White, who also disagreed with certain Fund activities; educators James E. K. Aggrey, Will Alexander, Aaron Brown, Nannie Burroughs, James H. Dillard, Clark Foreman, Charles S. Johnson, Guy B. Johnson, Thomas Elsa Jones, Charles L. Loram, Robert R. Moton, Harold Odum, Emmett Scott, Booker T. Washington, Carter G. Woodson, especially his controversy with Thomas Jesse Jones in the 1920s, Thomas J. Woofter, and cultural figures and organizations including ethnomusicologist Laura C. Boulton and the Harmon Foundation. Other significant correspondents include foundation officials Jackson Davis, Emory Ross, Wallace Buttrick, Abraham Flexner, Isaac Newton Phelps Stokes, Oswald Garrison Villard, L. Hollingsworth Wood, George Foster Peabody, and William J. Schiefflein; and journalists Lester Walton and Claude A. Barnett;" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 128 + ], + "createdYear": [ + 1893 + ], + "dateEndString": [ + "1970" + ], + "title": [ + "Phelps-Stokes Fund records" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Sc MG 162" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1893" + ], + "creatorLiteral": [ + "Phelps-Stokes Fund." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jones, Thomas Jesse, 1873-1950.", + "Stokes, Anson Phelps, 1874-1958.", + "Tobias, Channing H.", + "Patterson, Frederick D. (Frederick Douglass), 1901-1988.", + "Dillon, Wilton S., 1923-", + "Brown, Aaron, 1904-1992.", + "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944.", + "Ross, Emory." + ], + "dateStartYear": [ + 1893 + ], + "idOclc": [ + "715462601" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc MG 162" + }, + { + "type": "nypl:Bnumber", + "value": "18932917" + }, + { + "type": "nypl:Oclc", + "value": "715462601" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)715462601" + } + ], + "dateEndYear": [ + 1970 + ], + "updatedAt": 1709144532531, + "identifier": [ + "urn:shelfmark:Sc MG 162", + "urn:bnum:18932917", + "urn:oclc:715462601", + "urn:identifier:(OCoLC)715462601" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:mix", + "label": "Mixed material" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1893" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bunche, Ralph J. 1904-1971.", + "Du Bois, W. E. B. 1868-1963.", + "Washington, Booker T., 1856-1915.", + "Johnson, Charles Spurgeon, 1893-1956.", + "Burroughs, Nannie Helen, 1879-", + "Jones, Thomas Jesse, 1873-1950.", + "Patterson, Frederick D. 1901-1988.", + "Aggrey, James Emman Kwegyir, 1875-1927.", + "Dillard, J. H. 1856-1940.", + "Dillon, Wilton S., 1923-", + "Johnson, Guy Benton, 1901-1991.", + "Stokes, Anson Phelps, 1874-1958.", + "Tobias, Channing H.", + "Stokes, I. N. Phelps 1867-1944.", + "Davis, Jackson T., 1882-1947.", + "Brawley, Benjamin, 1882-1939.", + "Ross, Emory.", + "Peabody, George Foster, 1852-1938.", + "Phelps-Stokes Fund.", + "Booker Washington Institute of Liberia.", + "Cooperative College Development Program.", + "United Negro College Fund.", + "South African Institute of Race Relations.", + "Indian Rights Association.", + "Mellon Haitian Nurses Training Program.", + "Southern Regional Council.", + "American Society of African Culture.", + "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", + "Fisk University.", + "Tuskegee Institute.", + "Endowments -- United States.", + "African Americans -- Housing.", + "African Americans -- Charities.", + "African Americans -- Education.", + "African Americans -- Scholarships, fellowships, etc.", + "Student aid -- Africa.", + "Student aid -- United States.", + "Education -- United States -- Societies, etc.", + "Housing -- New York (State) -- New York.", + "Slums -- New York (State) -- New York.", + "Agricultural colleges -- Liberia.", + "Missions -- Educational work.", + "Missions, American -- Africa.", + "Missions -- Africa.", + "Nurses -- Haiti.", + "Indians of North America -- Legal status, laws, etc.", + "Educational exchanges.", + "Education, Cooperative -- United States.", + "International relief -- Africa.", + "African American college students.", + "International organization.", + "Race relations.", + "Art -- Nigeria.", + "Music -- Nigeria.", + "Medical centers -- Nigeria.", + "Indians of North America -- Education.", + "Education -- Africa.", + "Education -- Ghana.", + "Education -- Liberia.", + "African American universities and colleges.", + "South Africa -- Race relations.", + "Liberia -- History.", + "United States -- Race relations.", + "United States -- Foreign relations -- South Africa." + ], + "titleDisplay": [ + "Phelps-Stokes Fund records, 1893-1970." + ], + "uri": "b18932917", + "issuance": [ + { + "id": "urn:biblevel:c", + "label": "collection" + } + ], + "supplementaryContent": [ + { + "label": "Finding aid", + "url": "http://archives.nypl.org/scm/20936" + } + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, + "items": { + "hits": { + "total": 128, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 127 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 1" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133762" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 1", + "urn:barcode:33433076133762" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133762", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 1" + ], + "shelfMark_sort": "aSc MG 162 box 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i26387850" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 126 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 2" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133770" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 2", + "urn:barcode:33433076133770" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133770", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 2" + ], + "shelfMark_sort": "aSc MG 162 box 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940962" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 3" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133788" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 3", + "urn:barcode:33433076133788" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 3", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133788", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 3" + ], + "shelfMark_sort": "aSc MG 162 box 000003", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940964" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 4" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133796" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 4", + "urn:barcode:33433076133796" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 4", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133796", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 4" + ], + "shelfMark_sort": "aSc MG 162 box 000004", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940965" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 5" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133804" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 5", + "urn:barcode:33433076133804" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 5", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133804", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 5" + ], + "shelfMark_sort": "aSc MG 162 box 000005", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940966" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 6" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133812" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 6", + "urn:barcode:33433076133812" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 6", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133812", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 6" + ], + "shelfMark_sort": "aSc MG 162 box 000006", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940967" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 7" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133820" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 7", + "urn:barcode:33433076133820" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 7", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133820", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 7" + ], + "shelfMark_sort": "aSc MG 162 box 000007", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940968" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 8" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133838" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 8", + "urn:barcode:33433076133838" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 8", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133838", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 8" + ], + "shelfMark_sort": "aSc MG 162 box 000008", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940969" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 9" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133846" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 9", + "urn:barcode:33433076133846" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 9", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133846", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 9" + ], + "shelfMark_sort": "aSc MG 162 box 000009", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940970" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 10" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133853" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 10", + "urn:barcode:33433076133853" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 10", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133853", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 10" + ], + "shelfMark_sort": "aSc MG 162 box 000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940971" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 11" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133861" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 11", + "urn:barcode:33433076133861" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 11", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133861", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 11" + ], + "shelfMark_sort": "aSc MG 162 box 000011", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940972" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 12" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133879" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 12", + "urn:barcode:33433076133879" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 12", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133879", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 12" + ], + "shelfMark_sort": "aSc MG 162 box 000012", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940973" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 13" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133887" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 13", + "urn:barcode:33433076133887" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 13", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133887", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 13" + ], + "shelfMark_sort": "aSc MG 162 box 000013", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940974" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 14" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133895" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 14", + "urn:barcode:33433076133895" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 14", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133895", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 14" + ], + "shelfMark_sort": "aSc MG 162 box 000014", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940975" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 15" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133903" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 15", + "urn:barcode:33433076133903" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 15", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133903", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 15" + ], + "shelfMark_sort": "aSc MG 162 box 000015", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940976" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 16" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133911" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 16", + "urn:barcode:33433076133911" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 16", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133911", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 16" + ], + "shelfMark_sort": "aSc MG 162 box 000016", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940977" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 17" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133929" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 17", + "urn:barcode:33433076133929" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 17", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133929", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 17" + ], + "shelfMark_sort": "aSc MG 162 box 000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940978" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 110 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 18" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133937" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 18", + "urn:barcode:33433076133937" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 18", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133937", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 18" + ], + "shelfMark_sort": "aSc MG 162 box 000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940979" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 19" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133945" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 19", + "urn:barcode:33433076133945" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 19", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133945", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 19" + ], + "shelfMark_sort": "aSc MG 162 box 000019", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940980" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 20" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133952" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 20", + "urn:barcode:33433076133952" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 20", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133952", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 20" + ], + "shelfMark_sort": "aSc MG 162 box 000020", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940981" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 21" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133960" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 21", + "urn:barcode:33433076133960" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 21", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133960", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 21" + ], + "shelfMark_sort": "aSc MG 162 box 000021", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940982" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 22" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133978" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 22", + "urn:barcode:33433076133978" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 22", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133978", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 22" + ], + "shelfMark_sort": "aSc MG 162 box 000022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940983" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 23" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133986" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 23", + "urn:barcode:33433076133986" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 23", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133986", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 23" + ], + "shelfMark_sort": "aSc MG 162 box 000023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940984" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 24" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076133994" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 24", + "urn:barcode:33433076133994" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 24", + "type": "bf:ShelfMark" + }, + { + "value": "33433076133994", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 24" + ], + "shelfMark_sort": "aSc MG 162 box 000024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940985" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 25" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134000" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 25", + "urn:barcode:33433076134000" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 25", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134000", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 25" + ], + "shelfMark_sort": "aSc MG 162 box 000025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940986" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 26" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134018" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 26", + "urn:barcode:33433076134018" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 26", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134018", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 26" + ], + "shelfMark_sort": "aSc MG 162 box 000026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940987" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 27" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134026" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 27", + "urn:barcode:33433076134026" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 27", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134026", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 27" + ], + "shelfMark_sort": "aSc MG 162 box 000027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940988" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 28" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134034" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 28", + "urn:barcode:33433076134034" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 28", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134034", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 28" + ], + "shelfMark_sort": "aSc MG 162 box 000028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940989" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 29" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134042" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 29", + "urn:barcode:33433076134042" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 29", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134042", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 29" + ], + "shelfMark_sort": "aSc MG 162 box 000029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940990" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 30" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134059" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 30", + "urn:barcode:33433076134059" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 30", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134059", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 30" + ], + "shelfMark_sort": "aSc MG 162 box 000030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940991" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 31" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134067" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 31", + "urn:barcode:33433076134067" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 31", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134067", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 31" + ], + "shelfMark_sort": "aSc MG 162 box 000031", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940992" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 32" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134075" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 32", + "urn:barcode:33433076134075" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 32", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134075", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 32" + ], + "shelfMark_sort": "aSc MG 162 box 000032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940993" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 33" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134083" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 33", + "urn:barcode:33433076134083" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 33", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134083", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 33" + ], + "shelfMark_sort": "aSc MG 162 box 000033", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940994" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 34" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134091" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 34", + "urn:barcode:33433076134091" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 34", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134091", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 34" + ], + "shelfMark_sort": "aSc MG 162 box 000034", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940995" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 35" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134109" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 35", + "urn:barcode:33433076134109" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 35", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134109", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 35" + ], + "shelfMark_sort": "aSc MG 162 box 000035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940996" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 36" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134117" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 36", + "urn:barcode:33433076134117" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 36", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134117", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 36" + ], + "shelfMark_sort": "aSc MG 162 box 000036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940997" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 37" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134125" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 37", + "urn:barcode:33433076134125" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 37", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134125", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 37" + ], + "shelfMark_sort": "aSc MG 162 box 000037", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940998" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 38" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134133" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 38", + "urn:barcode:33433076134133" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 38", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134133", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 38" + ], + "shelfMark_sort": "aSc MG 162 box 000038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30940999" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 39" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134141" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 39", + "urn:barcode:33433076134141" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 39", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134141", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 39" + ], + "shelfMark_sort": "aSc MG 162 box 000039", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941000" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 40" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134158" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 40", + "urn:barcode:33433076134158" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 40", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134158", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 40" + ], + "shelfMark_sort": "aSc MG 162 box 000040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941001" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 41" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134166" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 41", + "urn:barcode:33433076134166" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 41", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134166", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 41" + ], + "shelfMark_sort": "aSc MG 162 box 000041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 42" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134174" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 42", + "urn:barcode:33433076134174" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 42", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134174", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 42" + ], + "shelfMark_sort": "aSc MG 162 box 000042", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 43" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134182" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 43", + "urn:barcode:33433076134182" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 43", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134182", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 43" + ], + "shelfMark_sort": "aSc MG 162 box 000043", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941004" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 44" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134190" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 44", + "urn:barcode:33433076134190" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 44", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134190", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 44" + ], + "shelfMark_sort": "aSc MG 162 box 000044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941005" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 45" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134208" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 45", + "urn:barcode:33433076134208" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 45", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134208", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 45" + ], + "shelfMark_sort": "aSc MG 162 box 000045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941006" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 46" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134216" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 46", + "urn:barcode:33433076134216" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 46", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134216", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 46" + ], + "shelfMark_sort": "aSc MG 162 box 000046", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941007" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 47" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134224" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 47", + "urn:barcode:33433076134224" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 47", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134224", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 47" + ], + "shelfMark_sort": "aSc MG 162 box 000047", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941008" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 48" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134232" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 48", + "urn:barcode:33433076134232" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 48", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134232", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 48" + ], + "shelfMark_sort": "aSc MG 162 box 000048", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941009" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 49" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134240" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 49", + "urn:barcode:33433076134240" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 49", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134240", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 49" + ], + "shelfMark_sort": "aSc MG 162 box 000049", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941010" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 50" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134257" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 50", + "urn:barcode:33433076134257" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 50", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134257", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 50" + ], + "shelfMark_sort": "aSc MG 162 box 000050", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941011" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 51" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134265" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 51", + "urn:barcode:33433076134265" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 51", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134265", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 51" + ], + "shelfMark_sort": "aSc MG 162 box 000051", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941012" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 52" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134273" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 52", + "urn:barcode:33433076134273" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 52", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134273", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 52" + ], + "shelfMark_sort": "aSc MG 162 box 000052", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941013" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 53" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134281" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 53", + "urn:barcode:33433076134281" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 53", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134281", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 53" + ], + "shelfMark_sort": "aSc MG 162 box 000053", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941014" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 54" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134299" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 54", + "urn:barcode:33433076134299" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 54", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134299", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 54" + ], + "shelfMark_sort": "aSc MG 162 box 000054", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941015" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 55" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134307" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 55", + "urn:barcode:33433076134307" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 55", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134307", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 55" + ], + "shelfMark_sort": "aSc MG 162 box 000055", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941016" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 56" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134315" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 56", + "urn:barcode:33433076134315" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 56", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134315", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 56" + ], + "shelfMark_sort": "aSc MG 162 box 000056", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941017" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 57" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134323" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 57", + "urn:barcode:33433076134323" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 57", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134323", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 57" + ], + "shelfMark_sort": "aSc MG 162 box 000057", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941018" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 58" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134331" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 58", + "urn:barcode:33433076134331" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 58", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134331", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 58" + ], + "shelfMark_sort": "aSc MG 162 box 000058", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941019" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 59" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134349" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 59", + "urn:barcode:33433076134349" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 59", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134349", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 59" + ], + "shelfMark_sort": "aSc MG 162 box 000059", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941020" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 60" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134356" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 60", + "urn:barcode:33433076134356" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 60", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134356", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 60" + ], + "shelfMark_sort": "aSc MG 162 box 000060", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941021" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "dueDate": [ + "2024-05-28" + ], + "enumerationChronology": [ + "Box 61" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134364" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 61", + "urn:barcode:33433076134364" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 61", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134364", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 61" + ], + "shelfMark_sort": "aSc MG 162 box 000061", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941022" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 62" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134372" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 62", + "urn:barcode:33433076134372" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 62", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134372", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 62" + ], + "shelfMark_sort": "aSc MG 162 box 000062", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941023" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 63" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134380" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 63", + "urn:barcode:33433076134380" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 63", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134380", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 63" + ], + "shelfMark_sort": "aSc MG 162 box 000063", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941024" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 64" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134398" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 64", + "urn:barcode:33433076134398" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 64", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134398", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 64" + ], + "shelfMark_sort": "aSc MG 162 box 000064", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941025" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 65" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134406" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 65", + "urn:barcode:33433076134406" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 65", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134406", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 65" + ], + "shelfMark_sort": "aSc MG 162 box 000065", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941026" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 66" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134414" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 66", + "urn:barcode:33433076134414" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 66", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134414", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 66" + ], + "shelfMark_sort": "aSc MG 162 box 000066", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941027" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 67" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134422" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 67", + "urn:barcode:33433076134422" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 67", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134422", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 67" + ], + "shelfMark_sort": "aSc MG 162 box 000067", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941028" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 68" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134430" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 68", + "urn:barcode:33433076134430" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 68", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134430", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 68" + ], + "shelfMark_sort": "aSc MG 162 box 000068", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941029" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 69" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134448" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 69", + "urn:barcode:33433076134448" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 69", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134448", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 69" + ], + "shelfMark_sort": "aSc MG 162 box 000069", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941030" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 70" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134455" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 70", + "urn:barcode:33433076134455" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 70", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134455", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 70" + ], + "shelfMark_sort": "aSc MG 162 box 000070", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941031" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 71" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134463" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 71", + "urn:barcode:33433076134463" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 71", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134463", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 71" + ], + "shelfMark_sort": "aSc MG 162 box 000071", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941032" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 72" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134471" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 72", + "urn:barcode:33433076134471" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 72", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134471", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 72" + ], + "shelfMark_sort": "aSc MG 162 box 000072", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941033" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 73" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134489" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 73", + "urn:barcode:33433076134489" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 73", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134489", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 73" + ], + "shelfMark_sort": "aSc MG 162 box 000073", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941034" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 74" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134497" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 74", + "urn:barcode:33433076134497" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 74", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134497", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 74" + ], + "shelfMark_sort": "aSc MG 162 box 000074", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941035" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 75" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134505" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 75", + "urn:barcode:33433076134505" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 75", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134505", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 75" + ], + "shelfMark_sort": "aSc MG 162 box 000075", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941036" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 76" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134513" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 76", + "urn:barcode:33433076134513" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 76", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134513", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 76" + ], + "shelfMark_sort": "aSc MG 162 box 000076", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941037" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 77" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134521" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 77", + "urn:barcode:33433076134521" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 77", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134521", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 77" + ], + "shelfMark_sort": "aSc MG 162 box 000077", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941038" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 78" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134539" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 78", + "urn:barcode:33433076134539" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 78", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134539", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 78" + ], + "shelfMark_sort": "aSc MG 162 box 000078", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941039" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 79" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134547" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 79", + "urn:barcode:33433076134547" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 79", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134547", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 79" + ], + "shelfMark_sort": "aSc MG 162 box 000079", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941040" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 80" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134554" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 80", + "urn:barcode:33433076134554" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 80", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134554", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 80" + ], + "shelfMark_sort": "aSc MG 162 box 000080", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941041" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 81" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134562" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 81", + "urn:barcode:33433076134562" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 81", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134562", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 81" + ], + "shelfMark_sort": "aSc MG 162 box 000081", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941042" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 82" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134570" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 82", + "urn:barcode:33433076134570" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 82", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134570", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 82" + ], + "shelfMark_sort": "aSc MG 162 box 000082", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941043" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 83" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134588" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 83", + "urn:barcode:33433076134588" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 83", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134588", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 83" + ], + "shelfMark_sort": "aSc MG 162 box 000083", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941044" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 84" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134596" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 84", + "urn:barcode:33433076134596" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 84", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134596", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 84" + ], + "shelfMark_sort": "aSc MG 162 box 000084", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941045" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 85" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134604" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 85", + "urn:barcode:33433076134604" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 85", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134604", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 85" + ], + "shelfMark_sort": "aSc MG 162 box 000085", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941046" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 86" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134612" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 86", + "urn:barcode:33433076134612" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 86", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134612", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 86" + ], + "shelfMark_sort": "aSc MG 162 box 000086", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941047" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 87" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134620" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 87", + "urn:barcode:33433076134620" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 87", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134620", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 87" + ], + "shelfMark_sort": "aSc MG 162 box 000087", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941048" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 88" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134638" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 88", + "urn:barcode:33433076134638" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 88", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134638", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 88" + ], + "shelfMark_sort": "aSc MG 162 box 000088", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941049" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 89" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134646" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 89", + "urn:barcode:33433076134646" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 89", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134646", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 89" + ], + "shelfMark_sort": "aSc MG 162 box 000089", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941050" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 90" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134653" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 90", + "urn:barcode:33433076134653" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 90", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134653", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 90" + ], + "shelfMark_sort": "aSc MG 162 box 000090", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941051" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 91" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134661" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 91", + "urn:barcode:33433076134661" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 91", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134661", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 91" + ], + "shelfMark_sort": "aSc MG 162 box 000091", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941052" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 92" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134679" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 92", + "urn:barcode:33433076134679" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 92", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134679", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 92" + ], + "shelfMark_sort": "aSc MG 162 box 000092", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941053" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 93" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134687" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 93", + "urn:barcode:33433076134687" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 93", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134687", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 93" + ], + "shelfMark_sort": "aSc MG 162 box 000093", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941054" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 94" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134695" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 94", + "urn:barcode:33433076134695" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 94", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134695", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 94" + ], + "shelfMark_sort": "aSc MG 162 box 000094", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941055" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 95" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134703" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 95", + "urn:barcode:33433076134703" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 95", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134703", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 95" + ], + "shelfMark_sort": "aSc MG 162 box 000095", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941056" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 96" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134711" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 96", + "urn:barcode:33433076134711" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 96", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134711", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 96" + ], + "shelfMark_sort": "aSc MG 162 box 000096", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941057" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 97" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134729" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 97", + "urn:barcode:33433076134729" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 97", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134729", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 97" + ], + "shelfMark_sort": "aSc MG 162 box 000097", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941058" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 98" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134737" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 98", + "urn:barcode:33433076134737" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 98", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134737", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 98" + ], + "shelfMark_sort": "aSc MG 162 box 000098", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941059" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 99" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134745" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 99", + "urn:barcode:33433076134745" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 99", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134745", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 99" + ], + "shelfMark_sort": "aSc MG 162 box 000099", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941060" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 100" + ], + "formatLiteral": [ + "Mixed material" + ], + "holdingLocation": [ + { + "id": "loc:rccd8", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rccd8||Offsite" + ], + "idBarcode": [ + "33433076134752" + ], + "identifier": [ + "urn:shelfmark:Sc MG 162 Box 100", + "urn:barcode:33433076134752" + ], + "identifierV2": [ + { + "value": "Sc MG 162 Box 100", + "type": "bf:ShelfMark" + }, + { + "value": "33433076134752", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "Sc MG 162" + ], + "recapCustomerCode": [ + "NS" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc MG 162 Box 100" + ], + "shelfMark_sort": "aSc MG 162 box 000100", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30941061" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "noteType": "Biography", - "label": "The Phelps and Stokes families had long been associated with a variety of philanthropic enterprises in the 19th and 20th centuries. The Phelps-Stokes Fund was created in 1911 as a non-profit foundation under the will of Caroline Phelps Stokes. Its original objectives were to improve housing for the poor in New York City, and the \"education of Negroes, both in Africa and the United States, North American Indians, and needy and deserving white students.\" The contacts maintained by the staff and trustees of the Fund through correspondence, travel, and service on numerous boards and commissions often had a greater impact than any direct financial assistance rendered by the Fund. For the period of these records, it served as a headquarters for visiting African educators, students and government officials, and, in addition to sponsoring its own commissions and reports, became a clearinghouse for information on the intellectual and political life of colonial and post-colonial Africa", - "type": "bf:Note" + "key": "loc:rccd8||Offsite", + "doc_count": 127 }, { - "noteType": "Indexes/Finding Aids", - "label": "Finding aid available.", - "type": "bf:Note" + "key": "loc:scdd2||Schomburg Center - Manuscripts & Archives", + "doc_count": 1 } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bunche, Ralph J. 1904-1971", - "Du Bois, W. E. B. 1868-1963", - "Washington, Booker T., 1856-1915", - "Johnson, Charles Spurgeon, 1893-1956", - "Burroughs, Nannie Helen, 1879-", - "Jones, Thomas Jesse, 1873-1950", - "Patterson, Frederick D. 1901-1988", - "Aggrey, James Emman Kwegyir, 1875-1927", - "Dillard, J. H. 1856-1940", - "Dillon, Wilton S., 1923-", - "Johnson, Guy Benton, 1901-1991", - "Stokes, Anson Phelps, 1874-1958", - "Tobias, Channing H", - "Stokes, I. N. Phelps 1867-1944", - "Davis, Jackson T., 1882-1947", - "Brawley, Benjamin, 1882-1939", - "Ross, Emory", - "Peabody, George Foster, 1852-1938", - "Phelps-Stokes Fund", - "Booker Washington Institute of Liberia", - "Cooperative College Development Program", - "United Negro College Fund", - "South African Institute of Race Relations", - "Indian Rights Association", - "Mellon Haitian Nurses Training Program", - "Southern Regional Council", - "American Society of African Culture", - "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", - "Fisk University", - "Tuskegee Institute", - "Endowments", - "Endowments -- United States", - "African Americans", - "African Americans -- Housing", - "African Americans -- Charities", - "African Americans -- Education", - "African Americans -- Scholarships, fellowships, etc", - "Student aid", - "Student aid -- Africa", - "Student aid -- United States", - "Education", - "Education -- United States", - "Education -- United States -- Societies, etc", - "Housing", - "Housing -- New York", - "Slums", - "Slums -- New York", - "Agricultural colleges", - "Agricultural colleges -- Liberia", - "Missions", - "Missions -- Educational work", - "Missions, American", - "Missions, American -- Africa", - "Missions -- Africa", - "Nurses", - "Nurses -- Haiti", - "Indians of North America", - "Indians of North America -- Legal status, laws, etc", - "Educational exchanges", - "Education, Cooperative", - "Education, Cooperative -- United States", - "International relief", - "International relief -- Africa", - "African American college students", - "International organization", - "Race relations", - "Art", - "Art -- Nigeria", - "Music", - "Music -- Nigeria", - "Medical centers", - "Medical centers -- Nigeria", - "Indians of North America -- Education", - "Education -- Africa", - "Education -- Ghana", - "Education -- Liberia", - "African American universities and colleges", - "South Africa", - "South Africa -- Race relations", - "Liberia", - "Liberia -- History", - "United States", - "United States -- Race relations", - "United States -- Foreign relations", - "United States -- Foreign relations -- South Africa" - ], - "numItemDatesParsed": [ - 0 - ], - "description": [ - "The Phelps-Stokes Fund Records contain administrative records including trustee and committee minutes, correspondence, memoranda, financial records, legal documents, speeches, reports, occasional papers, and printed material, such as pamphlets, brochures, clippings, articles, press releases and programs. Records concern the early work of the Fund in researching and supporting education for Africans and African Americans and improvement in housing conditions, through study commissions, reports, and project grants, as well as its engagement in contemporary debates concerning the philosophy and policies of Booker T. Washington and W. E. B. Du Bois. To a lesser extent, the Fund provided early support for surveys of American Indian schools and administration, such as the 1928 Lewis Meriam study and the 1939 Navajo Indian study. Later endeavors included administering grants for conferences on race relations, exchange and training programs, cooperative programs with other foundations, government aid programs, and a number of cultural projects.", - "The bulk of the collection contains the office files of the four principal leaders of the Fund, Anson Phelps Stokes (1924-1946), Thomas Jesse Jones (1917-1946), Channing Tobias (1946-1953), and Frederick D. Patterson (1953-1969). Of particular interest is material concerning the Fund's relationships with organizations such as Agricultural Missions; Booker T. Washington Agricultural and Industrial Institute of Liberia, founded by the Fund in 1929; British and Foreign Bible Society; Capahosic (VA) Conferences, where black and white leaders gathered for off-the-record conferences; Carnegie Corporation; Committee on Negro Americans in the Defense Industry; Cooperative College Development Program to assist historically black colleges in coordinating development programs and improving management resources; General Education Board; Harmon Foundation; Highlander Folk School; International Missionary Council; Jeanes and Slater Funds; National Association for the Advancement of Colored People, including its disagreements with Fund policies; Rosenwald Fund; South African Institute of Race Relations; Southern Regional Council; YMCA National Council, including South African Work of the Foreign Committee, as well as historically black schools and colleges, especially Bethune-Cookman, Calhoun, Fisk, Hampton, Manassas, Penn School, Talladega, and Tuskegee.", - "Significant correspondents include diplomats, educators, reformers, and foundation officials, such as Ralph J. Bunche; W. E. B. Dubois, particularly regarding the Encyclopedia of the Negro project and opposition to the Fund in the 1930s and 1940s; NAACP director Walter White, who also disagreed with certain Fund activities; educators James E. K. Aggrey, Will Alexander, Aaron Brown, Nannie Burroughs, James H. Dillard, Clark Foreman, Charles S. Johnson, Guy B. Johnson, Thomas Elsa Jones, Charles L. Loram, Robert R. Moton, Harold Odum, Emmett Scott, Booker T. Washington, Carter G. Woodson, especially his controversy with Thomas Jesse Jones in the 1920s, Thomas J. Woofter, and cultural figures and organizations including ethnomusicologist Laura C. Boulton and the Harmon Foundation. Other significant correspondents include foundation officials Jackson Davis, Emory Ross, Wallace Buttrick, Abraham Flexner, Isaac Newton Phelps Stokes, Oswald Garrison Villard, L. Hollingsworth Wood, George Foster Peabody, and William J. Schiefflein; and journalists Lester Walton and Claude A. Barnett;" - ], - "language": [ + ] + } + }, + "item_format": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "lang:eng", - "label": "English" + "key": "Mixed material", + "doc_count": 128 } - ], - "numItemsTotal": [ - 128 - ], - "dateEndString": [ - "1970" - ], - "createdYear": [ - 1893 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Phelps-Stokes Fund records" - ], - "shelfMark": [ - "Sc MG 162" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Phelps-Stokes Fund." - ], - "createdString": [ - "1893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Jones, Thomas Jesse, 1873-1950.", - "Stokes, Anson Phelps, 1874-1958.", - "Tobias, Channing H.", - "Patterson, Frederick D. (Frederick Douglass), 1901-1988.", - "Dillon, Wilton S., 1923-", - "Brown, Aaron, 1904-1992.", - "Stokes, I. N. Phelps (Isaac Newton Phelps), 1867-1944.", - "Ross, Emory." - ], - "dateStartYear": [ - 1893 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc MG 162" - }, - { - "type": "nypl:Bnumber", - "value": "18932917" - }, + ] + } + }, + "item_status": { + "doc_count": 128, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "type": "nypl:Oclc", - "value": "715462601" + "key": "status:a||Available", + "doc_count": 117 }, { - "type": "nypl:Oclc", - "value": "715462601" + "key": "status:co||Loaned", + "doc_count": 9 }, { - "type": "bf:Identifier", - "value": "(OCoLC)715462601" - } - ], - "idOclc": [ - "715462601" - ], - "dateEndYear": [ - 1970 - ], - "updatedAt": 1690901173661, - "identifier": [ - "urn:bnum:18932917", - "urn:oclc:715462601", - "urn:undefined:(OCoLC)715462601" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:mix", - "label": "Mixed material" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1893" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bunche, Ralph J. 1904-1971.", - "Du Bois, W. E. B. 1868-1963.", - "Washington, Booker T., 1856-1915.", - "Johnson, Charles Spurgeon, 1893-1956.", - "Burroughs, Nannie Helen, 1879-", - "Jones, Thomas Jesse, 1873-1950.", - "Patterson, Frederick D. 1901-1988.", - "Aggrey, James Emman Kwegyir, 1875-1927.", - "Dillard, J. H. 1856-1940.", - "Dillon, Wilton S., 1923-", - "Johnson, Guy Benton, 1901-1991.", - "Stokes, Anson Phelps, 1874-1958.", - "Tobias, Channing H.", - "Stokes, I. N. Phelps 1867-1944.", - "Davis, Jackson T., 1882-1947.", - "Brawley, Benjamin, 1882-1939.", - "Ross, Emory.", - "Peabody, George Foster, 1852-1938.", - "Phelps-Stokes Fund.", - "Booker Washington Institute of Liberia.", - "Cooperative College Development Program.", - "United Negro College Fund.", - "South African Institute of Race Relations.", - "Indian Rights Association.", - "Mellon Haitian Nurses Training Program.", - "Southern Regional Council.", - "American Society of African Culture.", - "Highlander Folk School. Highlander Folk School (Monteagle, Tenn.)", - "Fisk University.", - "Tuskegee Institute.", - "Endowments -- United States.", - "African Americans -- Housing.", - "African Americans -- Charities.", - "African Americans -- Education.", - "African Americans -- Scholarships, fellowships, etc.", - "Student aid -- Africa.", - "Student aid -- United States.", - "Education -- United States -- Societies, etc.", - "Housing -- New York.", - "Slums -- New York.", - "Agricultural colleges -- Liberia.", - "Missions -- Educational work.", - "Missions, American -- Africa.", - "Missions -- Africa.", - "Nurses -- Haiti.", - "Indians of North America -- Legal status, laws, etc.", - "Educational exchanges.", - "Education, Cooperative -- United States.", - "International relief -- Africa.", - "African American college students.", - "International organization.", - "Race relations.", - "Art -- Nigeria.", - "Music -- Nigeria.", - "Medical centers -- Nigeria.", - "Indians of North America -- Education.", - "Education -- Africa.", - "Education -- Ghana.", - "Education -- Liberia.", - "African American universities and colleges.", - "South Africa -- Race relations.", - "Liberia -- History.", - "United States -- Race relations.", - "United States -- Foreign relations -- South Africa." - ], - "titleDisplay": [ - "Phelps-Stokes Fund records, 1893-1970." - ], - "uri": "b18932917", - "numItems": [ - 128 - ], - "numAvailable": [ - 114 - ], - "issuance": [ - { - "id": "urn:biblevel:c", - "label": "collection" - } - ], - "supplementaryContent": [ - { - "label": "Finding aid", - "url": "http://archives.nypl.org/scm/20936" + "key": "status:t||In transit", + "doc_count": 2 } ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 128, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 127 - }, - "_score": null, - "_source": { - "uri": "i30941088", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 127" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 127", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076151525" - } - ], - "enumerationChronology": [ - "Box 127" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076151525" - ], - "idBarcode": [ - "33433076151525" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000127" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 126 - }, - "_score": null, - "_source": { - "uri": "i34346389", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc MG 162 Box 127" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 127", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433111930941" - } - ], - "enumerationChronology": [ - "Box 127" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "identifier": [ - "urn:barcode:33433111930941" - ], - "idBarcode": [ - "33433111930941" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2017-10-14" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000127" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 125 - }, - "_score": null, - "_source": { - "uri": "i30941087", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 126" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 126", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076151517" - } - ], - "enumerationChronology": [ - "Box 126" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076151517" - ], - "idBarcode": [ - "33433076151517" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000126" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 124 - }, - "_score": null, - "_source": { - "uri": "i30941086", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 125" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 125", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076135007" - } - ], - "enumerationChronology": [ - "Box 125" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076135007" - ], - "idBarcode": [ - "33433076135007" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000125" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 123 - }, - "_score": null, - "_source": { - "uri": "i30941085", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 124" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 124", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134992" - } - ], - "enumerationChronology": [ - "Box 124" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134992" - ], - "idBarcode": [ - "33433076134992" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000124" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 122 - }, - "_score": null, - "_source": { - "uri": "i30941084", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 123" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 123", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134984" - } - ], - "enumerationChronology": [ - "Box 123" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134984" - ], - "idBarcode": [ - "33433076134984" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000123" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 121 - }, - "_score": null, - "_source": { - "uri": "i30941083", - "status": [ - { - "id": "status:t", - "label": "In transit" - } - ], - "status_packed": [ - "status:t||In transit" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 122" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 122", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134976" - } - ], - "enumerationChronology": [ - "Box 122" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134976" - ], - "idBarcode": [ - "33433076134976" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000122" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 120 - }, - "_score": null, - "_source": { - "uri": "i30941082", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 121" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 121", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134968" - } - ], - "enumerationChronology": [ - "Box 121" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134968" - ], - "idBarcode": [ - "33433076134968" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000121" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 119 - }, - "_score": null, - "_source": { - "uri": "i30941081", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 120" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 120", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134950" - } - ], - "enumerationChronology": [ - "Box 120" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134950" - ], - "idBarcode": [ - "33433076134950" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000120" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 118 - }, - "_score": null, - "_source": { - "uri": "i30941080", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 119" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 119", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134943" - } - ], - "enumerationChronology": [ - "Box 119" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134943" - ], - "idBarcode": [ - "33433076134943" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000119" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 117 - }, - "_score": null, - "_source": { - "uri": "i30941079", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 118" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 118", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134935" - } - ], - "enumerationChronology": [ - "Box 118" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134935" - ], - "idBarcode": [ - "33433076134935" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000118" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 116 - }, - "_score": null, - "_source": { - "uri": "i30941078", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 117" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 117", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134927" - } - ], - "enumerationChronology": [ - "Box 117" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134927" - ], - "idBarcode": [ - "33433076134927" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000117" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 115 - }, - "_score": null, - "_source": { - "uri": "i30941077", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 116" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 116", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134919" - } - ], - "enumerationChronology": [ - "Box 116" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134919" - ], - "idBarcode": [ - "33433076134919" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000116" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 114 - }, - "_score": null, - "_source": { - "uri": "i30941076", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 115" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 115", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134901" - } - ], - "enumerationChronology": [ - "Box 115" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134901" - ], - "idBarcode": [ - "33433076134901" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2023-10-18" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000115" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 113 - }, - "_score": null, - "_source": { - "uri": "i30941075", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 114" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 114", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134893" - } - ], - "enumerationChronology": [ - "Box 114" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134893" - ], - "idBarcode": [ - "33433076134893" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000114" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 112 - }, - "_score": null, - "_source": { - "uri": "i30941074", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 113" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134885" - } - ], - "enumerationChronology": [ - "Box 113" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134885" - ], - "idBarcode": [ - "33433076134885" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000113" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 111 - }, - "_score": null, - "_source": { - "uri": "i30941073", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 112" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 112", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134877" - } - ], - "enumerationChronology": [ - "Box 112" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134877" - ], - "idBarcode": [ - "33433076134877" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000112" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 110 - }, - "_score": null, - "_source": { - "uri": "i30941072", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 111" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134869" - } - ], - "enumerationChronology": [ - "Box 111" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134869" - ], - "idBarcode": [ - "33433076134869" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000111" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 109 - }, - "_score": null, - "_source": { - "uri": "i30941071", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 110" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 110", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134851" - } - ], - "enumerationChronology": [ - "Box 110" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134851" - ], - "idBarcode": [ - "33433076134851" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000110" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 108 - }, - "_score": null, - "_source": { - "uri": "i30941070", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 109" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 109", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134844" - } - ], - "enumerationChronology": [ - "Box 109" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134844" - ], - "idBarcode": [ - "33433076134844" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000109" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 107 - }, - "_score": null, - "_source": { - "uri": "i30941069", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 108" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 108", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134836" - } - ], - "enumerationChronology": [ - "Box 108" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134836" - ], - "idBarcode": [ - "33433076134836" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000108" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 106 - }, - "_score": null, - "_source": { - "uri": "i30941068", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 107" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134828" - } - ], - "enumerationChronology": [ - "Box 107" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134828" - ], - "idBarcode": [ - "33433076134828" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000107" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 105 - }, - "_score": null, - "_source": { - "uri": "i30941067", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 106" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 106", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134810" - } - ], - "enumerationChronology": [ - "Box 106" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134810" - ], - "idBarcode": [ - "33433076134810" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000106" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 104 - }, - "_score": null, - "_source": { - "uri": "i30941066", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 105" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 105", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134802" - } - ], - "enumerationChronology": [ - "Box 105" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134802" - ], - "idBarcode": [ - "33433076134802" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000105" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 103 - }, - "_score": null, - "_source": { - "uri": "i30941065", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 104" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 104", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134794" - } - ], - "enumerationChronology": [ - "Box 104" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134794" - ], - "idBarcode": [ - "33433076134794" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000104" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 102 - }, - "_score": null, - "_source": { - "uri": "i30941064", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 103" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 103", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134786" - } - ], - "enumerationChronology": [ - "Box 103" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134786" - ], - "idBarcode": [ - "33433076134786" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000103" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 101 - }, - "_score": null, - "_source": { - "uri": "i30941063", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 102" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 102", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134778" - } - ], - "enumerationChronology": [ - "Box 102" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134778" - ], - "idBarcode": [ - "33433076134778" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000102" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 100 - }, - "_score": null, - "_source": { - "uri": "i30941062", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 101" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 101", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134760" - } - ], - "enumerationChronology": [ - "Box 101" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134760" - ], - "idBarcode": [ - "33433076134760" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000101" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 99 - }, - "_score": null, - "_source": { - "uri": "i30941061", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 100" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 100", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134752" - } - ], - "enumerationChronology": [ - "Box 100" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134752" - ], - "idBarcode": [ - "33433076134752" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000100" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 98 - }, - "_score": null, - "_source": { - "uri": "i30941060", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 99" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 99", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134745" - } - ], - "enumerationChronology": [ - "Box 99" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134745" - ], - "idBarcode": [ - "33433076134745" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000099" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 97 - }, - "_score": null, - "_source": { - "uri": "i30941059", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 98" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 98", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134737" - } - ], - "enumerationChronology": [ - "Box 98" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134737" - ], - "idBarcode": [ - "33433076134737" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000098" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 96 - }, - "_score": null, - "_source": { - "uri": "i30941058", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 97" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 97", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134729" - } - ], - "enumerationChronology": [ - "Box 97" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134729" - ], - "idBarcode": [ - "33433076134729" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000097" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 95 - }, - "_score": null, - "_source": { - "uri": "i30941057", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 96" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 96", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134711" - } - ], - "enumerationChronology": [ - "Box 96" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134711" - ], - "idBarcode": [ - "33433076134711" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000096" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 94 - }, - "_score": null, - "_source": { - "uri": "i30941056", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 95" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134703" - } - ], - "enumerationChronology": [ - "Box 95" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134703" - ], - "idBarcode": [ - "33433076134703" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000095" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 93 - }, - "_score": null, - "_source": { - "uri": "i30941055", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 94" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 94", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134695" - } - ], - "enumerationChronology": [ - "Box 94" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134695" - ], - "idBarcode": [ - "33433076134695" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000094" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 92 - }, - "_score": null, - "_source": { - "uri": "i30941054", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 93" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134687" - } - ], - "enumerationChronology": [ - "Box 93" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134687" - ], - "idBarcode": [ - "33433076134687" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000093" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 91 - }, - "_score": null, - "_source": { - "uri": "i30941053", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 92" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 92", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134679" - } - ], - "enumerationChronology": [ - "Box 92" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134679" - ], - "idBarcode": [ - "33433076134679" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000092" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 90 - }, - "_score": null, - "_source": { - "uri": "i30941052", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 91" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 91", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134661" - } - ], - "enumerationChronology": [ - "Box 91" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134661" - ], - "idBarcode": [ - "33433076134661" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000091" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 89 - }, - "_score": null, - "_source": { - "uri": "i30941051", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 90" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 90", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134653" - } - ], - "enumerationChronology": [ - "Box 90" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134653" - ], - "idBarcode": [ - "33433076134653" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000090" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 88 - }, - "_score": null, - "_source": { - "uri": "i30941050", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 89" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 89", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134646" - } - ], - "enumerationChronology": [ - "Box 89" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134646" - ], - "idBarcode": [ - "33433076134646" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000089" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 87 - }, - "_score": null, - "_source": { - "uri": "i30941049", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 88" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 88", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134638" - } - ], - "enumerationChronology": [ - "Box 88" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134638" - ], - "idBarcode": [ - "33433076134638" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000088" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 86 - }, - "_score": null, - "_source": { - "uri": "i30941048", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 87" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 87", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134620" - } - ], - "enumerationChronology": [ - "Box 87" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134620" - ], - "idBarcode": [ - "33433076134620" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000087" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 85 - }, - "_score": null, - "_source": { - "uri": "i30941047", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 86" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 86", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134612" - } - ], - "enumerationChronology": [ - "Box 86" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134612" - ], - "idBarcode": [ - "33433076134612" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000086" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 84 - }, - "_score": null, - "_source": { - "uri": "i30941046", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 85" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 85", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134604" - } - ], - "enumerationChronology": [ - "Box 85" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134604" - ], - "idBarcode": [ - "33433076134604" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000085" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 83 - }, - "_score": null, - "_source": { - "uri": "i30941045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 84" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 84", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134596" - } - ], - "enumerationChronology": [ - "Box 84" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134596" - ], - "idBarcode": [ - "33433076134596" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000084" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 82 - }, - "_score": null, - "_source": { - "uri": "i30941044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 83" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 83", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134588" - } - ], - "enumerationChronology": [ - "Box 83" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134588" - ], - "idBarcode": [ - "33433076134588" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000083" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 81 - }, - "_score": null, - "_source": { - "uri": "i30941043", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 82" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 82", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134570" - } - ], - "enumerationChronology": [ - "Box 82" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134570" - ], - "idBarcode": [ - "33433076134570" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000082" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 80 - }, - "_score": null, - "_source": { - "uri": "i30941042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 81" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 81", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134562" - } - ], - "enumerationChronology": [ - "Box 81" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134562" - ], - "idBarcode": [ - "33433076134562" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000081" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 79 - }, - "_score": null, - "_source": { - "uri": "i30941041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 80" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 80", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134554" - } - ], - "enumerationChronology": [ - "Box 80" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134554" - ], - "idBarcode": [ - "33433076134554" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000080" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 78 - }, - "_score": null, - "_source": { - "uri": "i30941040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 79" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 79", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134547" - } - ], - "enumerationChronology": [ - "Box 79" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134547" - ], - "idBarcode": [ - "33433076134547" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000079" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 77 - }, - "_score": null, - "_source": { - "uri": "i30941039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 78" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 78", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134539" - } - ], - "enumerationChronology": [ - "Box 78" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134539" - ], - "idBarcode": [ - "33433076134539" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000078" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 76 - }, - "_score": null, - "_source": { - "uri": "i30941038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 77" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 77", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134521" - } - ], - "enumerationChronology": [ - "Box 77" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134521" - ], - "idBarcode": [ - "33433076134521" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000077" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 75 - }, - "_score": null, - "_source": { - "uri": "i30941037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 76" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 76", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134513" - } - ], - "enumerationChronology": [ - "Box 76" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134513" - ], - "idBarcode": [ - "33433076134513" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000076" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 74 - }, - "_score": null, - "_source": { - "uri": "i30941036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 75" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134505" - } - ], - "enumerationChronology": [ - "Box 75" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134505" - ], - "idBarcode": [ - "33433076134505" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000075" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 73 - }, - "_score": null, - "_source": { - "uri": "i30941035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 74" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 74", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134497" - } - ], - "enumerationChronology": [ - "Box 74" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134497" - ], - "idBarcode": [ - "33433076134497" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000074" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 72 - }, - "_score": null, - "_source": { - "uri": "i30941034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 73" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 73", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134489" - } - ], - "enumerationChronology": [ - "Box 73" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134489" - ], - "idBarcode": [ - "33433076134489" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000073" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 71 - }, - "_score": null, - "_source": { - "uri": "i30941033", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 72" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 72", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134471" - } - ], - "enumerationChronology": [ - "Box 72" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134471" - ], - "idBarcode": [ - "33433076134471" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000072" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 70 - }, - "_score": null, - "_source": { - "uri": "i30941032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 71" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 71", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134463" - } - ], - "enumerationChronology": [ - "Box 71" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134463" - ], - "idBarcode": [ - "33433076134463" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000071" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 69 - }, - "_score": null, - "_source": { - "uri": "i30941031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 70" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 70", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134455" - } - ], - "enumerationChronology": [ - "Box 70" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134455" - ], - "idBarcode": [ - "33433076134455" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000070" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 68 - }, - "_score": null, - "_source": { - "uri": "i30941030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 69" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 69", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134448" - } - ], - "enumerationChronology": [ - "Box 69" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134448" - ], - "idBarcode": [ - "33433076134448" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000069" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 67 - }, - "_score": null, - "_source": { - "uri": "i30941029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 68" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 68", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134430" - } - ], - "enumerationChronology": [ - "Box 68" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134430" - ], - "idBarcode": [ - "33433076134430" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000068" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 66 - }, - "_score": null, - "_source": { - "uri": "i30941028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 67" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 67", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134422" - } - ], - "enumerationChronology": [ - "Box 67" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134422" - ], - "idBarcode": [ - "33433076134422" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000067" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 65 - }, - "_score": null, - "_source": { - "uri": "i30941027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 66" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134414" - } - ], - "enumerationChronology": [ - "Box 66" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134414" - ], - "idBarcode": [ - "33433076134414" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000066" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 64 - }, - "_score": null, - "_source": { - "uri": "i30941026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 65" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 65", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134406" - } - ], - "enumerationChronology": [ - "Box 65" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134406" - ], - "idBarcode": [ - "33433076134406" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000065" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 63 - }, - "_score": null, - "_source": { - "uri": "i30941025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 64" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 64", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134398" - } - ], - "enumerationChronology": [ - "Box 64" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134398" - ], - "idBarcode": [ - "33433076134398" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000064" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 62 - }, - "_score": null, - "_source": { - "uri": "i30941024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 63" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 63", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134380" - } - ], - "enumerationChronology": [ - "Box 63" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134380" - ], - "idBarcode": [ - "33433076134380" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000063" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 61 - }, - "_score": null, - "_source": { - "uri": "i30941023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 62" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 62", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134372" - } - ], - "enumerationChronology": [ - "Box 62" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134372" - ], - "idBarcode": [ - "33433076134372" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000062" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 60 - }, - "_score": null, - "_source": { - "uri": "i30941022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 61" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 61", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134364" - } - ], - "enumerationChronology": [ - "Box 61" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134364" - ], - "idBarcode": [ - "33433076134364" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000061" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 59 - }, - "_score": null, - "_source": { - "uri": "i30941021", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 60" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 60", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134356" - } - ], - "enumerationChronology": [ - "Box 60" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134356" - ], - "idBarcode": [ - "33433076134356" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000060" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 58 - }, - "_score": null, - "_source": { - "uri": "i30941020", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 59" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134349" - } - ], - "enumerationChronology": [ - "Box 59" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134349" - ], - "idBarcode": [ - "33433076134349" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 57 - }, - "_score": null, - "_source": { - "uri": "i30941019", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 58" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 58", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134331" - } - ], - "enumerationChronology": [ - "Box 58" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134331" - ], - "idBarcode": [ - "33433076134331" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000058" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 56 - }, - "_score": null, - "_source": { - "uri": "i30941018", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 57" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 57", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134323" - } - ], - "enumerationChronology": [ - "Box 57" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134323" - ], - "idBarcode": [ - "33433076134323" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000057" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 55 - }, - "_score": null, - "_source": { - "uri": "i30941017", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 56" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 56", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134315" - } - ], - "enumerationChronology": [ - "Box 56" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134315" - ], - "idBarcode": [ - "33433076134315" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000056" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 54 - }, - "_score": null, - "_source": { - "uri": "i30941016", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 55" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 55", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134307" - } - ], - "enumerationChronology": [ - "Box 55" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134307" - ], - "idBarcode": [ - "33433076134307" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000055" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 53 - }, - "_score": null, - "_source": { - "uri": "i30941015", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 54" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 54", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134299" - } - ], - "enumerationChronology": [ - "Box 54" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134299" - ], - "idBarcode": [ - "33433076134299" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000054" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "uri": "i30941014", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 53" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 53", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134281" - } - ], - "enumerationChronology": [ - "Box 53" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134281" - ], - "idBarcode": [ - "33433076134281" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000053" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "uri": "i30941013", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 52" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 52", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134273" - } - ], - "enumerationChronology": [ - "Box 52" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134273" - ], - "idBarcode": [ - "33433076134273" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000052" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 50 - }, - "_score": null, - "_source": { - "uri": "i30941012", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 51" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 51", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134265" - } - ], - "enumerationChronology": [ - "Box 51" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134265" - ], - "idBarcode": [ - "33433076134265" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000051" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 49 - }, - "_score": null, - "_source": { - "uri": "i30941011", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 50" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 50", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134257" - } - ], - "enumerationChronology": [ - "Box 50" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134257" - ], - "idBarcode": [ - "33433076134257" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000050" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 48 - }, - "_score": null, - "_source": { - "uri": "i30941010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 49" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 49", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134240" - } - ], - "enumerationChronology": [ - "Box 49" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134240" - ], - "idBarcode": [ - "33433076134240" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000049" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 47 - }, - "_score": null, - "_source": { - "uri": "i30941009", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 48" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 48", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134232" - } - ], - "enumerationChronology": [ - "Box 48" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134232" - ], - "idBarcode": [ - "33433076134232" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000048" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 46 - }, - "_score": null, - "_source": { - "uri": "i30941008", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 47" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 47", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134224" - } - ], - "enumerationChronology": [ - "Box 47" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134224" - ], - "idBarcode": [ - "33433076134224" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000047" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 45 - }, - "_score": null, - "_source": { - "uri": "i30941007", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 46" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 46", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134216" - } - ], - "enumerationChronology": [ - "Box 46" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134216" - ], - "idBarcode": [ - "33433076134216" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000046" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i30941006", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 45" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 45", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134208" - } - ], - "enumerationChronology": [ - "Box 45" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134208" - ], - "idBarcode": [ - "33433076134208" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000045" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i30941005", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 44" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 44", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134190" - } - ], - "enumerationChronology": [ - "Box 44" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134190" - ], - "idBarcode": [ - "33433076134190" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000044" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i30941004", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 43" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 43", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134182" - } - ], - "enumerationChronology": [ - "Box 43" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134182" - ], - "idBarcode": [ - "33433076134182" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000043" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i30941003", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 42" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 42", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134174" - } - ], - "enumerationChronology": [ - "Box 42" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134174" - ], - "idBarcode": [ - "33433076134174" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000042" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i30941002", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 41" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 41", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134166" - } - ], - "enumerationChronology": [ - "Box 41" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134166" - ], - "idBarcode": [ - "33433076134166" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000041" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i30941001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 40" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 40", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134158" - } - ], - "enumerationChronology": [ - "Box 40" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134158" - ], - "idBarcode": [ - "33433076134158" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000040" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i30941000", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 39" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 39", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134141" - } - ], - "enumerationChronology": [ - "Box 39" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134141" - ], - "idBarcode": [ - "33433076134141" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000039" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i30940999", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 38" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134133" - } - ], - "enumerationChronology": [ - "Box 38" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134133" - ], - "idBarcode": [ - "33433076134133" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000038" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i30940998", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 37" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 37", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134125" - } - ], - "enumerationChronology": [ - "Box 37" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134125" - ], - "idBarcode": [ - "33433076134125" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000037" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i30940997", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 36" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 36", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134117" - } - ], - "enumerationChronology": [ - "Box 36" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134117" - ], - "idBarcode": [ - "33433076134117" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000036" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i30940996", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 35" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 35", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134109" - } - ], - "enumerationChronology": [ - "Box 35" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134109" - ], - "idBarcode": [ - "33433076134109" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000035" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i30940995", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 34" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 34", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134091" - } - ], - "enumerationChronology": [ - "Box 34" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134091" - ], - "idBarcode": [ - "33433076134091" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000034" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i30940994", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 33" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 33", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134083" - } - ], - "enumerationChronology": [ - "Box 33" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134083" - ], - "idBarcode": [ - "33433076134083" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000033" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i30940993", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 32" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 32", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134075" - } - ], - "enumerationChronology": [ - "Box 32" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134075" - ], - "idBarcode": [ - "33433076134075" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000032" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i30940992", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 31" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 31", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134067" - } - ], - "enumerationChronology": [ - "Box 31" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134067" - ], - "idBarcode": [ - "33433076134067" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000031" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i30940991", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 30" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 30", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134059" - } - ], - "enumerationChronology": [ - "Box 30" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134059" - ], - "idBarcode": [ - "33433076134059" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000030" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i30940990", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } - ], - "catalogItemType_packed": [ - "catalogItemType:21||archival material" - ], - "holdingLocation": [ - { - "id": "loc:rccd8", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rccd8||Offsite" - ], - "shelfMark": [ - "Sc MG 162 Box 29" - ], - "identifierV2": [ - { - "value": "Sc MG 162 Box 29", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076134042" - } - ], - "enumerationChronology": [ - "Box 29" - ], - "physicalLocation": [ - "Sc MG 162" - ], - "recapCustomerCode": [ - "NS" - ], - "identifier": [ - "urn:barcode:33433076134042" - ], - "idBarcode": [ - "33433076134042" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Mixed material" - ], - "shelfMark_sort": "aSc MG 162 box 000029" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 128, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rccd8||Offsite", - "doc_count": 127 - }, - { - "key": "loc:scdd2||Schomburg Center - Manuscripts & Archives", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:57 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "116153", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b18932917\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 35 }, - "item_format": { - "doc_count": 128, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Mixed material", - "doc_count": 128 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 128, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 114 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:t||In transit", - "doc_count": 6 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-0f5d0588bb785fd49eff14f4b51b19e4.json b/test/fixtures/query-0f5d0588bb785fd49eff14f4b51b19e4.json deleted file mode 100644 index 734c9bf5..00000000 --- a/test/fixtures/query-0f5d0588bb785fd49eff14f4b51b19e4.json +++ /dev/null @@ -1,30265 +0,0 @@ -{ - "took": 1238, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 5473288, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000109", - "_score": null, - "_source": { - "extent": [ - "xxii, 321 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [305]-321).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Americans", - "Americans -- History", - "Americans -- History -- China", - "Americans -- History -- China -- 19th century", - "Public opinion", - "Public opinion -- United States", - "Public opinion -- United States -- History", - "Public opinion -- United States -- History -- 19th century", - "United States", - "United States -- Chinese influences", - "United States -- Intellectual life", - "United States -- Intellectual life -- 19th century", - "China", - "China -- History", - "China -- History -- 19th century", - "China -- Description and travel", - "China -- In popular culture", - "United States -- Relations", - "United States -- Relations -- China", - "China -- Relations", - "China -- Relations -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Columbia University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2008 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Haddad, John Rogers." - ], - "createdString": [ - "2008" - ], - "idLccn": [ - "2008037637" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2008 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 09-1362" - }, - { - "type": "nypl:Bnumber", - "value": "10000109" - }, - { - "type": "bf:Isbn", - "value": "9780231130943 (cloth : alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "0231130945 (cloth : alk. paper)" - }, - { - "type": "bf:Lccn", - "value": "2008037637" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)184821618" - } - ], - "idOclc": [ - "184821618" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "New York : Columbia University Press, c2008." - ], - "identifier": [ - "urn:bnum:10000109", - "urn:isbn:9780231130943 (cloth : alk. paper)", - "urn:isbn:0231130945 (cloth : alk. paper)", - "urn:lccn:2008037637", - "urn:oclc:184821618", - "urn:undefined:(OCoLC)184821618" - ], - "idIsbn": [ - "9780231130943 (cloth : alk. paper)", - "0231130945 (cloth : alk. paper)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Americans -- History -- China -- 19th century.", - "Public opinion -- United States -- History -- 19th century.", - "United States -- Chinese influences.", - "United States -- Intellectual life -- 19th century.", - "China -- History -- 19th century.", - "China -- Description and travel.", - "China -- In popular culture.", - "United States -- Relations -- China.", - "China -- Relations -- United States." - ], - "titleDisplay": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." - ], - "uri": "b10000109", - "lccClassification": [ - "E183.8.C5 H175 2008" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." - ], - "idIsbn_clean": [ - "9780231130943", - "0231130945" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000109" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i23117386", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "identifierV2": [ - { - "value": "JFE 09-1362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084847221" - } - ], - "physicalLocation": [ - "JFE 09-1362" - ], - "identifier": [ - "urn:barcode:33433084847221" - ], - "idBarcode": [ - "33433084847221" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 09-001362" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783799", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLF 82-5145" - ], - "identifierV2": [ - { - "value": "*OLF 82-5145", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061318089" - } - ], - "physicalLocation": [ - "*OLF 82-5145" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061318089" - ], - "idBarcode": [ - "33433061318089" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLF 82-005145" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001333", - "_score": null, - "_source": { - "extent": [ - "v. : ill., folded maps ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Geomorphology", - "Geomorphology -- Libya" - ], - "publisherLiteral": [ - "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" - ], - "shelfMark": [ - "*OFO 82-5116" - ], - "creatorLiteral": [ - "Jawdah, Jawdah Ḥasanayn." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75960642" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFO 82-5116" - }, - { - "type": "nypl:Bnumber", - "value": "10001333" - }, - { - "type": "bf:Lccn", - "value": "75960642" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201348" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201331" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636070536203, - "publicationStatement": [ - "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" - ], - "identifier": [ - "urn:bnum:10001333", - "urn:lccn:75960642", - "urn:undefined:NNSZ00201348", - "urn:undefined:(WaOLN)nyp0201331" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Geomorphology -- Libya." - ], - "titleDisplay": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." - ], - "uri": "b10001333", - "lccClassification": [ - "GB440.L5 J38" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Binghāzī] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - "b10001333" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000872", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode: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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000871", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001377", - "_score": null, - "_source": { - "extent": [ - "71 p. : ill., music ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 69).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Silbermann, Gottfried, 1683-1753", - "Organ (Musical instrument)", - "Organ (Musical instrument) -- Instruction and study", - "Improvisation (Music)", - "Improvisation (Music) -- Instruction and study", - "Organ music", - "Organ music -- Interpretation (Phrasing, dynamics, etc.)", - "Organ builders", - "Organ builders -- Germany" - ], - "publisherLiteral": [ - "Verlag Klaus-Jürgen Kamprad" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 2007 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Choralimprovisation auf Orgeln Gottfried Silbermanns" - ], - "shelfMark": [ - "JMG 09-710" - ], - "creatorLiteral": [ - "Wagler, Dietrich, 1940-" - ], - "createdString": [ - "2007" - ], - "seriesStatement": [ - "Freiberger Studien zur Orgel ; 10" - ], - "contributorLiteral": [ - "Gottfried-Silbermann-Gesellschaft." - ], - "dateStartYear": [ - 2007 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 09-710" - }, - { - "type": "nypl:Bnumber", - "value": "10001377" - }, - { - "type": "bf:Isbn", - "value": "9783930550494 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "3930550490 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "439765611" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)439765611" - } - ], - "idOclc": [ - "439765611" - ], - "updatedAt": 1652323426362, - "publicationStatement": [ - "[Altenburg] : Verlag Klaus-Jürgen Kamprad, c2007." - ], - "identifier": [ - "urn:bnum:10001377", - "urn:isbn:9783930550494 (pbk.)", - "urn:isbn:3930550490 (pbk.)", - "urn:oclc:439765611", - "urn:undefined:(OCoLC)439765611" - ], - "idIsbn": [ - "9783930550494 (pbk.)", - "3930550490 (pbk.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Silbermann, Gottfried, 1683-1753.", - "Organ (Musical instrument) -- Instruction and study.", - "Improvisation (Music) -- Instruction and study.", - "Organ music -- Interpretation (Phrasing, dynamics, etc.)", - "Organ builders -- Germany." - ], - "titleDisplay": [ - "Choralimprovisation auf Orgeln Gottfried Silbermanns / Dietrich Wagler ; [Hrsg.: Gottfried-Silbermann-Gesellschaft]." - ], - "uri": "b10001377", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Altenburg]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "9783930550494", - "3930550490" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10001377" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433089337251" - ], - "physicalLocation": [ - "JMG 09-710" - ], - "shelfMark_sort": "aJMG 09-000710", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i24299761", - "shelfMark": [ - "JMG 09-710" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 09-710" - }, - { - "type": "bf:Barcode", - "value": "33433089337251" - } - ], - "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" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001657", - "_score": null, - "_source": { - "extent": [ - "v. : ill., maps ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on p. [4] of cover: Village gazetteer.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English and Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Gazetteers", - "Villages", - "Villages -- Iran", - "Villages -- Iran -- Statistics" - ], - "publisherLiteral": [ - "Markaz-i Āmār-i Īrān," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "shelfMark": [ - "Map Div. 84-146" - ], - "creatorLiteral": [ - "Markaz-i Āmār-i Īrān." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "81464564" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146" - }, - { - "type": "nypl:Bnumber", - "value": "10001657" - }, - { - "type": "bf:Lccn", - "value": "81464564" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201692" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201655" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636095534719, - "publicationStatement": [ - "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" - ], - "identifier": [ - "urn:bnum:10001657", - "urn:lccn:81464564", - "urn:undefined:NNSZ00201692", - "urn:undefined:(WaOLN)nyp0201655" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Gazetteers.", - "Villages -- Iran -- Statistics." - ], - "titleDisplay": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "uri": "b10001657", - "lccClassification": [ - "DS253 .M37" - ], - "numItems": [ - 11 - ], - "numAvailable": [ - 11 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Village gazetteer." - ], - "tableOfContents": [ - "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." - ], - "dimensions": [ - "42x54 cm." - ] - }, - "sort": [ - "b10001657" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 11, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030870" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000017", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784147", - "shelfMark": [ - "Map Div. 84-146 v. 17" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030862" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000015", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784146", - "shelfMark": [ - "Map Div. 84-146 v. 15" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030854" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784145", - "shelfMark": [ - "Map Div. 84-146 v. 14" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030847" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000010", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784144", - "shelfMark": [ - "Map Div. 84-146 v. 10" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 10" - }, - { - "type": "bf:Barcode", - "value": "33433057030847" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 10" - ], - "idBarcode": [ - "33433057030847" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030839" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000009", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784143", - "shelfMark": [ - "Map Div. 84-146 v. 9" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 9" - }, - { - "type": "bf:Barcode", - "value": "33433057030839" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 9" - ], - "idBarcode": [ - "33433057030839" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030821" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000006", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784142", - "shelfMark": [ - "Map Div. 84-146 v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433057030821" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433057030821" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030813" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784141", - "shelfMark": [ - "Map Div. 84-146 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433057030813" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433057030813" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030805" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784140", - "shelfMark": [ - "Map Div. 84-146 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433057030805" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433057030805" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030797" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784139", - "shelfMark": [ - "Map Div. 84-146 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057030797" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057030797" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030789" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784138", - "shelfMark": [ - "Map Div. 84-146 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057030789" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057030789" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030771" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784137", - "shelfMark": [ - "Map Div. 84-146 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057030771" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057030771" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001844", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu philosophy", - "Vedanta" - ], - "publisherLiteral": [ - "Chaukhambā Vidyābhavana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." - ], - "shelfMark": [ - "*OKN 82-2276" - ], - "creatorLiteral": [ - "Bādarāyaṇa." - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 65007118" - ], - "seriesStatement": [ - "Vidyābhavara Saṃskrta granthamālā, 124" - ], - "contributorLiteral": [ - "Sastri, Hanumanadas, Swami.", - "Śaṅkarācārya." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "nypl:Bnumber", - "value": "10001844" - }, - { - "type": "bf:Lccn", - "value": "sa 65007118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201882" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201842" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636079011965, - "publicationStatement": [ - "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" - ], - "identifier": [ - "urn:bnum:10001844", - "urn:lccn:sa 65007118", - "urn:undefined:NNSZ00201882", - "urn:undefined:(WaOLN)nyp0201842" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu philosophy.", - "Vedanta." - ], - "titleDisplay": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." - ], - "uri": "b10001844", - "lccClassification": [ - "B132.V3 B22" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasī," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Brahmasūtra Śaṅkarbhāṣya." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10001844" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058617816" - ], - "physicalLocation": [ - "*OKN 82-2276" - ], - "shelfMark_sort": "a*OKN 82-002276", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784177", - "shelfMark": [ - "*OKN 82-2276" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "bf:Barcode", - "value": "33433058617816" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058617816" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003410", - "_score": null, - "_source": { - "extent": [ - "v. facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Introd. in Arabic and English ; text in Arabic.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: v. 1, p. [313]-314.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic law" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ikhtilāf al-fuqahāʼ," - ], - "shelfMark": [ - "*OGM 84-702" - ], - "creatorLiteral": [ - "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72930954" - ], - "seriesStatement": [ - "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" - ], - "contributorLiteral": [ - "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "nypl:Bnumber", - "value": "10003410" - }, - { - "type": "bf:Lccn", - "value": "72930954" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303765" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203402" - } - ], - "uniformTitle": [ - "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636104747880, - "publicationStatement": [ - "Islām Ābād [1971-" - ], - "identifier": [ - "urn:bnum:10003410", - "urn:lccn:72930954", - "urn:undefined:NNSZ00303765", - "urn:undefined:(WaOLN)nyp0203402" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic law." - ], - "titleDisplay": [ - "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." - ], - "uri": "b10003410", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Islām Ābād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003410" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001944960" - ], - "physicalLocation": [ - "*OGM 84-702" - ], - "shelfMark_sort": "a*OGM 84-000702", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002358", - "shelfMark": [ - "*OGM 84-702" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "bf:Barcode", - "value": "33433001944960" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001944960" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003414", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Skandamahāpurāṇam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added t.p. in English or Hindi.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Manasukharāya Mora," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Skandamahāpurāṇam" - ], - "shelfMark": [ - "*OKOK 84-641" - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "73902099" - ], - "seriesStatement": [ - "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641" - }, - { - "type": "nypl:Bnumber", - "value": "10003414" - }, - { - "type": "bf:Lccn", - "value": "73902099" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303769" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203406" - } - ], - "uniformTitle": [ - "Puranas Skanda Purāṇa." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636124303127, - "publicationStatement": [ - "Kalakattā : Manasukharāya Mora, 1960-" - ], - "identifier": [ - "urn:bnum:10003414", - "urn:lccn:73902099", - "urn:undefined:NNSZ00303769", - "urn:undefined:(WaOLN)nyp0203406" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." - ], - "uri": "b10003414", - "lccClassification": [ - "PK3621 .S5 1960" - ], - "numItems": [ - 6 - ], - "numAvailable": [ - 6 - ], - "placeOfPublication": [ - "Kalakattā :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Skanda-Purāṇam." - ], - "tableOfContents": [ - "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10003414" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 6, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002364", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002363", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221407" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002362", - "shelfMark": [ - "*OKOK 84-641 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013221407" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013221407" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221399" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002365", - "shelfMark": [ - "*OKOK 84-641 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433013221399" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433013221399" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221381" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002361", - "shelfMark": [ - "*OKOK 84-641 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433013221381" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433013221381" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221373" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002360", - "shelfMark": [ - "*OKOK 84-641 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013221373" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013221373" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003502", - "_score": null, - "_source": { - "extent": [ - "v. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Partly translations from German poetry (with German texts included).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Liesma," - ], - "language": [ - { - "id": "lang:lav", - "label": "Latvian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dziesmiņas" - ], - "shelfMark": [ - "*QYN 82-2046" - ], - "creatorLiteral": [ - "Alunāns, Juris, 1832-1864." - ], - "createdString": [ - "1981" - ], - "seriesStatement": [ - "Literārā mantojuma mazā bibliotēka" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046" - }, - { - "type": "nypl:Bnumber", - "value": "10003502" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303857" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203494" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636091475285, - "publicationStatement": [ - "Riga : Liesma, 1981-" - ], - "identifier": [ - "urn:bnum:10003502", - "urn:undefined:NNSZ00303857", - "urn:undefined:(WaOLN)nyp0203494" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dziesmiņas / Juris Alunāns." - ], - "uri": "b10003502", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Riga :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "17 cm." - ] - }, - "sort": [ - "b10003502" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002421", - "shelfMark": [ - "*QYN 82-2046 Dala 1." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046 Dala 1." - }, - { - "type": "bf:Barcode", - "value": "33433013501782" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013501782" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003671", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Egypt", - "Egypt -- Politics and government", - "Egypt -- Politics and government -- 640-1882" - ], - "publisherLiteral": [ - "Maktabat al-Anjlū al-Miṣrīyah," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." - ], - "shelfMark": [ - "*OFP 82-1931" - ], - "creatorLiteral": [ - "Mājid, ʻAbd al-Munʻim." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "73960873" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10003671" - }, - { - "type": "bf:Lccn", - "value": "73960873" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304029" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203663" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636119319155, - "publicationStatement": [ - "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" - ], - "identifier": [ - "urn:bnum:10003671", - "urn:lccn:73960873", - "urn:undefined:NNSZ00304029", - "urn:undefined:(WaOLN)nyp0203663" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Egypt -- Politics and government -- 640-1882." - ], - "titleDisplay": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." - ], - "uri": "b10003671", - "lccClassification": [ - "JQ3824 .M34 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Institutions et cérémonial des Fatimides en Égypte." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003671" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001937121" - ], - "physicalLocation": [ - "*OFP 82-1931" - ], - "shelfMark_sort": "a*OFP 82-001931", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002566", - "shelfMark": [ - "*OFP 82-1931" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "bf:Barcode", - "value": "33433001937121" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001937121" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003719", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 2 & 4: pariṣkarta Puripanda.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Telugu literature", - "Telugu literature -- History and criticism" - ], - "publisherLiteral": [ - "Āndhrapradēś Sāhitya Akāḍami" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." - ], - "shelfMark": [ - "*OLC 83-35" - ], - "creatorLiteral": [ - "Subrahmanyam, G. V., 1935-" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "71912553" - ], - "contributorLiteral": [ - "Appalaswamy, Puripanda, 1904-", - "Āndhra Pradēśa Sāhitya Akāḍami." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35" - }, - { - "type": "nypl:Bnumber", - "value": "10003719" - }, - { - "type": "bf:Lccn", - "value": "71912553" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304078" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203711" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132209400, - "publicationStatement": [ - "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" - ], - "identifier": [ - "urn:bnum:10003719", - "urn:lccn:71912553", - "urn:undefined:NNSZ00304078", - "urn:undefined:(WaOLN)nyp0203711" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Telugu literature -- History and criticism." - ], - "titleDisplay": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." - ], - "uri": "b10003719", - "lccClassification": [ - "PL4780.05 S79" - ], - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Haidrābādu," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003719" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197476" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002605", - "shelfMark": [ - "*OLC 83-35 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433011197476" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433011197476" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197468" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002604", - "shelfMark": [ - "*OLC 83-35 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433011197468" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433011197468" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197450" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002603", - "shelfMark": [ - "*OLC 83-35 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433011197450" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433011197450" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197443" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002602", - "shelfMark": [ - "*OLC 83-35 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433011197443" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433011197443" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197435" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002601", - "shelfMark": [ - "*OLC 83-35 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433011197435" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433011197435" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004373", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994" - ], - "publisherLiteral": [ - "Karnāṭaka Sahakārī Prakāśana Mandira" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu." - ], - "shelfMark": [ - "*OLA 83-3417" - ], - "creatorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902119" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417" - }, - { - "type": "nypl:Bnumber", - "value": "10004373" - }, - { - "type": "bf:Lccn", - "value": "72902119" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304738" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204365" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636109940889, - "publicationStatement": [ - "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" - ], - "identifier": [ - "urn:bnum:10004373", - "urn:lccn:72902119", - "urn:undefined:NNSZ00304738", - "urn:undefined:(WaOLN)nyp0204365" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994." - ], - "titleDisplay": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." - ], - "uri": "b10004373", - "lccClassification": [ - "PL4659.P797 S7934" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004373" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003188", - "shelfMark": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417 Library has: Vol. 1, 3." - }, - { - "type": "bf:Barcode", - "value": "33433001707623" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001707623" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057523718" - ], - "physicalLocation": [ - "*OLA 83-341" - ], - "shelfMark_sort": "a*OLA 83-341 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858227", - "shelfMark": [ - "*OLA 83-341 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-341 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057523718" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057523718" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004816", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Martins Livreiro-Editor," - ], - "language": [ - { - "id": "lang:por", - "label": "Portuguese" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A outra face de J. Simões Lopes Neto" - ], - "shelfMark": [ - "JFK 84-291" - ], - "creatorLiteral": [ - "Lopes Neto, J. Simões (João Simões), 1865-1916." - ], - "createdString": [ - "1983" - ], - "idLccn": [ - "84227211" - ], - "contributorLiteral": [ - "Moreira, Angelo Pires." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291" - }, - { - "type": "nypl:Bnumber", - "value": "10004816" - }, - { - "type": "bf:Lccn", - "value": "84227211" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204806" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636069640817, - "publicationStatement": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" - ], - "identifier": [ - "urn:bnum:10004816", - "urn:lccn:84227211", - "urn:undefined:(WaOLN)nyp0204806" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." - ], - "uri": "b10004816", - "lccClassification": [ - "PQ9697.L7223 A6 1983" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004816" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003418559" - ], - "physicalLocation": [ - "JFK 84-291" - ], - "shelfMark_sort": "aJFK 84-291 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003383", - "shelfMark": [ - "JFK 84-291 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433003418559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433003418559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004947", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Geografi︠i︡a.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 170.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1926 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-221 no. 8" - ], - "creatorLiteral": [ - "Räshad, Gafyr." - ], - "createdString": [ - "1926" - ], - "dateStartYear": [ - 1926 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-221 no. 8" - }, - { - "type": "nypl:Bnumber", - "value": "10004947" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406058" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204937" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403668, - "publicationStatement": [ - "Baqï : Azärnäshr, 1926-" - ], - "identifier": [ - "urn:bnum:10004947", - "urn:undefined:NNSZ00406058", - "urn:undefined:(WaOLN)nyp0204937" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1926" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Gafyr Räshad." - ], - "uri": "b10004947", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Geografi︠i︡a." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10004947" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105673499" - ], - "physicalLocation": [ - "*ZO-221" - ], - "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30081242", - "shelfMark": [ - "*ZO-221 11 Azerbaijani monographs" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005127", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 151.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1928 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-216 no. 15" - ], - "creatorLiteral": [ - "Ivanov, G." - ], - "createdString": [ - "1928" - ], - "dateStartYear": [ - 1928 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-216 no. 15" - }, - { - "type": "nypl:Bnumber", - "value": "10005127" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406243" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205116" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403606, - "publicationStatement": [ - "Baqï : Azärnäshr, 1928-" - ], - "identifier": [ - "urn:bnum:10005127", - "urn:undefined:NNSZ00406243", - "urn:undefined:(WaOLN)nyp0205116" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1928" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." - ], - "uri": "b10005127", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Nachalʹnyĭ kurs geografii." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005211", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Khaos.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 586.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1929 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Xaos [microform]" - ], - "shelfMark": [ - "*ZO-220 no. 9" - ], - "creatorLiteral": [ - "Shirvanzade, 1858-1935." - ], - "createdString": [ - "1929" - ], - "dateStartYear": [ - 1929 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10005211" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406328" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205200" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636144501921, - "publicationStatement": [ - "Bagï : Azärnäshr, 1929" - ], - "identifier": [ - "urn:bnum:10005211", - "urn:undefined:NNSZ00406328", - "urn:undefined:(WaOLN)nyp0205200" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1929" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts." - ], - "titleDisplay": [ - "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." - ], - "uri": "b10005211", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bagï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Khaos." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005211" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105674059" - ], - "physicalLocation": [ - "*ZO-220" - ], - "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30087469", - "shelfMark": [ - "*ZO-220 collection of 10 titles (monographs)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 collection of 10 titles (monographs)" - }, - { - "type": "bf:Barcode", - "value": "33433105674059" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "collection of 10 titles (monographs)" - ], - "idBarcode": [ - "33433105674059" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005860", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Swahili.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Swahili language", - "Swahili language -- Texts" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:swa", - "label": "Swahili" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "shelfMark": [ - "Sc Ser.-N .Z288" - ], - "creatorLiteral": [ - "Zanzibar." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-N .Z288" - }, - { - "type": "nypl:Bnumber", - "value": "10005860" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205850" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636116169694, - "publicationStatement": [ - "[Zanzibar : s.n., 1980- ]" - ], - "identifier": [ - "urn:bnum:10005860", - "urn:undefined:NNSZ00507074", - "urn:undefined:(WaOLN)nyp0205850" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Swahili language -- Texts." - ], - "titleDisplay": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "uri": "b10005860", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Zanzibar :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Kitabu cha 1-9." - ], - "dimensions": [ - "13-31 cm." - ] - }, - "sort": [ - "b10005860" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942241", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-N .Z288 Kituba cha 1-9" - ], - "identifierV2": [ - { - "value": "Sc Ser.-N .Z288 Kituba cha 1-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030859007" - } - ], - "physicalLocation": [ - "Sc Ser.-N .Z288" - ], - "enumerationChronology": [ - "Kituba cha 1-9" - ], - "identifier": [ - "urn:barcode:33433030859007" - ], - "idBarcode": [ - "33433030859007" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005862", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Editor: Gerald A. McWorter.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Study and teaching", - "African Americans -- Study and teaching -- Congresses", - "Black people", - "Black people -- Study and teaching", - "Black people -- Study and teaching -- Congresses" - ], - "publisherLiteral": [ - "Afro-American Studies and Research Program, University of Illinois," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Proceedings" - ], - "shelfMark": [ - "Sc Ser.-M .N3674" - ], - "creatorLiteral": [ - "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" - ], - "createdString": [ - "1983" - ], - "contributorLiteral": [ - "McWorter, Gerald A." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .N3674" - }, - { - "type": "nypl:Bnumber", - "value": "10005862" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507076" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205852" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144093", - "shelfMark": [ - "Sc Ser.-M .N3674" - ] - } - ], - "updatedAt": 1643270732538, - "publicationStatement": [ - "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" - ], - "identifier": [ - "urn:bnum:10005862", - "urn:undefined:NNSZ00507076", - "urn:undefined:(WaOLN)nyp0205852" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Study and teaching -- Congresses.", - "Black people -- Study and teaching -- Congresses." - ], - "titleDisplay": [ - "Proceedings / National Council for Black Studies, 6th annual national conference." - ], - "uri": "b10005862", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Urbana, Ill. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005862" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i17447316", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 3-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219805" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 3-5" - ], - "identifier": [ - "urn:barcode:33433072219805" - ], - "idBarcode": [ - "33433072219805" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000003-5" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746590", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219797" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 1-2" - ], - "identifier": [ - "urn:barcode:33433072219797" - ], - "idBarcode": [ - "33433072219797" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000001-2" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005898", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Creole dialects, French", - "Creole dialects, French -- Haiti", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" - ], - "publisherLiteral": [ - "I.L.A. de Port-au-Prince," - ], - "language": [ - { - "id": "lang:crp", - "label": "Creoles and Pidgins (Other)" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Leson kreyòl pou etranje ki pale franse \\" - ], - "shelfMark": [ - "Sc Ser.-M .M468" - ], - "creatorLiteral": [ - "Mirville, Ernst." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Collection Coucoville", - "Siwolin; \\t.2" - ], - "contributorLiteral": [ - "Institut de linguistique appliquée de Port-au-Prince." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .M468" - }, - { - "type": "nypl:Bnumber", - "value": "10005898" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507113" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205888" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144290", - "shelfMark": [ - "Sc Ser.-M .M468" - ] - } - ], - "updatedAt": 1636113236627, - "publicationStatement": [ - "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" - ], - "identifier": [ - "urn:bnum:10005898", - "urn:undefined:NNSZ00507113", - "urn:undefined:(WaOLN)nyp0205888" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." - ], - "titleDisplay": [ - "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." - ], - "uri": "b10005898", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Port-au-Prince :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005898" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900486", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .M468 t. 2, ptie 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .M468 t. 2, ptie 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017863220" - } - ], - "physicalLocation": [ - "Sc Ser.-M .M468" - ], - "enumerationChronology": [ - "t. 2, ptie 1" - ], - "identifier": [ - "urn:barcode:33433017863220" - ], - "idBarcode": [ - "33433017863220" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005907", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Discography: p. 115-122.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- History and criticism" - ], - "publisherLiteral": [ - "Producciones Don Pedro," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "En torno al jazz" - ], - "shelfMark": [ - "Sc Ser.-L .V354" - ], - "creatorLiteral": [ - "Vélez, Ana." - ], - "createdString": [ - "1978" - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-L .V354" - }, - { - "type": "nypl:Bnumber", - "value": "10005907" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507122" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205897" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636093384929, - "publicationStatement": [ - "San Juan, P.R. : Producciones Don Pedro, 1978-" - ], - "identifier": [ - "urn:bnum:10005907", - "urn:undefined:NNSZ00507122", - "urn:undefined:(WaOLN)nyp0205897" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- History and criticism." - ], - "titleDisplay": [ - "En torno al jazz / Ana Vélez." - ], - "uri": "b10005907", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "San Juan, P.R. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10005907" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900496", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017895651" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433017895651" - ], - "idBarcode": [ - "33433017895651" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900495", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030890481" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 1" - ], - "identifier": [ - "urn:barcode:33433030890481" - ], - "idBarcode": [ - "33433030890481" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006011", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tem language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tem" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Der-Houssikian, Haig." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .T425" - }, - { - "type": "nypl:Bnumber", - "value": "10006011" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507231" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206003" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132578775, - "publicationStatement": [ - "Brattleboro, vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006011", - "urn:undefined:NNSZ00507231", - "urn:undefined:(WaOLN)nyp0206003" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tem language." - ], - "titleDisplay": [ - "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Communication and culture handbook/by Haig Der-Houssikian.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i23169346", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .T425", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076233265" - } - ], - "physicalLocation": [ - "Sc Ser.-M .T425" - ], - "identifier": [ - "urn:barcode:33433076233265" - ], - "idBarcode": [ - "33433076233265" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .T000425" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006012", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kabre language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kabiye" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Experiment in International Living.", - "Jassor, Essogoye.", - "Sedlak, Philip Alan Stephen, 1939-" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc F 84-135" - }, - { - "type": "nypl:Bnumber", - "value": "10006012" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507232" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206004" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108841395, - "publicationStatement": [ - "Brattleboro, Vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006012", - "urn:undefined:NNSZ00507232", - "urn:undefined:(WaOLN)nyp0206004" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kabre language." - ], - "titleDisplay": [ - "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, Vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900585", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "identifierV2": [ - { - "value": "Sc F 84-135", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036872368" - } - ], - "physicalLocation": [ - "Sc F 84-135" - ], - "identifier": [ - "urn:barcode:33433036872368" - ], - "idBarcode": [ - "33433036872368" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 84-000135" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006018", - "_score": null, - "_source": { - "extent": [ - "v. : ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Corrections to volume I\": v. 2, p. 69.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iota Phi Lambda" - ], - "publisherLiteral": [ - "The Sorority," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1959 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A History of Iota Phi Lambda Sorority." - ], - "shelfMark": [ - "Sc Ser.-M .H592" - ], - "createdString": [ - "1959" - ], - "contributorLiteral": [ - "Greene, Ethel K.", - "Sims, Sarah B." - ], - "dateStartYear": [ - 1959 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .H592" - }, - { - "type": "nypl:Bnumber", - "value": "10006018" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507238" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206010" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1142937", - "shelfMark": [ - "Sc Ser.-M .H592" - ] - } - ], - "updatedAt": 1636069378411, - "publicationStatement": [ - "Washington : The Sorority, 1959-" - ], - "identifier": [ - "urn:bnum:10006018", - "urn:undefined:NNSZ00507238", - "urn:undefined:(WaOLN)nyp0206010" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iota Phi Lambda." - ], - "titleDisplay": [ - "A History of Iota Phi Lambda Sorority." - ], - "uri": "b10006018", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Washington :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746595", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061038323" - } - ], - "physicalLocation": [ - "Sc Ser.-M .H592" - ], - "enumerationChronology": [ - "v. 1, 2 (1928-19, 1959-69)" - ], - "identifier": [ - "urn:barcode:33433061038323" - ], - "idBarcode": [ - "33433061038323" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006159", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Civil rights", - "Civil rights", - "Civil rights -- United States", - "Violence", - "Violence -- United States" - ], - "publisherLiteral": [ - "American Foundation for Negro Affairs," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Law and disorder [microform] : a research position paper" - ], - "shelfMark": [ - "Sc Micro R-4202, no. 16" - ], - "creatorLiteral": [ - "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." - ], - "createdString": [ - "1970" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro R-4202, no. 16" - }, - { - "type": "nypl:Bnumber", - "value": "10006159" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507384" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206150" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636111916018, - "publicationStatement": [ - "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" - ], - "identifier": [ - "urn:bnum:10006159", - "urn:undefined:NNSZ00507384", - "urn:undefined:(WaOLN)nyp0206150" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Civil rights.", - "Civil rights -- United States.", - "Violence -- United States." - ], - "titleDisplay": [ - "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." - ], - "uri": "b10006159", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Philadelphia, Pa. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 x 28 cm." - ] - }, - "sort": [ - "b10006159" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i24023455", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4202" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4202", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059035760" - } - ], - "physicalLocation": [ - "Sc Micro R-4202" - ], - "identifier": [ - "urn:barcode:33433059035760" - ], - "idBarcode": [ - "33433059035760" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-004202" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006540", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 issued without edition statement has imprint date 1972.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Germany", - "Germany -- History", - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945", - "World War, 1939-1945 -- Germany" - ], - "publisherLiteral": [ - "Selbstverlag," - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Was geschah nach 1945?" - ], - "shelfMark": [ - "JFK 84-184" - ], - "creatorLiteral": [ - "Roth, Heinz." - ], - "createdString": [ - "1970" - ], - "seriesStatement": [ - "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", - "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184" - }, - { - "type": "nypl:Bnumber", - "value": "10006540" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507771" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206529" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636143161690, - "publicationStatement": [ - "Odenhausen/Lumda : Selbstverlag, [197-?-" - ], - "identifier": [ - "urn:bnum:10006540", - "urn:undefined:NNSZ00507771", - "urn:undefined:(WaOLN)nyp0206529" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945 -- Germany." - ], - "titleDisplay": [ - "Was geschah nach 1945? / Heinz Roth." - ], - "uri": "b10006540", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Odenhausen/Lumda :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Was geschah nach neunzehnhundertfünfundvierzig." - ], - "tableOfContents": [ - "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006540" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003841073" - ], - "physicalLocation": [ - "JFK 84-184" - ], - "shelfMark_sort": "aJFK 84-184 v. 000001-2", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003927", - "shelfMark": [ - "JFK 84-184 v. 1-2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184 v. 1-2" - }, - { - "type": "bf:Barcode", - "value": "33433003841073" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1-2" - ], - "idBarcode": [ - "33433003841073" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006622", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Caldas (Colombia : Department)", - "Caldas (Colombia : Department) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Biblioteca de Escritores Caldenses" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Historia del Gran Caldas" - ], - "shelfMark": [ - "HDK 84-1693" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Ríos Tobón, Ricardo de los." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "HDK 84-1693" - }, - { - "type": "nypl:Bnumber", - "value": "10006622" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000779-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507853" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206611" - } - ], - "idOclc": [ - "NYPG005000779-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1676385946742, - "publicationStatement": [ - "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" - ], - "identifier": [ - "urn:bnum:10006622", - "urn:oclc:NYPG005000779-B", - "urn:undefined:NNSZ00507853", - "urn:undefined:(WaOLN)nyp0206611" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Caldas (Colombia : Department) -- History." - ], - "titleDisplay": [ - "Historia del Gran Caldas / Ricardo de los Ríos Tobón." - ], - "uri": "b10006622", - "numItems": [ - 1 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Manizales, Colombia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Origenes y colonización hasta 1850." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006622" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746647", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "HDK 84-1693 v. 1" - ], - "identifierV2": [ - { - "value": "HDK 84-1693 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433097665214" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "HDK 84-1693" - ], - "identifier": [ - "urn:barcode:33433097665214" - ], - "idBarcode": [ - "33433097665214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-02-15" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aHDK 84-1693 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006687", - "_score": null, - "_source": { - "extent": [ - "v. : ill., ports, ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "publisherLiteral": [ - "Bókaútgáfan Skjaldborg," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-217" - ], - "creatorLiteral": [ - "Eiður Guðmundsson, 1888-1984." - ], - "createdString": [ - "1982" - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217" - }, - { - "type": "nypl:Bnumber", - "value": "10006687" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507920" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206676" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Akureyri : Bókaútgáfan Skjaldborg, 1982-" - ], - "identifier": [ - "urn:bnum:10006687", - "urn:undefined:NNSZ00507920", - "urn:undefined:(WaOLN)nyp0206676" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "titleDisplay": [ - "Ritsafn / Eidur Gudmundsson Púfnav;ollum." - ], - "uri": "b10006687", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Akureyri :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10006687" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069567" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003946", - "shelfMark": [ - "JFL 84-217 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069567" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069567" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069559" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003945", - "shelfMark": [ - "JFL 84-217 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006688", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iceland", - "Iceland -- Economic conditions", - "Iceland -- History", - "Iceland -- Social conditions" - ], - "publisherLiteral": [ - "Mál og Menning," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-216" - ], - "creatorLiteral": [ - "Sverrir Kristjánsson, 1908-" - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216" - }, - { - "type": "nypl:Bnumber", - "value": "10006688" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507921" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206677" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Reykjavík : Mál og Menning, 1981-" - ], - "identifier": [ - "urn:bnum:10006688", - "urn:undefined:NNSZ00507921", - "urn:undefined:(WaOLN)nyp0206677" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iceland -- Economic conditions.", - "Iceland -- History.", - "Iceland -- Social conditions." - ], - "titleDisplay": [ - "Ritsafn / Sverrir Kristjánsson." - ], - "uri": "b10006688", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Reykjavík :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10006688" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069542" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003948", - "shelfMark": [ - "JFL 84-216 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069542" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069542" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069534" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003947", - "shelfMark": [ - "JFL 84-216 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069534" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069534" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006705", - "_score": null, - "_source": { - "extent": [ - "v. : ill. (some col.);" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vernacular architecture", - "Vernacular architecture -- Greece", - "Architecture, Domestic", - "Architecture, Domestic -- Greece" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ekdot. Oikos \"Melissa,\"" - ], - "language": [ - { - "id": "lang:gre", - "label": "Greek, Modern (1453- )" - } - ], - "numItemsTotal": [ - 7 - ], - "createdYear": [ - 1982 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hellēnikē paradosiakē architektonikē" - ], - "shelfMark": [ - "3-MQW+ 84-2551" - ], - "numItemVolumesParsed": [ - 7 - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83177376" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Philippidēs, Dēmētrēs." - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MQW+ 84-2551" - }, - { - "type": "nypl:Bnumber", - "value": "10006705" - }, - { - "type": "bf:Lccn", - "value": "83177376" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000864-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206694" - } - ], - "idOclc": [ - "NYPG005000864-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675271456381, - "publicationStatement": [ - "Athēna : Ekdot. Oikos \"Melissa,\" c1982-" - ], - "identifier": [ - "urn:bnum:10006705", - "urn:lccn:83177376", - "urn:oclc:NYPG005000864-B", - "urn:undefined:(WaOLN)nyp0206694" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vernacular architecture -- Greece.", - "Architecture, Domestic -- Greece." - ], - "titleDisplay": [ - "Hellēnikē paradosiakē architektonikē / symvoulos kai syntonistēs tēs ekdosēs, Dēmētrēs Philippidēs ; [phōtographies, V. Voutsas]." - ], - "uri": "b10006705", - "lccClassification": [ - "NA1091 .H44 1982" - ], - "numItems": [ - 7 - ], - "numAvailable": [ - 7 - ], - "placeOfPublication": [ - "Athēna" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "t. 1. Anatoliko Aigaio. Sporades. Heptanēsa -- t. 2. Kyklades -- t. 3. Dōdekanēsa-Krētē -- t. 4. Peloponnēsos I -- t. 5 Peloponnesos II, Sterea Hellada -- t. 6. Thessalia-Ēpeiros -- t. 7. Makedonia I." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10006705" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 7, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i14746675", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 7" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160679" - } - ], - "enumerationChronology": [ - "v. 7" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160679" - ], - "idBarcode": [ - "33433105160679" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "enumerationChronology_sort": [ - " 7-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007" - }, - "sort": [ - " 7-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i14746674", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 6" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160661" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160661" - ], - "idBarcode": [ - "33433105160661" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i14746673", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 5" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160653" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160653" - ], - "idBarcode": [ - "33433105160653" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i14746672", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 4" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160646" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160646" - ], - "idBarcode": [ - "33433105160646" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i14746671", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 3" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160638" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160638" - ], - "idBarcode": [ - "33433105160638" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i14746670", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 2" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160620" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160620" - ], - "idBarcode": [ - "33433105160620" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746669", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 1" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160612" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160612" - ], - "idBarcode": [ - "33433105160612" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006715", - "_score": null, - "_source": { - "extent": [ - "v. : ill. (some ed.);" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on spine: 2222.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Austria", - "Austria -- Relations", - "Austria -- Relations -- United States", - "United States", - "United States -- Relations", - "United States -- Relations -- Austria" - ], - "publisherLiteral": [ - "The author," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Quadruple 2" - ], - "shelfMark": [ - "ICM (Austria) 85-584" - ], - "creatorLiteral": [ - "Humes, John P." - ], - "createdString": [ - "1970" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ICM (Austria) 85-584" - }, - { - "type": "nypl:Bnumber", - "value": "10006715" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507948" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206704" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636124417162, - "publicationStatement": [ - "[S.l. : The author, 197-]" - ], - "identifier": [ - "urn:bnum:10006715", - "urn:undefined:NNSZ00507948", - "urn:undefined:(WaOLN)nyp0206704" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Austria -- Relations -- United States.", - "United States -- Relations -- Austria." - ], - "titleDisplay": [ - "Quadruple 2 / by John P. Humes." - ], - "uri": "b10006715", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "2222.", - "Quadruple two." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006715" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746681", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "ICM (Austria) 85-584 v. 2" - ], - "identifierV2": [ - { - "value": "ICM (Austria) 85-584 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433090390752" - } - ], - "physicalLocation": [ - "ICM (Austria) 85-584" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433090390752" - ], - "idBarcode": [ - "33433090390752" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aICM (Austria) 85-584 v. 000002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10007240", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Imprint on cover: Tañcāvūr Mahārājā Carapōjiyiṉ Caracuvati Makāl Nūl Nilaiyam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Glossaries, vocabularies, etc" - ], - "publisherLiteral": [ - "Tañcai Caracuvati Makāl Nūl Nilaiya Nirvākak Kuḻu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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ṉ" - ], - "shelfMark": [ - "*OLB 84-3259" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "77902870" - ], - "seriesStatement": [ - "Tañcai Caracuvati Makāl veḷiyīṭu; 156" - ], - "contributorLiteral": [ - "Chokkalingam." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-3259" - }, - { - "type": "nypl:Bnumber", - "value": "10007240" - }, - { - "type": "bf:Lccn", - "value": "77902870" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00508482" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0207225" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404639464, - "publicationStatement": [ - "[Tañcāvūr] : Tañcai Caracuvati Makāl Nūl Nilaiya Nirvākak Kuḻu, 1975." - ], - "identifier": [ - "urn:bnum:10007240", - "urn:lccn:77902870", - "urn:undefined:NNSZ00508482", - "urn:undefined:(WaOLN)nyp0207225" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Glossaries, vocabularies, etc." - ], - "titleDisplay": [ - "Āciriya nikaṇṭu : cēntaṉ tivākaram, piṅkala nikaṇṭu, cūṭāmaṇi, kayātaram ākiya nikaṇṭukaḷiṉ oppumaip pakutikaḷuṭaṉ / patippāciriyar Vī. Cokkaliṅkam." - ], - "uri": "b10007240", - "lccClassification": [ - "PL4757 .A5" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Tañcāvūr]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10007240" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061354662" - ], - "shelfMark_sort": "a*OLB 84-003259", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785014", - "shelfMark": [ - "*OLB 84-3259" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433061354662" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433061354662" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061303693" - ], - "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" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785013", - "shelfMark": [ - "*OLB 84-3259" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-3259" - }, - { - "type": "bf:Barcode", - "value": "33433061303693" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433061303693" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10007516", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Egypt", - "Egypt -- History", - "Egypt -- History -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Mu'assasah al-Àrabīyah lil-Dirāsāt wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 5 - ], - "createdYear": [ - 1974 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Qiṣṣat thawrat 23 Yūliyū" - ], - "shelfMark": [ - "*OFP 84-3195" - ], - "numItemVolumesParsed": [ - 5 - ], - "creatorLiteral": [ - "Ḥamrūsh, Aḥmad." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "76960179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 84-3195" - }, - { - "type": "nypl:Bnumber", - "value": "10007516" - }, - { - "type": "bf:Lccn", - "value": "76960179" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005001687-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00508761" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0207500" - } - ], - "idOclc": [ - "NYPG005001687-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675263928305, - "publicationStatement": [ - "Bayrūt : al-Mu'assasah al-Àrabīyah lil-Dirāsāt wa-al-Nashr, 1974-" - ], - "identifier": [ - "urn:bnum:10007516", - "urn:lccn:76960179", - "urn:oclc:NYPG005001687-B", - "urn:undefined:NNSZ00508761", - "urn:undefined:(WaOLN)nyp0207500" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Egypt -- History -- 20th century." - ], - "titleDisplay": [ - "Qiṣṣat thawrat 23 Yūliyū / Aḥmad Ḥamrūsh." - ], - "uri": "b10007516", - "lccClassification": [ - "DT107.825 .H35" - ], - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Juz' 1. Miṣr wa-al-Àskarīyūn. -- Juz' 2. Mujtamà Jamāl Àbd al-Nāṣir. -- Juz' 3. Àbd al-Nāṣir wa-al-Àrab. -- Juz' 4. Shuhūd thawrat Yūliyū.--Juz' 5. Kharīf Àbd al-Nāṣir." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10007516" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i10004361", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 84-3195 v. 5" - ], - "identifierV2": [ - { - "value": "*OFP 84-3195 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005566249" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "*OFP 84-3195" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005566249" - ], - "idBarcode": [ - "33433005566249" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 84-3195 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10004360", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 84-3195 v. 4" - ], - "identifierV2": [ - { - "value": "*OFP 84-3195 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005566231" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "*OFP 84-3195" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005566231" - ], - "idBarcode": [ - "33433005566231" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 84-3195 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10004359", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 84-3195 v. 3" - ], - "identifierV2": [ - { - "value": "*OFP 84-3195 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005566223" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OFP 84-3195" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005566223" - ], - "idBarcode": [ - "33433005566223" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 84-3195 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10004358", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 84-3195 v. 2" - ], - "identifierV2": [ - { - "value": "*OFP 84-3195 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005566215" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OFP 84-3195" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005566215" - ], - "idBarcode": [ - "33433005566215" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 84-3195 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10004357", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 84-3195 v. 1" - ], - "identifierV2": [ - { - "value": "*OFP 84-3195 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005566207" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OFP 84-3195" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005566207" - ], - "idBarcode": [ - "33433005566207" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 84-3195 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10007874", - "_score": null, - "_source": { - "extent": [ - "v. : ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of: Towards one Nigeria.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nigeria", - "Nigeria -- History", - "Nigeria -- History -- Civil War, 1967-1970", - "Nigeria -- History -- Civil War, 1967-1970 -- Sources" - ], - "publisherLiteral": [ - "Federal Ministry of Information," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vers l'unité du Nigèria." - ], - "shelfMark": [ - "Sc Ser.-L .V377" - ], - "createdString": [ - "1967" - ], - "contributorLiteral": [ - "Nigeria. Federal Ministry of Information." - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-L .V377" - }, - { - "type": "nypl:Bnumber", - "value": "10007874" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0207856" - } - ], - "uniformTitle": [ - "Towards one Nigeria. French" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636140076962, - "publicationStatement": [ - "[Lagos : Federal Ministry of Information, [1967?-]" - ], - "identifier": [ - "urn:bnum:10007874", - "urn:undefined:(WaOLN)nyp0207856" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nigeria -- History -- Civil War, 1967-1970 -- Sources." - ], - "titleDisplay": [ - "Vers l'unité du Nigèria." - ], - "uri": "b10007874", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Lagos :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Towards one Nigeria." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10007874" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900848", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V377 v. 3" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V377 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433034815294" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V377" - ], - "enumerationChronology": [ - "v. 3" - ], - "identifier": [ - "urn:barcode:33433034815294" - ], - "idBarcode": [ - "33433034815294" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V377 v. 000003" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008327", - "_score": null, - "_source": { - "extent": [ - "v. : ill ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Editors vary.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Folk literature, Kannada", - "Folk literature, Kannada -- History and criticism" - ], - "publisherLiteral": [ - "Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jānapada sāhityadarśana" - ], - "shelfMark": [ - "*OLA 83-2636" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75904046" - ], - "seriesStatement": [ - "Jānapada sammēḷana smaraṇe ; 1-2, 4" - ], - "contributorLiteral": [ - "Hiremath, Rudrayya Chandrayya, 1922-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636" - }, - { - "type": "nypl:Bnumber", - "value": "10008327" - }, - { - "type": "bf:Lccn", - "value": "75904046" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00609733" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208308" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108824394, - "publicationStatement": [ - "Dhāravāḍa : Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya, 1974-" - ], - "identifier": [ - "urn:bnum:10008327", - "urn:lccn:75904046", - "urn:undefined:NNSZ00609733", - "urn:undefined:(WaOLN)nyp0208308" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk literature, Kannada -- History and criticism." - ], - "titleDisplay": [ - "Jānapada sāhityadarśana / sampādakaru Ār. Si. Hirēmaṭha." - ], - "uri": "b10008327", - "lccClassification": [ - "PL4654 .J3" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Dhāravāḍa :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10008327" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013119130" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004641", - "shelfMark": [ - "*OLA 83-2636 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013119130" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013119130" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005544246" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004640", - "shelfMark": [ - "*OLA 83-2636 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433005544246" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433005544246" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005544238" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004639", - "shelfMark": [ - "*OLA 83-2636 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433005544238" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433005544238" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008347", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: v.2, p. 375.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Qurʼan", - "Qurʼan -- Commentaries" - ], - "publisherLiteral": [ - "[s. n.]," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aḍwāʼ ʻalá mutashābihāt al-Qurʼān ; yaḥtawī ʻalá 1600 suʼāl wa-jawāb" - ], - "shelfMark": [ - "*OGDM 82-3193" - ], - "creatorLiteral": [ - "Yāsīn, Khalīl." - ], - "createdString": [ - "1969" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGDM 82-3193" - }, - { - "type": "nypl:Bnumber", - "value": "10008347" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00609754" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208328" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636071205334, - "publicationStatement": [ - "Bayrūt : [s. n.], 1969-" - ], - "identifier": [ - "urn:bnum:10008347", - "urn:undefined:NNSZ00609754", - "urn:undefined:(WaOLN)nyp0208328" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Qurʼan -- Commentaries." - ], - "titleDisplay": [ - "Aḍwāʼ ʻalá mutashābihāt al-Qurʼān ; yaḥtawī ʻalá 1600 suʼāl wa-jawāb / bi-qalam Khalīl Yāsīn." - ], - "uri": "b10008347", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10008347" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005577105" - ], - "physicalLocation": [ - "*OGDM 82-3193" - ], - "shelfMark_sort": "a*OGDM 82-003193", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004653", - "shelfMark": [ - "*OGDM 82-3193" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGDM 82-3193" - }, - { - "type": "bf:Barcode", - "value": "33433005577105" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005577105" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008408", - "_score": null, - "_source": { - "extent": [ - "v. 1-5 : ill., maps ;" - ], - "note": [ - { - "noteType": "Note", - "label": "One folded map inserted in v. 1; 3 folded maps inserted in v. 3; one folded map inserted in v. 4.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "10 folded maps accompany atlas; issued together in a case.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Errata slip inserted in v. 3.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Excavations (Archaeology)", - "Excavations (Archaeology) -- Ingal", - "Niger", - "Niger -- Antiquities", - "Niger -- Antiquities -- Maps", - "Ingal (Niger)", - "Ingal (Niger) -- Antiquities", - "Ingal (Niger) -- Antiquities -- Maps", - "Teguidda-n-Tessoumt (Niger)", - "Teguidda-n-Tessoumt (Niger) -- Antiquities", - "Teguidda-n-Tessoumt (Niger) -- Antiquities -- Maps", - "Ingal Region (Niger)", - "Ingal Region (Niger) -- Antiquities" - ], - "publisherLiteral": [ - "Institut de recherches en sciences humaines" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "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" - ], - "createdString": [ - "1983" - ], - "idLccn": [ - "84121246" - ], - "seriesStatement": [ - "Etudes nigériennes ; no 47-52" - ], - "contributorLiteral": [ - "Grébénart, Danilo.", - "Paris, François, 1946-", - "Poncet, Yveline.", - "Université de Niamey. Institut de recherches en sciences humaines." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc F 87-35" - }, - { - "type": "nypl:Bnumber", - "value": "10008408" - }, - { - "type": "bf:Isbn", - "value": "2859210601 (v. 4)" - }, - { - "type": "bf:Isbn", - "value": "9782859210601 (v. 4)" - }, - { - "type": "bf:Lccn", - "value": "84121246" - }, - { - "type": "nypl:Oclc", - "value": "12840091" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)12840091" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "285920482 (v. 1)" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "285920490 (v. 2)" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "285920504 (v. 3)" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "285921061X (v. 5)" - } - ], - "idOclc": [ - "12840091" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1652373102187, - "publicationStatement": [ - "Niamey : Institut de recherches en sciences humaines, 1983-<1992>" - ], - "identifier": [ - "urn:bnum:10008408", - "urn:isbn:2859210601 (v. 4)", - "urn:isbn:9782859210601 (v. 4)", - "urn:lccn:84121246", - "urn:oclc:12840091", - "urn:undefined:(OCoLC)12840091", - "b10008408#1.0004", - "b10008408#1.0005", - "b10008408#1.0006", - "b10008408#1.0007", - "urn:isbn:285920482 (v. 1)", - "urn:isbn:285920490 (v. 2)", - "urn:isbn:285920504 (v. 3)", - "urn:isbn:285921061X (v. 5)" - ], - "idIsbn": [ - "2859210601 (v. 4)", - "9782859210601 (v. 4)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Excavations (Archaeology) -- Ingal.", - "Niger -- Antiquities -- Maps.", - "Ingal (Niger) -- Antiquities.", - "Ingal (Niger) -- Antiquities -- Maps.", - "Teguidda-n-Tessoumt (Niger) -- Antiquities.", - "Teguidda-n-Tessoumt (Niger) -- Antiquities -- Maps.", - "Ingal Region (Niger) -- Antiquities." - ], - "titleDisplay": [ - "La Région d'In Gall--Tegidda n Tesemt (Niger) : programme archéologique d'urgence, 1977-1981." - ], - "uri": "b10008408", - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Niamey" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "no. 47. Atlas / conçu et réalisé par Yveline Poncet -- 1. (no. 48) Introduction : méthodologie, environnements -- 2. (no. 49) Le Néolithique final et les débuts de la métallurgie / Danilo Grébénart -- 3. (no. 50) Les sépultures, du Néolithique final à l'islam / François Paris -- 4. (no. 51) Azelik-Takadda et l'implantation sédentaire Médiévale -- 5. (no. 52) Les populations actuelles." - ], - "idIsbn_clean": [ - "28592106014", - "97828592106014" - ], - "dimensions": [ - "24 cm. +" - ] - }, - "sort": [ - "b10008408" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i12540453", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 87-35 t. 4-5" - ], - "identifierV2": [ - { - "value": "Sc F 87-35 t. 4-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057875258" - } - ], - "physicalLocation": [ - "Sc F 87-35" - ], - "enumerationChronology": [ - "t. 4-5" - ], - "identifier": [ - "urn:barcode:33433057875258" - ], - "idBarcode": [ - "33433057875258" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 87-35 t. 4-000005" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i12540452", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 87-35 t. 3" - ], - "identifierV2": [ - { - "value": "Sc F 87-35 t. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057875068" - } - ], - "physicalLocation": [ - "Sc F 87-35" - ], - "enumerationChronology": [ - "t. 3" - ], - "identifier": [ - "urn:barcode:33433057875068" - ], - "idBarcode": [ - "33433057875068" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 87-35 t. 000003" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i12540451", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 87-35 t. 2" - ], - "identifierV2": [ - { - "value": "Sc F 87-35 t. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057875050" - } - ], - "physicalLocation": [ - "Sc F 87-35" - ], - "enumerationChronology": [ - "t. 2" - ], - "identifier": [ - "urn:barcode:33433057875050" - ], - "idBarcode": [ - "33433057875050" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 87-35 t. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900890", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 87-35 t. 1" - ], - "identifierV2": [ - { - "value": "Sc F 87-35 t. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057875217" - } - ], - "physicalLocation": [ - "Sc F 87-35" - ], - "enumerationChronology": [ - "t. 1" - ], - "identifier": [ - "urn:barcode:33433057875217" - ], - "idBarcode": [ - "33433057875217" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 87-35 t. 000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i17447322", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 87-35 Atlas" - ], - "identifierV2": [ - { - "value": "Sc F 87-35 Atlas", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036872814" - } - ], - "physicalLocation": [ - "Sc F 87-35" - ], - "enumerationChronology": [ - "Atlas" - ], - "identifier": [ - "urn:barcode:33433036872814" - ], - "idBarcode": [ - "33433036872814" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 87-35 Atlas" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008416", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"No 71.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: t. 1, p. 288.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "French language", - "French language -- Study and teaching", - "French language -- Study and teaching -- Senegal" - ], - "publisherLiteral": [ - "Centre de linguistique appliquée de Dakar," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "La grammaire en question" - ], - "shelfMark": [ - "Sc Ser.-M .B575" - ], - "creatorLiteral": [ - "Blondé, Jacques." - ], - "createdString": [ - "1978" - ], - "seriesStatement": [ - "L'Enseignement du français au Sénégal" - ], - "contributorLiteral": [ - "Centre de linguistique appliquée de Dakar." - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .B575" - }, - { - "type": "nypl:Bnumber", - "value": "10008416" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00709824" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208396" - } - ], - "uniformTitle": [ - "Enseignement du français au Sénégal." - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1141798", - "shelfMark": [ - "Sc Ser.-M .B575" - ] - } - ], - "updatedAt": 1636111100976, - "publicationStatement": [ - "[Dakar] : Centre de linguistique appliquée de Dakar, 1978-" - ], - "identifier": [ - "urn:bnum:10008416", - "urn:undefined:NNSZ00709824", - "urn:undefined:(WaOLN)nyp0208396" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "French language -- Study and teaching -- Senegal." - ], - "titleDisplay": [ - "La grammaire en question / par Jacques Blondé." - ], - "uri": "b10008416", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Dakar] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10008416" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13785304", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .B575 t. 1 (1978)" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .B575 t. 1 (1978)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433021653690" - } - ], - "physicalLocation": [ - "Sc Ser.-M .B575" - ], - "enumerationChronology": [ - "t. 1 (1978)" - ], - "identifier": [ - "urn:barcode:33433021653690" - ], - "idBarcode": [ - "33433021653690" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .B575 t. 1 (1978)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008989", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: Florentina Studiorum Universitas.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Novellae constitutiones" - ], - "publisherLiteral": [ - "Cisalpino-Goliardica" - ], - "language": [ - { - "id": "lang:grc", - "label": "Greek, Ancient (to 1453)" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1986 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Novellae : pars graeca" - ], - "shelfMark": [ - "JLN 88-42" - ], - "creatorLiteral": [ - "Bartoletti Colombo, Anna Maria." - ], - "createdString": [ - "1986" - ], - "seriesStatement": [ - "Legum Iustiniani imperatoris vocabularium" - ], - "contributorLiteral": [ - "Archi, Gian Gualberto." - ], - "dateStartYear": [ - 1986 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42" - }, - { - "type": "nypl:Bnumber", - "value": "10008989" - }, - { - "type": "bf:Isbn", - "value": "8820505517 (v. 1)" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208964" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1652373994811, - "publicationStatement": [ - "Milano : Cisalpino-Goliardica, c1986-" - ], - "identifier": [ - "urn:bnum:10008989", - "urn:isbn:8820505517 (v. 1)", - "urn:undefined:(WaOLN)nyp0208964" - ], - "idIsbn": [ - "8820505517 (v. 1)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1986" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Novellae constitutiones." - ], - "titleDisplay": [ - "Novellae : pars graeca / Iohanne Gualberto Archi moderante, curavit Anna Maria Bartoletti Colombo." - ], - "uri": "b10008989", - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "88205055171" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10008989" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433079237768" - ], - "physicalLocation": [ - "JLN 88-42" - ], - "shelfMark_sort": "aJLN 88-42 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17447326", - "shelfMark": [ - "JLN 88-42 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433079237768" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433079237768" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433079237776" - ], - "physicalLocation": [ - "JLN 88-42" - ], - "shelfMark_sort": "aJLN 88-42 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17447327", - "shelfMark": [ - "JLN 88-42 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433079237776" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433079237776" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433079237784" - ], - "physicalLocation": [ - "JLN 88-42" - ], - "shelfMark_sort": "aJLN 88-42 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17447328", - "shelfMark": [ - "JLN 88-42 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433079237784" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433079237784" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433079237792" - ], - "physicalLocation": [ - "JLN 88-42" - ], - "shelfMark_sort": "aJLN 88-42 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17447325", - "shelfMark": [ - "JLN 88-42 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433079237792" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433079237792" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433033482716" - ], - "physicalLocation": [ - "JLN 88-42 Library has: t. 1-6." - ], - "shelfMark_sort": "aJLN 88-42 Library has: t. 1-6. T. 000006", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12540484", - "shelfMark": [ - "JLN 88-42 Library has: t. 1-6. T. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLN 88-42 Library has: t. 1-6. T. 6" - }, - { - "type": "bf:Barcode", - "value": "33433033482716" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "T. 6" - ], - "idBarcode": [ - "33433033482716" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009049", - "_score": null, - "_source": { - "extent": [ - "3 v. (loose-leaf) : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Loose-leaves for updating.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Computer industry", - "Computer industry -- Technological innovations", - "Computers", - "Computers -- Catalogs" - ], - "publisherLiteral": [ - "Datapro Research Corp. ;" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Datapro reports on minicomputers" - ], - "shelfMark": [ - "JSF 85-437" - ], - "createdString": [ - "1985" - ], - "contributorLiteral": [ - "Datapro Research Corporation.", - "Heminway, Mary C." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-437" - }, - { - "type": "nypl:Bnumber", - "value": "10009049" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00810570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209024" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1644359525726, - "publicationStatement": [ - "Delran, N.J. : Datapro Research Corp. ; c1985-" - ], - "identifier": [ - "urn:bnum:10009049", - "urn:undefined:NNSZ00810570", - "urn:undefined:(WaOLN)nyp0209024" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Computer industry -- Technological innovations.", - "Computers -- Catalogs." - ], - "titleDisplay": [ - "Datapro reports on minicomputers / group managing editor, Mary C. Heminway." - ], - "uri": "b10009049", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Delran, N.J. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Reports on minicomputers." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10009049" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433059486757" - ], - "physicalLocation": [ - "JSF 85-437" - ], - "shelfMark_sort": "aJSF 85-437 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785402", - "shelfMark": [ - "JSF 85-437 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-437 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433059486757" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433059486757" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433059486500" - ], - "physicalLocation": [ - "JSF 85-437" - ], - "shelfMark_sort": "aJSF 85-437 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785401", - "shelfMark": [ - "JSF 85-437 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-437 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433059486500" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433059486500" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433037693862" - ], - "physicalLocation": [ - "JSF 85-437" - ], - "shelfMark_sort": "aJSF 85-437 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12540492", - "shelfMark": [ - "JSF 85-437 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-437 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433037693862" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433037693862" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009050", - "_score": null, - "_source": { - "extent": [ - "3 v. (loose-leaf) : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Loose-leaves for updating.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Computer programs", - "Computer programs -- Directories", - "Microcomputers", - "Microcomputers -- Programming", - "Microcomputers -- Programming -- Directories", - "Programming languages (Electronic computers)", - "Programming languages (Electronic computers) -- Directories" - ], - "publisherLiteral": [ - "Datapro Research Corp.," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Datapro directory of microcomputer software" - ], - "shelfMark": [ - "JSF 85-438" - ], - "createdString": [ - "1985" - ], - "contributorLiteral": [ - "Datapro Research Corporation.", - "Muldowney, William J." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-438" - }, - { - "type": "nypl:Bnumber", - "value": "10009050" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00810571" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209025" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636086399858, - "publicationStatement": [ - "Delran, N.J. : Datapro Research Corp., c1985-" - ], - "identifier": [ - "urn:bnum:10009050", - "urn:undefined:NNSZ00810571", - "urn:undefined:(WaOLN)nyp0209025" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Computer programs -- Directories.", - "Microcomputers -- Programming -- Directories.", - "Programming languages (Electronic computers) -- Directories." - ], - "titleDisplay": [ - "Datapro directory of microcomputer software / managing editor, William J. Muldowney." - ], - "uri": "b10009050", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Delran, N.J. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Directory of microcomputer software.", - "Microcomputer software." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10009050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433059486724" - ], - "physicalLocation": [ - "JSF 85-438" - ], - "shelfMark_sort": "aJSF 85-438 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785404", - "shelfMark": [ - "JSF 85-438 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-438 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433059486724" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433059486724" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433059486450" - ], - "physicalLocation": [ - "JSF 85-438" - ], - "shelfMark_sort": "aJSF 85-438 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785403", - "shelfMark": [ - "JSF 85-438 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-438 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433059486450" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433059486450" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433037693870" - ], - "physicalLocation": [ - "JSF 85-438" - ], - "shelfMark_sort": "aJSF 85-438 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12540493", - "shelfMark": [ - "JSF 85-438 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 85-438 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433037693870" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433037693870" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009141", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "publisherLiteral": [ - "viṟpaṉai urimai: Pāri Nilaiyam," - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ilakkaṇat tokai." - ], - "shelfMark": [ - "*OLB 85-879" - ], - "creatorLiteral": [ - "Subramanian, S. V." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "75910470" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 85-879" - }, - { - "type": "nypl:Bnumber", - "value": "10009141" - }, - { - "type": "bf:Lccn", - "value": "75910470" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00810664" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209116" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636105084628, - "publicationStatement": [ - "Ceṉṉai, viṟpaṉai urimai: Pāri Nilaiyam, 1967-" - ], - "identifier": [ - "urn:bnum:10009141", - "urn:lccn:75910470", - "urn:undefined:NNSZ00810664", - "urn:undefined:(WaOLN)nyp0209116" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Ilakkaṇat tokai. [Tokuppāciriyar] Ca. Vē. Cuppiramaṇiyaṉ." - ], - "uri": "b10009141", - "lccClassification": [ - "PL4754 .S78" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Ceṉṉai," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Eḻuttu. -- 2. Col." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10009141" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061304865" - ], - "physicalLocation": [ - "*OLB 85-879" - ], - "shelfMark_sort": "a*OLB 85-879 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785411", - "shelfMark": [ - "*OLB 85-879 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 85-879 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433061304865" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433061304865" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061304857" - ], - "physicalLocation": [ - "*OLB 85-879" - ], - "shelfMark_sort": "a*OLB 85-879 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13785410", - "shelfMark": [ - "*OLB 85-879 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 85-879 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433061304857" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433061304857" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009318", - "_score": null, - "_source": { - "extent": [ - "10 v. in 7." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 7 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1960 - ], - "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" - ], - "numItemVolumesParsed": [ - 7 - ], - "creatorLiteral": [ - "Kōpāla Kiruṣṇamācāryar, Vai. Mu., 1882-1956." - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "76909632" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kiruṣṇamācāriyar, C.", - "Villiputtūrāḻvār." - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 87-5294" - }, - { - "type": "nypl:Bnumber", - "value": "10009318" - }, - { - "type": "bf:Lccn", - "value": "76909632" - }, - { - "type": "nypl:Oclc", - "value": "NYPG009000066-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00910847" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209293" - } - ], - "idOclc": [ - "NYPG009000066-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675264547472, - "publicationStatement": [ - "Ceṉṉai, 1960-1968 [v.1. 1963]" - ], - "identifier": [ - "urn:bnum:10009318", - "urn:lccn:76909632", - "urn:oclc:NYPG009000066-B", - "urn:undefined:NNSZ00910847", - "urn:undefined:(WaOLN)nyp0209293" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Villiputtūrār iyaṟṟiya Makāpāratam; Vai. Mu. Kōpālakiruṣṇamācāriyar iyaṟṟiya uraiyuṭaṉ." - ], - "uri": "b10009318", - "lccClassification": [ - "PL4758.9.V492 V534 1960" - ], - "numItems": [ - 7 - ], - "numAvailable": [ - 7 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10009318" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 7, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i13785440", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 9-10" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 9-10", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585376" - } - ], - "enumerationChronology": [ - "v. 9-10" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585376" - ], - "idBarcode": [ - "33433059585376" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 10 - } - ], - "enumerationChronology_sort": [ - " 9-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000009-10" - }, - "sort": [ - " 9-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i13785439", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 6-8" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 6-8", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585368" - } - ], - "enumerationChronology": [ - "v. 6-8" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585368" - ], - "idBarcode": [ - "33433059585368" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 8 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000006-8" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i13785438", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 5" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585350" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585350" - ], - "idBarcode": [ - "33433059585350" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i13785437", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 4" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585343" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585343" - ], - "idBarcode": [ - "33433059585343" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i13785436", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 3" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585335" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585335" - ], - "idBarcode": [ - "33433059585335" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i13785435", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 2" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585327" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585327" - ], - "idBarcode": [ - "33433059585327" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13785434", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 87-5294 v. 1" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059585319" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "identifier": [ - "urn:barcode:33433059585319" - ], - "idBarcode": [ - "33433059585319" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009600", - "_score": null, - "_source": { - "extent": [ - "v. : ill." - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Uchebnik Kir. ︠i︡azyka dl︠i︡a trudovykh shkol.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 1685.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kirghiz.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kyrgyz language", - "Kyrgyz language -- Texts", - "Kyrgyz language -- Textbooks for foreign speakers", - "Kyrgyz language -- Textbooks for foreign speakers -- Russian" - ], - "publisherLiteral": [ - "Qïrghïzïstan Memleket Basmasï" - ], - "language": [ - { - "id": "lang:kir", - "label": "Kyrgyz" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1930 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Orus emgek mektebteri ycyn qïrghïz tilinin oquu kitebi" - ], - "shelfMark": [ - "*ZO-258 no. 1" - ], - "creatorLiteral": [ - "Çangïbajuluu, M." - ], - "createdString": [ - "1930" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1930 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-258 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "10009600" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00911072" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209576" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1664461892774, - "publicationStatement": [ - "Prunza : Qïrghïzïstan Memleket Basmasï, 1930-" - ], - "identifier": [ - "urn:bnum:10009600", - "urn:undefined:NNSZ00911072", - "urn:undefined:(WaOLN)nyp0209576" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1930" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kyrgyz language -- Texts.", - "Kyrgyz language -- Textbooks for foreign speakers -- Russian." - ], - "titleDisplay": [ - "Orus emgek mektebteri ycyn qïrghïz tilinin oquu kitebi [microform] / M. Çangïbaj uluu." - ], - "uri": "b10009600", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prunza" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Uchebnik kirgizskogo ︠i︡azyka dl︠i︡a trudovykh shkol." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10009600" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30068355", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZO-258, no. 1 no. 1-22" - ], - "identifierV2": [ - { - "value": "*ZO-258, no. 1 no. 1-22", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105667400" - } - ], - "physicalLocation": [ - "*ZO-258, no. 1" - ], - "enumerationChronology": [ - "no. 1-22" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433105667400" - ], - "idBarcode": [ - "33433105667400" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*ZO-258, no. 000001 no. 1-22" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009763", - "_score": null, - "_source": { - "extent": [ - "v. : ill., facsims., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Suppl. 2 has title: Book of Jared; vol. 3 (the second supplement), continuing the record of descedants of John Jared (1837 [sic]-1805) and his wives Hannah Whitacre and Rachel Palmer.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jared family", - "Jared, John, 1737-1805", - "Jared, John, 1737-1805 -- Family" - ], - "publisherLiteral": [ - "E. M. Hall," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The book of Jared supplement[s] : a family record showing descendants of John Jared, 1737-1805, Hannah Whitacre, Rachel Palmer" - ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl." - ], - "creatorLiteral": [ - "Hall, Eleanor McAllister, 1910-" - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APV (Jared) 85-2860 Suppl." - }, - { - "type": "nypl:Bnumber", - "value": "10009763" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00911239" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209739" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636133579155, - "publicationStatement": [ - "Salt Lake City, Utah (7234 So. 2825 East, Salt Lake City 84121) : E. M. Hall, c1981-" - ], - "identifier": [ - "urn:bnum:10009763", - "urn:undefined:NNSZ00911239", - "urn:undefined:(WaOLN)nyp0209739" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jared family.", - "Jared, John, 1737-1805 -- Family." - ], - "titleDisplay": [ - "The book of Jared supplement[s] : a family record showing descendants of John Jared, 1737-1805, Hannah Whitacre, Rachel Palmer / [compiled by Eleanor M. Hall]." - ], - "uri": "b10009763", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Salt Lake City, Utah (7234 So. 2825 East, Salt Lake City 84121) :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10009763" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i27564651", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" - ], - "identifierV2": [ - { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093160152" - } - ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2." - ], - "enumerationChronology": [ - "Suppl. 2" - ], - "identifier": [ - "urn:barcode:33433093160152" - ], - "idBarcode": [ - "33433093160152" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i27564640", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1" - ], - "identifierV2": [ - { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093160145" - } - ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2." - ], - "enumerationChronology": [ - "Suppl. 1" - ], - "identifier": [ - "urn:barcode:33433093160145" - ], - "idBarcode": [ - "33433093160145" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14747026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " - ], - "identifierV2": [ - { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093160137" - } - ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2" - ], - "enumerationChronology": [ - "Suppl. " - ], - "identifier": [ - "urn:barcode:33433093160137" - ], - "idBarcode": [ - "33433093160137" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009901", - "_score": null, - "_source": { - "extent": [ - "v. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Paging in reverse.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ansaru Allah Community]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The holy Qur'an : the last testament" - ], - "shelfMark": [ - "Sc Ser.-M .K786" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1977" - ], - "seriesStatement": [ - "Edition; 41-", - "Nubian Islamic Hebrews. Edition 41-" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "ʻIsá Abd Allāh Muḥammad al-Mahdī, 1945-" - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .K786" - }, - { - "type": "nypl:Bnumber", - "value": "10009901" - }, - { - "type": "nypl:Oclc", - "value": "NYPG009000597-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209877" - } - ], - "idOclc": [ - "NYPG009000597-B" - ], - "uniformTitle": [ - "Qurʼan. English & Arabic." - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1143677", - "shelfMark": [ - "Sc Ser.-M .K786" - ] - } - ], - "updatedAt": 1669058699563, - "publicationStatement": [ - "[Brooklyn, N.Y.] : Ansaru Allah Community], 1977-" - ], - "identifier": [ - "urn:bnum:10009901", - "urn:oclc:NYPG009000597-B", - "urn:undefined:(WaOLN)nyp0209877" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The holy Qur'an : the last testament / English translation and commentary by Al Hajj Al Imam Isa Abd'Allah Muhammad al Mahdi." - ], - "uri": "b10009901", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Brooklyn, N.Y.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10009901" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14747080", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .K786 v. 1-3" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .K786 v. 1-3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433070348341" - } - ], - "enumerationChronology": [ - "v. 1-3" - ], - "physicalLocation": [ - "Sc Ser.-M .K786" - ], - "identifier": [ - "urn:barcode:33433070348341" - ], - "idBarcode": [ - "33433070348341" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Ser.-M .K786 v. 000001-3" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010070", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Supplement", - "label": "Issues for 1968-69 include supplement: Quality.", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by the institute in collaboration with the General Confederation of Italian Industry.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Fall 1958-" - ], - "subjectLiteral_exploded": [ - "Industries", - "Industries -- Italy", - "Industries -- Italy -- Periodicals", - "Italy", - "Italy -- Commerce", - "Italy -- Commerce -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Istituto Nazionale per il Commercio Estero" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1958 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Italy presents." - ], - "shelfMark": [ - "JLM 81-304" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1958" - ], - "idLccn": [ - "63053813" - ], - "idIssn": [ - "0021-3160" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Istituto nazionale per il commercio estero (Italy)", - "Confederazione generale dell'industria italiana." - ], - "dateStartYear": [ - 1958 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLM 81-304" - }, - { - "type": "nypl:Bnumber", - "value": "10010070" - }, - { - "type": "bf:Issn", - "value": "0021-3160" - }, - { - "type": "bf:Lccn", - "value": "63053813" - }, - { - "type": "nypl:Oclc", - "value": "1754066" - }, - { - "type": "nypl:Oclc", - "value": "1754066" - }, - { - "type": "nypl:Oclc", - "value": "NYPG010-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210046" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1754066" - } - ], - "idOclc": [ - "1754066", - "NYPG010-S" - ], - "uniformTitle": [ - "Quality." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1670258911038, - "publicationStatement": [ - "Rome : Istituto Nazionale per il Commercio Estero, 1958-" - ], - "identifier": [ - "urn:bnum:10010070", - "urn:issn:0021-3160", - "urn:lccn:63053813", - "urn:oclc:1754066", - "urn:oclc:NYPG010-S", - "urn:undefined:(WaOLN)nyp0210046", - "urn:undefined:(OCoLC)1754066" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1958" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Industries -- Italy -- Periodicals.", - "Italy -- Commerce -- Periodicals." - ], - "titleDisplay": [ - "Italy presents." - ], - "uri": "b10010070", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Rome" - ], - "titleAlt": [ - "Italian trade magazine." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10010070" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i12540520", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-304 1970-1972" - ], - "identifierV2": [ - { - "value": "JLM 81-304 1970-1972", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017526959" - } - ], - "enumerationChronology": [ - "1970-1972" - ], - "physicalLocation": [ - "JLM 81-304" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433017526959" - ], - "idBarcode": [ - "33433017526959" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-304 1970-001972" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540519", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-304 1967-1969" - ], - "identifierV2": [ - { - "value": "JLM 81-304 1967-1969", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017526942" - } - ], - "enumerationChronology": [ - "1967-1969" - ], - "physicalLocation": [ - "JLM 81-304" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433017526942" - ], - "idBarcode": [ - "33433017526942" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-304 1967-001969" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010482", - "_score": null, - "_source": { - "extent": [ - "v. : ill., facsims., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "K.A.R.D.: Karow, Adamson, Rubidoux, Dye--V. 2, Pref.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 12 published in Kent, Washington.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 12: \"John A. & Judy K. Dye.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Adams family" - ], - "publisherLiteral": [ - "J. Dye," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The K.A.R.D. files--Adamson ancestry" - ], - "shelfMark": [ - "APV (Adamson) 85-544" - ], - "creatorLiteral": [ - "Dye, John." - ], - "createdString": [ - "1982" - ], - "contributorLiteral": [ - "Dye, Judy." - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APV (Adamson) 85-544" - }, - { - "type": "nypl:Bnumber", - "value": "10010482" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210458" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1-12-" - ], - "checkInBoxes": [ - { - "coverage": "No. 13", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Arrived" - }, - { - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - }, - { - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "status": "Expected" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "APV (Adamson) 85-544 Library has: Vol. 1-13." - } - ], - "physicalLocation": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ], - "location": [ - { - "code": "loc:mag", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "uri": "h1031668", - "shelfMark": [ - "APV (Adamson) 85-544 Library has: Vol. 1-13." - ] - } - ], - "updatedAt": 1636135853428, - "publicationStatement": [ - "Spokane, Wash. : J. Dye, [1982]-" - ], - "identifier": [ - "urn:bnum:10010482", - "urn:undefined:(WaOLN)nyp0210458" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Adams family." - ], - "titleDisplay": [ - "The K.A.R.D. files--Adamson ancestry / John and Judy Dye." - ], - "uri": "b10010482", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Spokane, Wash. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "KARD files--Adamson ancestry." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10010482" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i26428980", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Adamson) 85-544 v. 10-13 (Mar. 1989-Sept. 1996)" - ], - "identifierV2": [ - { - "value": "APV (Adamson) 85-544 v. 10-13 (Mar. 1989-Sept. 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433091335061" - } - ], - "physicalLocation": [ - "APV (Adamson) 85-544" - ], - "enumerationChronology": [ - "v. 10-13 (Mar. 1989-Sept. 1996)" - ], - "identifier": [ - "urn:barcode:33433091335061" - ], - "idBarcode": [ - "33433091335061" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000010-13 (Mar. 1989-Sept. 1996)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i26428927", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Adamson) 85-544 v. 4-9" - ], - "identifierV2": [ - { - "value": "APV (Adamson) 85-544 v. 4-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433091335053" - } - ], - "physicalLocation": [ - "APV (Adamson) 85-544 " - ], - "enumerationChronology": [ - "v. 4-9" - ], - "identifier": [ - "urn:barcode:33433091335053" - ], - "idBarcode": [ - "33433091335053" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000004-9" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14747104", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APV (Adamson) 85-544 v. 1-3" - ], - "identifierV2": [ - { - "value": "APV (Adamson) 85-544 v. 1-3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433091335046" - } - ], - "physicalLocation": [ - "APV (Adamson) 85-544" - ], - "enumerationChronology": [ - "v. 1-3" - ], - "identifier": [ - "urn:barcode:33433091335046" - ], - "idBarcode": [ - "33433091335046" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000001-3" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010483", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Photocopy.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "vol. 1-2: \"July 18, 1941.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Church records and registers", - "Church records and registers -- Herkimer", - "Church records and registers -- Herkimer -- Indexes", - "Herkimer (N.Y.)", - "Herkimer (N.Y.) -- Genealogy", - "Herkimer (N.Y.) -- Genealogy -- Indexes", - "Reformed Protestant Dutch Church (Herkimer, N.Y.)" - ], - "publisherLiteral": [ - "The Dept.]," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1941 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Index of records Reformed Protestant Dutch Church of Herkimer" - ], - "shelfMark": [ - "APR (Herkimer, N.Y.) 85-424 Index" - ], - "createdString": [ - "1941" - ], - "contributorLiteral": [ - "Montgomery County (N.Y.). Dept. of History and Archives.", - "Reformed Protestant Dutch Church (Herkimer, N.Y.). Records of the Reformed Protestant Dutch Church of Herkimer in the Town of Herkimer, Herkimer County, N.Y." - ], - "dateStartYear": [ - 1941 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APR (Herkimer, N.Y.) 85-424 Index" - }, - { - "type": "nypl:Bnumber", - "value": "10010483" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01012132" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210459" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636105431482, - "publicationStatement": [ - "[New York : The Dept.], 1941-" - ], - "identifier": [ - "urn:bnum:10010483", - "urn:undefined:NNSZ01012132", - "urn:undefined:(WaOLN)nyp0210459" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1941" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Church records and registers -- Herkimer -- Indexes.", - "Herkimer (N.Y.) -- Genealogy -- Indexes.", - "Reformed Protestant Dutch Church (Herkimer, N.Y.)" - ], - "titleDisplay": [ - "Index of records Reformed Protestant Dutch Church of Herkimer / compiled by the Montgomery Department of History and Archives." - ], - "uri": "b10010483", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[New York :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10010483" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i24831672", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "APR (Herkimer, N.Y.) 85-424 Index v. 2" - ], - "identifierV2": [ - { - "value": "APR (Herkimer, N.Y.) 85-424 Index v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085274375" - } - ], - "physicalLocation": [ - "APR (Herkimer, N.Y.) 85-424 Index" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433085274375" - ], - "idBarcode": [ - "33433085274375" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901094", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Herkimer, N.Y.) 85-424 Index v. 1-2" - ], - "identifierV2": [ - { - "value": "APR (Herkimer, N.Y.) 85-424 Index v. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032068110" - } - ], - "physicalLocation": [ - "APR (Herkimer, N.Y.) 85-424 Index" - ], - "enumerationChronology": [ - "v. 1-2" - ], - "identifier": [ - "urn:barcode:33433032068110" - ], - "idBarcode": [ - "33433032068110" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000001-2" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010674", - "_score": null, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Language", - "label": "In Italian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "anno 1- magg./giugno 1977-" - ], - "subjectLiteral_exploded": [ - "Music", - "Music -- Periodicals", - "Sound recordings", - "Sound recordings -- Reviews" - ], - "numItemDatesParsed": [ - 118 - ], - "publisherLiteral": [ - "Ed. Diapason Milano]" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 118 - ], - "createdYear": [ - 1977 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica." - ], - "shelfMark": [ - "*LA 81-296" - ], - "numItemVolumesParsed": [ - 83 - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "79649506 /MN" - ], - "idIssn": [ - "0392-5544" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LA 81-296" - }, - { - "type": "nypl:Bnumber", - "value": "10010674" - }, - { - "type": "bf:Issn", - "value": "0392-5544" - }, - { - "type": "bf:Lccn", - "value": "79649506 /MN" - }, - { - "type": "nypl:Oclc", - "value": "5909505" - }, - { - "type": "nypl:Oclc", - "value": "5909505" - }, - { - "type": "nypl:Oclc", - "value": "NYPG011-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000035" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)5909505" - } - ], - "idOclc": [ - "5909505", - "NYPG011-S" - ], - "uniformTitle": [ - "Musica (Milan, Italy)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "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. 42, no. 344 (2023-03)" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 41 No. 304 (Mar. 2019)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 41 No. 305 (Apr. 2019)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 41 No. 306 (May. 2019)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 41 No. 307 (Jun. 2019)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 41 No. 308 (Jul. 2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 309 (Sep. 2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 41 No. 310 (Oct. 2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 311 (Nov. 2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 312 (Dec. 2019)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 313 (Feb. 2020)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 314 (Mar. 2020)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 315 (Apr. 2020)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 316 (May. 2020)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 317 (Jun. 2020)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 318 (Jul. 2020)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 319 (Sep. 2020)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 320 (Oct. 2020)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 321 (Nov. 2020)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 322 (Dec. 2020)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 323 (Feb. 2021)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 324 (Mar. 2021)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 325 (Apr. 2021)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 326 (May. 2021)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 327 (Jun. 2021)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 328 (Jul. 2021)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 329 (Sep. 2021)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 330 (Oct. 2021)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 331 (Nov. 2021)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 332 (Dec. 2021)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 333 (Feb. 2022)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 334 (Mar. 2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 335 (Apr. 2022)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 336 (May. 2022)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 337 (Jun. 2022)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 338 (Jul. 2022)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 339 (Sep. 2022)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 340 (Oct. 2022)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 341 (Nov. 2022)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 342 (Dec. 2022)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 343 (Feb. 2023)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 344 (Mar. 2023)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 42 No. 345 (Apr. 2023)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 346 (May. 2023)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 347 (Jun. 2023)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 348 (Jul. 2023)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 349 (Aug. 2023)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 350 (Sep. 2023)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 42 No. 351 (Oct. 2023)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 43 No. 352 (Nov. 2023)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 43 No. 353 (Dec. 2023)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 43 No. 354 (Jan. 2024)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*LA 81-296" - ], - "status": "Expected" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*LA 81-296" - } - ], - "notes": [ - "CURRENT ISSUES IN R&H ARCHIVES" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "uri": "h1036576", - "shelfMark": [ - "*LA 81-296" - ] - } - ], - "updatedAt": 1680709867610, - "publicationStatement": [ - "[Milano, Ed. Diapason Milano]" - ], - "identifier": [ - "urn:bnum:10010674", - "urn:issn:0392-5544", - "urn:lccn:79649506 /MN", - "urn:oclc:5909505", - "urn:oclc:NYPG011-S", - "urn:undefined:(WaOLN)nyp0000035", - "urn:undefined:(OCoLC)5909505" - ], - "numCheckinCardItems": [ - 51 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Music -- Periodicals.", - "Sound recordings -- Reviews." - ], - "titleDisplay": [ - "Musica." - ], - "uri": "b10010674", - "lccClassification": [ - "ML5 .M713595" - ], - "numItems": [ - 67 - ], - "numAvailable": [ - 108 - ], - "placeOfPublication": [ - "[Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10010674" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 118, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 46 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-4", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 43 No. 354 (Jan. 2024)" - ], - "volumeRaw": [ - "Vol. 43 No. 354" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 43, - "lte": 43 - } - ], - "dateRange": [ - { - "gte": "2024-01-01", - "lte": "2024-01-01" - } - ], - "enumerationChronology_sort": [ - " 43-2024-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 43-2024-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 45 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-5", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 43 No. 353 (Dec. 2023)" - ], - "volumeRaw": [ - "Vol. 43 No. 353" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 43, - "lte": 43 - } - ], - "dateRange": [ - { - "gte": "2023-12-01", - "lte": "2023-12-01" - } - ], - "enumerationChronology_sort": [ - " 43-2023-12-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 43-2023-12-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-6", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 43 No. 352 (Nov. 2023)" - ], - "volumeRaw": [ - "Vol. 43 No. 352" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 43, - "lte": 43 - } - ], - "dateRange": [ - { - "gte": "2023-11-01", - "lte": "2023-11-01" - } - ], - "enumerationChronology_sort": [ - " 43-2023-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 43-2023-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-7", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 351 (Oct. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 351" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-10-01", - "lte": "2023-10-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 50 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-0", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 350 (Sep. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 350" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-09-01", - "lte": "2023-09-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-09-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-09-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 49 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-1", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 349 (Aug. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 349" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-08-01", - "lte": "2023-08-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-08-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-08-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 48 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-2", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 348 (Jul. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 348" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-07-01", - "lte": "2023-07-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 47 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-3", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 347 (Jun. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 347" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-06-01", - "lte": "2023-06-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-06-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-06-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-8", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 346 (May. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 346" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-05-01", - "lte": "2023-05-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-05-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-05-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-9", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 345 (Apr. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 345" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-04-01", - "lte": "2023-04-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-10", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 344 (Mar. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 344" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-03-01", - "lte": "2023-03-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-03-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-03-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-11", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 343 (Feb. 2023)" - ], - "volumeRaw": [ - "Vol. 42 No. 343" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2023-02-01", - "lte": "2023-02-01" - } - ], - "enumerationChronology_sort": [ - " 42-2023-02-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2023-02-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-12", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 342 (Dec. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 342" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-12-01", - "lte": "2022-12-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-12-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-12-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-14", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 341 (Nov. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 341" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-11-01", - "lte": "2022-11-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-15", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 340 (Oct. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 340" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-10-01", - "lte": "2022-10-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-13", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 339 (Sep. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 339" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-09-01", - "lte": "2022-09-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-09-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-09-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-32", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 338 (Jul. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 338" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-07-01", - "lte": "2022-07-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-33", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 337 (Jun. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 337" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-06-01", - "lte": "2022-06-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-06-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-06-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-28", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 336 (May. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 336" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-05-01", - "lte": "2022-05-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-05-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-05-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-29", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 335 (Apr. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 335" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-04-01", - "lte": "2022-04-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-30", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 334 (Mar. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 334" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-03-01", - "lte": "2022-03-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-03-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-03-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-31", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 333 (Feb. 2022)" - ], - "volumeRaw": [ - "Vol. 42 No. 333" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2022-02-01", - "lte": "2022-02-01" - } - ], - "enumerationChronology_sort": [ - " 42-2022-02-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2022-02-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-16", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 332 (Dec. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 332" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-12-01", - "lte": "2021-12-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-12-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-12-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-34", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 331 (Nov. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 331" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-11-01", - "lte": "2021-11-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-35", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 330 (Oct. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 330" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-10-01", - "lte": "2021-10-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-36", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 329 (Sep. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 329" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-09-01", - "lte": "2021-09-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-09-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-09-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-37", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 328 (Jul. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 328" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-07-01", - "lte": "2021-07-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-17", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 327 (Jun. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 327" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-06-01", - "lte": "2021-06-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-06-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-06-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-38", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 326 (May. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 326" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-05-01", - "lte": "2021-05-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-05-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-05-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-39", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 325 (Apr. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 325" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-04-01", - "lte": "2021-04-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-18", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 324 (Mar. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 324" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-03-01", - "lte": "2021-03-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-03-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-03-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-19", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 323 (Feb. 2021)" - ], - "volumeRaw": [ - "Vol. 42 No. 323" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2021-02-01", - "lte": "2021-02-01" - } - ], - "enumerationChronology_sort": [ - " 42-2021-02-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2021-02-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-20", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 322 (Dec. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 322" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-12-01", - "lte": "2020-12-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-12-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-12-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-21", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 321 (Nov. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 321" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-11-01", - "lte": "2020-11-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-22", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 320 (Oct. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 320" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-10-01", - "lte": "2020-10-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 27 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-23", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 319 (Sep. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 319" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-09-01", - "lte": "2020-09-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-09-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-09-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 26 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-24", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 318 (Jul. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 318" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-07-01", - "lte": "2020-07-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 25 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-25", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 317 (Jun. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 317" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-06-01", - "lte": "2020-06-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-06-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-06-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-26", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 316 (May. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 316" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-05-01", - "lte": "2020-05-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-05-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-05-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-40", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 315 (Apr. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 315" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-04-01", - "lte": "2020-04-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-41", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 314 (Mar. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 314" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-03-01", - "lte": "2020-03-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-03-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-03-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-42", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 313 (Feb. 2020)" - ], - "volumeRaw": [ - "Vol. 42 No. 313" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2020-02-01", - "lte": "2020-02-01" - } - ], - "enumerationChronology_sort": [ - " 42-2020-02-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2020-02-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-27", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 312 (Dec. 2019)" - ], - "volumeRaw": [ - "Vol. 42 No. 312" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2019-12-01", - "lte": "2019-12-01" - } - ], - "enumerationChronology_sort": [ - " 42-2019-12-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2019-12-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-48", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 311 (Nov. 2019)" - ], - "volumeRaw": [ - "Vol. 42 No. 311" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2019-11-01", - "lte": "2019-11-01" - } - ], - "enumerationChronology_sort": [ - " 42-2019-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2019-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-50", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 42 No. 309 (Sep. 2019)" - ], - "volumeRaw": [ - "Vol. 42 No. 309" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2019-09-01", - "lte": "2019-09-01" - } - ], - "enumerationChronology_sort": [ - " 42-2019-09-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 42-2019-09-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-49", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 310 (Oct. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 310" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-10-01", - "lte": "2019-10-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-43", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 308 (Jul. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 308" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-07-01", - "lte": "2019-07-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-44", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 307 (Jun. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 307" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-06-01", - "lte": "2019-06-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-06-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-06-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-47", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 306 (May. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 306" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-05-01", - "lte": "2019-05-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-05-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-05-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-46", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 305 (Apr. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 305" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-04-01", - "lte": "2019-04-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1036576-45", - "status": [ - { - "id": "status:a", - "label": "Available " - } - ], - "status_packed": [ - "status:a||Available " - ], - "holdingLocation": [ - { - "id": "loc:myh", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296" - ], - "identifierV2": [ - { - "value": "*LA 81-296", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 41 No. 304 (Mar. 2019)" - ], - "volumeRaw": [ - "Vol. 41 No. 304" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2019-03-01", - "lte": "2019-03-01" - } - ], - "enumerationChronology_sort": [ - " 41-2019-03-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*LA 81-000296" - }, - "sort": [ - " 41-2019-03-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 116 - }, - "_score": null, - "_source": { - "uri": "i37372229", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108987573" - } - ], - "enumerationChronology": [ - "v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433108987573" - ], - "idBarcode": [ - "33433108987573" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 41-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000041, nos. 299-303 (Sept. 2018-Feb. 2019)" - }, - "sort": [ - " 41-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 115 - }, - "_score": null, - "_source": { - "uri": "i37372228", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108987565" - } - ], - "enumerationChronology": [ - "v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433108987565" - ], - "idBarcode": [ - "33433108987565" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 40, - "lte": 40 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 40-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000040, nos. 293-298, inc. (Feb.-Aug. 2018)" - }, - "sort": [ - " 40-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 114 - }, - "_score": null, - "_source": { - "uri": "i37369430", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 40, nos. 288-292 (July 2017-Jan. 2018)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 40, nos. 288-292 (July 2017-Jan. 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108987557" - } - ], - "enumerationChronology": [ - "v. 40, nos. 288-292 (July 2017-Jan. 2018)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433108987557" - ], - "idBarcode": [ - "33433108987557" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 40, - "lte": 40 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 40-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000040, nos. 288-292 (July 2017-Jan. 2018)" - }, - "sort": [ - " 40-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 113 - }, - "_score": null, - "_source": { - "uri": "i37369426", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 39-40, nos. 283-287 (Feb.-June 2017)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 39-40, nos. 283-287 (Feb.-June 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108987540" - } - ], - "enumerationChronology": [ - "v. 39-40, nos. 283-287 (Feb.-June 2017)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433108987540" - ], - "idBarcode": [ - "33433108987540" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 39, - "lte": 40 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 39-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000039-40, nos. 283-287 (Feb.-June 2017)" - }, - "sort": [ - " 39-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 112 - }, - "_score": null, - "_source": { - "uri": "i37369420", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 39, nos. 278-282 (July 2016-Jan. 2017)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 39, nos. 278-282 (July 2016-Jan. 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108987532" - } - ], - "enumerationChronology": [ - "v. 39, nos. 278-282 (July 2016-Jan. 2017)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433108987532" - ], - "idBarcode": [ - "33433108987532" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 39, - "lte": 39 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 39-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000039, nos. 278-282 (July 2016-Jan. 2017)" - }, - "sort": [ - " 39-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 111 - }, - "_score": null, - "_source": { - "uri": "i34627481", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 38-39, nos. 273-277 (Feb.-June 2016)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 38-39, nos. 273-277 (Feb.-June 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433104416387" - } - ], - "enumerationChronology": [ - "v. 38-39, nos. 273-277 (Feb.-June 2016)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433104416387" - ], - "idBarcode": [ - "33433104416387" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 39 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 38-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000038-39, nos. 273-277 (Feb.-June 2016)" - }, - "sort": [ - " 38-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 110 - }, - "_score": null, - "_source": { - "uri": "i34627460", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433104416379" - } - ], - "enumerationChronology": [ - "v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433104416379" - ], - "idBarcode": [ - "33433104416379" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 38 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 38-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000038, nos. 268-272 (July 2015-Jan. 2016) (inc.)" - }, - "sort": [ - " 38-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 109 - }, - "_score": null, - "_source": { - "uri": "i34627409", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 37-38, nos. 263-267 (Feb.-June 2015)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 37-38, nos. 263-267 (Feb.-June 2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433104416361" - } - ], - "enumerationChronology": [ - "v. 37-38, nos. 263-267 (Feb.-June 2015)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433104416361" - ], - "idBarcode": [ - "33433104416361" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 37, - "lte": 38 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 37-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000037-38, nos. 263-267 (Feb.-June 2015)" - }, - "sort": [ - " 37-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 108 - }, - "_score": null, - "_source": { - "uri": "i32547828", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:102", - "label": "Book, paperback" - } - ], - "catalogItemType_packed": [ - "catalogItemType:102||Book, paperback" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 37, nos. 258-262 (July 2014-Jan. 2015)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 37, nos. 258-262 (July 2014-Jan. 2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064479821" - } - ], - "enumerationChronology": [ - "v. 37, nos. 258-262 (July 2014-Jan. 2015)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064479821" - ], - "idBarcode": [ - "33433064479821" - ], - "requestable": [ - false - ], - "volumeRange": [ - { - "gte": 37, - "lte": 37 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 37-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000037, nos. 258-262 (July 2014-Jan. 2015)" - }, - "sort": [ - " 37-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 107 - }, - "_score": null, - "_source": { - "uri": "i32547826", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:102", - "label": "Book, paperback" - } - ], - "catalogItemType_packed": [ - "catalogItemType:102||Book, paperback" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 36-37, nos. 253-257 (Feb.-June 2014)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 36-37, nos. 253-257 (Feb.-June 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064479813" - } - ], - "enumerationChronology": [ - "v. 36-37, nos. 253-257 (Feb.-June 2014)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064479813" - ], - "idBarcode": [ - "33433064479813" - ], - "requestable": [ - false - ], - "volumeRange": [ - { - "gte": 36, - "lte": 37 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 36-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000036-37, nos. 253-257 (Feb.-June 2014)" - }, - "sort": [ - " 36-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 106 - }, - "_score": null, - "_source": { - "uri": "i31163867", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 35-36, nos. 243-247 (Feb.-June 2013)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 35-36, nos. 243-247 (Feb.-June 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064468642" - } - ], - "enumerationChronology": [ - "v. 35-36, nos. 243-247 (Feb.-June 2013)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064468642" - ], - "idBarcode": [ - "33433064468642" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 36 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 35-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000035-36, nos. 243-247 (Feb.-June 2013)" - }, - "sort": [ - " 35-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 105 - }, - "_score": null, - "_source": { - "uri": "i32547819", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:102", - "label": "Book, paperback" - } - ], - "catalogItemType_packed": [ - "catalogItemType:102||Book, paperback" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 35, nos. 248-252 (July 2013-Jan. 2014)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 35, nos. 248-252 (July 2013-Jan. 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064479805" - } - ], - "enumerationChronology": [ - "v. 35, nos. 248-252 (July 2013-Jan. 2014)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064479805" - ], - "idBarcode": [ - "33433064479805" - ], - "requestable": [ - false - ], - "volumeRange": [ - { - "gte": 35, - "lte": 35 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 35-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000035, nos. 248-252 (July 2013-Jan. 2014)" - }, - "sort": [ - " 35-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 104 - }, - "_score": null, - "_source": { - "uri": "i31163863", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 35, nos. 238-242 (July 2012-Jan. 2013)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 35, nos. 238-242 (July 2012-Jan. 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064468634" - } - ], - "enumerationChronology": [ - "v. 35, nos. 238-242 (July 2012-Jan. 2013)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064468634" - ], - "idBarcode": [ - "33433064468634" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 35 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 35-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000035, nos. 238-242 (July 2012-Jan. 2013)" - }, - "sort": [ - " 35-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 103 - }, - "_score": null, - "_source": { - "uri": "i31163859", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 34-35, nos. 233-237 (Feb.-June 2012)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 34-35, nos. 233-237 (Feb.-June 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064468626" - } - ], - "enumerationChronology": [ - "v. 34-35, nos. 233-237 (Feb.-June 2012)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064468626" - ], - "idBarcode": [ - "33433064468626" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 34, - "lte": 35 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 34-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000034-35, nos. 233-237 (Feb.-June 2012)" - }, - "sort": [ - " 34-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 102 - }, - "_score": null, - "_source": { - "uri": "i31163856", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 34, nos. 228-232 (July 2011-Jan. 2012)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 34, nos. 228-232 (July 2011-Jan. 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064468618" - } - ], - "enumerationChronology": [ - "v. 34, nos. 228-232 (July 2011-Jan. 2012)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064468618" - ], - "idBarcode": [ - "33433064468618" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 34-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000034, nos. 228-232 (July 2011-Jan. 2012)" - }, - "sort": [ - " 34-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 101 - }, - "_score": null, - "_source": { - "uri": "i27799041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 33-34, nos. 223-227 (Feb.-June 2011)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 33-34, nos. 223-227 (Feb.-June 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073091195" - } - ], - "enumerationChronology": [ - "v. 33-34, nos. 223-227 (Feb.-June 2011)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073091195" - ], - "idBarcode": [ - "33433073091195" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 33-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000033-34, nos. 223-227 (Feb.-June 2011)" - }, - "sort": [ - " 33-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 100 - }, - "_score": null, - "_source": { - "uri": "i27799039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 33, nos. 218-222 (July 2010-Jan. 2011)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 33, nos. 218-222 (July 2010-Jan. 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073091187" - } - ], - "enumerationChronology": [ - "v. 33, nos. 218-222 (July 2010-Jan. 2011)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073091187" - ], - "idBarcode": [ - "33433073091187" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 33-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000033, nos. 218-222 (July 2010-Jan. 2011)" - }, - "sort": [ - " 33-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 99 - }, - "_score": null, - "_source": { - "uri": "i27799032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 32-33, nos. 213-217 (Feb.-June 2010)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 32-33, nos. 213-217 (Feb.-June 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073091179" - } - ], - "enumerationChronology": [ - "v. 32-33, nos. 213-217 (Feb.-June 2010)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073091179" - ], - "idBarcode": [ - "33433073091179" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ - " 32-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000032-33, nos. 213-217 (Feb.-June 2010)" - }, - "sort": [ - " 32-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 98 - }, - "_score": null, - "_source": { - "uri": "i27799021", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 32, nos. 208-212 (July 2009-Jan. 2010)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 32, nos. 208-212 (July 2009-Jan. 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073091161" - } - ], - "enumerationChronology": [ - "v. 32, nos. 208-212 (July 2009-Jan. 2010)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073091161" - ], - "idBarcode": [ - "33433073091161" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ - " 32-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000032, nos. 208-212 (July 2009-Jan. 2010)" - }, - "sort": [ - " 32-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 97 - }, - "_score": null, - "_source": { - "uri": "i27799016", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 31-32, nos. 203-207 (Feb.-June 2009)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 31-32, nos. 203-207 (Feb.-June 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073091153" - } - ], - "enumerationChronology": [ - "v. 31-32, nos. 203-207 (Feb.-June 2009)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073091153" - ], - "idBarcode": [ - "33433073091153" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ - " 31-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000031-32, nos. 203-207 (Feb.-June 2009)" - }, - "sort": [ - " 31-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 96 - }, - "_score": null, - "_source": { - "uri": "i23189798", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 31, nos. 198-202 (July 2008-Jan. 2009)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 31, nos. 198-202 (July 2008-Jan. 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060824954" - } - ], - "enumerationChronology": [ - "v. 31, nos. 198-202 (July 2008-Jan. 2009)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433060824954" - ], - "idBarcode": [ - "33433060824954" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 31 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ - " 31-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000031, nos. 198-202 (July 2008-Jan. 2009)" - }, - "sort": [ - " 31-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 95 - }, - "_score": null, - "_source": { - "uri": "i23189797", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 30-31, nos. 193-197 (Feb.-June 2008)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 30-31, nos. 193-197 (Feb.-June 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060824947" - } - ], - "enumerationChronology": [ - "v. 30-31, nos. 193-197 (Feb.-June 2008)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433060824947" - ], - "idBarcode": [ - "33433060824947" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 31 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ - " 30-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000030-31, nos. 193-197 (Feb.-June 2008)" - }, - "sort": [ - " 30-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 94 - }, - "_score": null, - "_source": { - "uri": "i23189796", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 30, nos. 188-192 (July 2007-Jan. 2008)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 30, nos. 188-192 (July 2007-Jan. 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060824939" - } - ], - "enumerationChronology": [ - "v. 30, nos. 188-192 (July 2007-Jan. 2008)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433060824939" - ], - "idBarcode": [ - "33433060824939" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ - " 30-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000030, nos. 188-192 (July 2007-Jan. 2008)" - }, - "sort": [ - " 30-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 93 - }, - "_score": null, - "_source": { - "uri": "i17447363", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 29-30, nos. 183-187 (Feb.-June 2007)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 29-30, nos. 183-187 (Feb.-June 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073125142" - } - ], - "enumerationChronology": [ - "v. 29-30, nos. 183-187 (Feb.-June 2007)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073125142" - ], - "idBarcode": [ - "33433073125142" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 29-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000029-30, nos. 183-187 (Feb.-June 2007)" - }, - "sort": [ - " 29-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 92 - }, - "_score": null, - "_source": { - "uri": "i17447362", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 29, nos. 176-182 (May 2006-Jan. 2007)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 29, nos. 176-182 (May 2006-Jan. 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433073125134" - } - ], - "enumerationChronology": [ - "v. 29, nos. 176-182 (May 2006-Jan. 2007)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433073125134" - ], - "idBarcode": [ - "33433073125134" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 29-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000029, nos. 176-182 (May 2006-Jan. 2007)" - }, - "sort": [ - " 29-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 91 - }, - "_score": null, - "_source": { - "uri": "i16656929", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433075624647" - } - ], - "enumerationChronology": [ - "v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433075624647" - ], - "idBarcode": [ - "33433075624647" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ - " 28-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000028, nos. 171 - 175 (Nov. 2005 - Apr. 2006)" - }, - "sort": [ - " 28-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 90 - }, - "_score": null, - "_source": { - "uri": "i16656930", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 28, nos. 166-170 (Mar. - Oct. 2005)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 28, nos. 166-170 (Mar. - Oct. 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433075624639" - } - ], - "enumerationChronology": [ - "v. 28, nos. 166-170 (Mar. - Oct. 2005)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433075624639" - ], - "idBarcode": [ - "33433075624639" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ - " 28-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000028, nos. 166-170 (Mar. - Oct. 2005)" - }, - "sort": [ - " 28-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 89 - }, - "_score": null, - "_source": { - "uri": "i16656928", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064471539" - } - ], - "enumerationChronology": [ - "v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064471539" - ], - "idBarcode": [ - "33433064471539" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ - " 27-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000027, nos. 161-165 (Nov. 2004 - Apr. 2005)" - }, - "sort": [ - " 27-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 88 - }, - "_score": null, - "_source": { - "uri": "i16656927", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 27, nos. 156-160 (May-Oct. 2004)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 27, nos. 156-160 (May-Oct. 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064471521" - } - ], - "enumerationChronology": [ - "v. 27, nos. 156-160 (May-Oct. 2004)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064471521" - ], - "idBarcode": [ - "33433064471521" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ - " 27-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000027, nos. 156-160 (May-Oct. 2004)" - }, - "sort": [ - " 27-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 87 - }, - "_score": null, - "_source": { - "uri": "i14747165", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064470564" - } - ], - "enumerationChronology": [ - "v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064470564" - ], - "idBarcode": [ - "33433064470564" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ - " 26-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000026, nos. 151-155 (Nov. 2003 - Apr. 2004)" - }, - "sort": [ - " 26-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 86 - }, - "_score": null, - "_source": { - "uri": "i14747164", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 26, nos. 146-150 (May-Oct. 2003)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 26, nos. 146-150 (May-Oct. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064470556" - } - ], - "enumerationChronology": [ - "v. 26, nos. 146-150 (May-Oct. 2003)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064470556" - ], - "idBarcode": [ - "33433064470556" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 26-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000026, nos. 146-150 (May-Oct. 2003)" - }, - "sort": [ - " 26-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 85 - }, - "_score": null, - "_source": { - "uri": "i14747163", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064470549" - } - ], - "enumerationChronology": [ - "v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064470549" - ], - "idBarcode": [ - "33433064470549" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 25 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 25-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 v. 000025, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)" - }, - "sort": [ - " 25-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 84 - }, - "_score": null, - "_source": { - "uri": "i14747162", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Nos. 137-141 (June-Nov. 2002)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Nos. 137-141 (June-Nov. 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064452521" - } - ], - "enumerationChronology": [ - "Nos. 137-141 (June-Nov. 2002)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064452521" - ], - "idBarcode": [ - "33433064452521" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " -2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Nos. 137-141 (June-Nov. 2002)" - }, - "sort": [ - " -2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 83 - }, - "_score": null, - "_source": { - "uri": "i14747161", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433064452513" - } - ], - "enumerationChronology": [ - "Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433064452513" - ], - "idBarcode": [ - "33433064452513" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " -2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)" - }, - "sort": [ - " -2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 82 - }, - "_score": null, - "_source": { - "uri": "i13785677", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Nos. 127-131 (June-Nov. 2001)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Nos. 127-131 (June-Nov. 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022621332" - } - ], - "enumerationChronology": [ - "Nos. 127-131 (June-Nov. 2001)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433022621332" - ], - "idBarcode": [ - "33433022621332" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " -2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Nos. 127-131 (June-Nov. 2001)" - }, - "sort": [ - " -2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 81 - }, - "_score": null, - "_source": { - "uri": "i13785676", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022621456" - } - ], - "enumerationChronology": [ - "Nos. 122-126 (Dec. 2000 - May 2001)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433022621456" - ], - "idBarcode": [ - "33433022621456" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " -2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)" - }, - "sort": [ - " -2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 80 - }, - "_score": null, - "_source": { - "uri": "i13785674", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022619146" - } - ], - "enumerationChronology": [ - "Nos. 116-121 (Feb.-Nov. 2000)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433022619146" - ], - "idBarcode": [ - "33433022619146" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ - " -2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)" - }, - "sort": [ - " -2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 117 - }, - "_score": null, - "_source": { - "uri": "i13785675", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)" - ], - "identifierV2": [ - { - "value": "*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022619021" - } - ], - "enumerationChronology": [ - "Nos. 111-115 (Apr. 1999 - Jan. 2000)" - ], - "physicalLocation": [ - "*LA 81-298" - ], - "identifier": [ - "urn:barcode:33433022619021" - ], - "idBarcode": [ - "33433022619021" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1999", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ - " -1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)" - }, - "sort": [ - " -1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 55 - }, - "_score": null, - "_source": { - "uri": "i12858884", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1998" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1998", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022582096" - } - ], - "enumerationChronology": [ - "1998" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433022582096" - ], - "idBarcode": [ - "33433022582096" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ - " -1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 001998" - }, - "sort": [ - " -1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 66 - }, - "_score": null, - "_source": { - "uri": "i12858883", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-Dec. 1997" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-Dec. 1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654123" - } - ], - "enumerationChronology": [ - "Feb.-Dec. 1997" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654123" - ], - "idBarcode": [ - "33433018654123" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1997", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " -1997" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-Dec. 001997" - }, - "sort": [ - " -1997" - ] - }, - { - "_nested": { - "field": "items", - "offset": 74 - }, - "_score": null, - "_source": { - "uri": "i12858881", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1996" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654362" - } - ], - "enumerationChronology": [ - "Feb.-July 1996" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654362" - ], - "idBarcode": [ - "33433018654362" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ - " -1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001996" - }, - "sort": [ - " -1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 65 - }, - "_score": null, - "_source": { - "uri": "i12858882", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1996 - Jan. 1997" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1996 - Jan. 1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654248" - } - ], - "enumerationChronology": [ - "Aug. 1996 - Jan. 1997" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654248" - ], - "idBarcode": [ - "33433018654248" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " -1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1996 - Jan. 001997" - }, - "sort": [ - " -1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 73 - }, - "_score": null, - "_source": { - "uri": "i12858879", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1995" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654602" - } - ], - "enumerationChronology": [ - "Feb.-July 1995" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654602" - ], - "idBarcode": [ - "33433018654602" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ - " -1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001995" - }, - "sort": [ - " -1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 64 - }, - "_score": null, - "_source": { - "uri": "i12858880", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1995 - Jan. 1996" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1995 - Jan. 1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654487" - } - ], - "enumerationChronology": [ - "Aug. 1995 - Jan. 1996" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654487" - ], - "idBarcode": [ - "33433018654487" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ - " -1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1995 - Jan. 001996" - }, - "sort": [ - " -1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 72 - }, - "_score": null, - "_source": { - "uri": "i12858877", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1994" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1994", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654230" - } - ], - "enumerationChronology": [ - "Feb.-July 1994" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654230" - ], - "idBarcode": [ - "33433018654230" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1994", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " -1994" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001994" - }, - "sort": [ - " -1994" - ] - }, - { - "_nested": { - "field": "items", - "offset": 63 - }, - "_score": null, - "_source": { - "uri": "i12858878", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1994 - Jan. 1995" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1994 - Jan. 1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654115" - } - ], - "enumerationChronology": [ - "Aug. 1994 - Jan. 1995" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654115" - ], - "idBarcode": [ - "33433018654115" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1994", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ - " -1994" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1994 - Jan. 001995" - }, - "sort": [ - " -1994" - ] - }, - { - "_nested": { - "field": "items", - "offset": 71 - }, - "_score": null, - "_source": { - "uri": "i12858875", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1993" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1993", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654479" - } - ], - "enumerationChronology": [ - "Feb.-July 1993" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654479" - ], - "idBarcode": [ - "33433018654479" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1993" - } - ], - "enumerationChronology_sort": [ - " -1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001993" - }, - "sort": [ - " -1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 62 - }, - "_score": null, - "_source": { - "uri": "i12858876", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1993 - Jan. 1994" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1993 - Jan. 1994", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654354" - } - ], - "enumerationChronology": [ - "Aug. 1993 - Jan. 1994" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654354" - ], - "idBarcode": [ - "33433018654354" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " -1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1993 - Jan. 001994" - }, - "sort": [ - " -1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 70 - }, - "_score": null, - "_source": { - "uri": "i12858873", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1992" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1992", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654107" - } - ], - "enumerationChronology": [ - "Feb.-July 1992" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654107" - ], - "idBarcode": [ - "33433018654107" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " -1992" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001992" - }, - "sort": [ - " -1992" - ] - }, - { - "_nested": { - "field": "items", - "offset": 61 - }, - "_score": null, - "_source": { - "uri": "i12858874", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1992 - Jan. 1993" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1992 - Jan. 1993", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654594" - } - ], - "enumerationChronology": [ - "Aug. 1992 - Jan. 1993" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654594" - ], - "idBarcode": [ - "33433018654594" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1993" - } - ], - "enumerationChronology_sort": [ - " -1992" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1992 - Jan. 001993" - }, - "sort": [ - " -1992" - ] - }, - { - "_nested": { - "field": "items", - "offset": 69 - }, - "_score": null, - "_source": { - "uri": "i12858871", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1991" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1991", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654347" - } - ], - "enumerationChronology": [ - "Feb.-July 1991" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654347" - ], - "idBarcode": [ - "33433018654347" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1991" - } - ], - "enumerationChronology_sort": [ - " -1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001991" - }, - "sort": [ - " -1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 60 - }, - "_score": null, - "_source": { - "uri": "i12858872", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1991 - Jan. 1992" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1991 - Jan. 1992", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654222" - } - ], - "enumerationChronology": [ - "Aug. 1991 - Jan. 1992" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654222" - ], - "idBarcode": [ - "33433018654222" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " -1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1991 - Jan. 001992" - }, - "sort": [ - " -1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 68 - }, - "_score": null, - "_source": { - "uri": "i12858869", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1990" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1990", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654586" - } - ], - "enumerationChronology": [ - "Feb.-July 1990" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654586" - ], - "idBarcode": [ - "33433018654586" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1990", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " -1990" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001990" - }, - "sort": [ - " -1990" - ] - }, - { - "_nested": { - "field": "items", - "offset": 59 - }, - "_score": null, - "_source": { - "uri": "i12858870", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1990 - Jan. 1991" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1990 - Jan. 1991", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654461" - } - ], - "enumerationChronology": [ - "Aug. 1990 - Jan. 1991" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654461" - ], - "idBarcode": [ - "33433018654461" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1990", - "lte": "1991" - } - ], - "enumerationChronology_sort": [ - " -1990" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1990 - Jan. 001991" - }, - "sort": [ - " -1990" - ] - }, - { - "_nested": { - "field": "items", - "offset": 57 - }, - "_score": null, - "_source": { - "uri": "i12858868", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Apr. 1989 - Jan. 1990" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Apr. 1989 - Jan. 1990", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654099" - } - ], - "enumerationChronology": [ - "Apr. 1989 - Jan. 1990" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654099" - ], - "idBarcode": [ - "33433018654099" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " -1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Apr. 1989 - Jan. 001990" - }, - "sort": [ - " -1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 67 - }, - "_score": null, - "_source": { - "uri": "i12858866", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Feb.-July 1988" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Feb.-July 1988", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654339" - } - ], - "enumerationChronology": [ - "Feb.-July 1988" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654339" - ], - "idBarcode": [ - "33433018654339" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " -1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Feb.-July 001988" - }, - "sort": [ - " -1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 58 - }, - "_score": null, - "_source": { - "uri": "i12858867", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Aug. 1988 - Jan. 1989" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Aug. 1988 - Jan. 1989", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654214" - } - ], - "enumerationChronology": [ - "Aug. 1988 - Jan. 1989" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654214" - ], - "idBarcode": [ - "33433018654214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " -1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Aug. 1988 - Jan. 001989" - }, - "sort": [ - " -1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 79 - }, - "_score": null, - "_source": { - "uri": "i12858865", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Mar.-Dec. 1987" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Mar.-Dec. 1987", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654453" - } - ], - "enumerationChronology": [ - "Mar.-Dec. 1987" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654453" - ], - "idBarcode": [ - "33433018654453" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1987" - } - ], - "enumerationChronology_sort": [ - " -1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001987" - }, - "sort": [ - " -1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 78 - }, - "_score": null, - "_source": { - "uri": "i12858864", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Mar.-Dec. 1986" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Mar.-Dec. 1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654578" - } - ], - "enumerationChronology": [ - "Mar.-Dec. 1986" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654578" - ], - "idBarcode": [ - "33433018654578" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1986", - "lte": "1986" - } - ], - "enumerationChronology_sort": [ - " -1986" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001986" - }, - "sort": [ - " -1986" - ] - }, - { - "_nested": { - "field": "items", - "offset": 77 - }, - "_score": null, - "_source": { - "uri": "i12858863", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Mar.-Dec. 1985" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Mar.-Dec. 1985", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654081" - } - ], - "enumerationChronology": [ - "Mar.-Dec. 1985" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654081" - ], - "idBarcode": [ - "33433018654081" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1985" - } - ], - "enumerationChronology_sort": [ - " -1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001985" - }, - "sort": [ - " -1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 76 - }, - "_score": null, - "_source": { - "uri": "i12858862", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Mar.-Dec. 1984" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Mar.-Dec. 1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654206" - } - ], - "enumerationChronology": [ - "Mar.-Dec. 1984" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654206" - ], - "idBarcode": [ - "33433018654206" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1984", - "lte": "1984" - } - ], - "enumerationChronology_sort": [ - " -1984" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001984" - }, - "sort": [ - " -1984" - ] - }, - { - "_nested": { - "field": "items", - "offset": 54 - }, - "_score": null, - "_source": { - "uri": "i12858860", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1983" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1983", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654446" - } - ], - "enumerationChronology": [ - "1983" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654446" - ], - "idBarcode": [ - "33433018654446" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1983", - "lte": "1983" - } - ], - "enumerationChronology_sort": [ - " -1983" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 001983" - }, - "sort": [ - " -1983" - ] - }, - { - "_nested": { - "field": "items", - "offset": 53 - }, - "_score": null, - "_source": { - "uri": "i12858859", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1982" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1982", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654560" - } - ], - "enumerationChronology": [ - "1982" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654560" - ], - "idBarcode": [ - "33433018654560" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1982", - "lte": "1982" - } - ], - "enumerationChronology_sort": [ - " -1982" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 001982" - }, - "sort": [ - " -1982" - ] - }, - { - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "uri": "i12858858", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1981" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1981", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654073" - } - ], - "enumerationChronology": [ - "1981" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654073" - ], - "idBarcode": [ - "33433018654073" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1981", - "lte": "1981" - } - ], - "enumerationChronology_sort": [ - " -1981" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 001981" - }, - "sort": [ - " -1981" - ] - }, - { - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "uri": "i12858857", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1980" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1980", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654198" - } - ], - "enumerationChronology": [ - "1980" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654198" - ], - "idBarcode": [ - "33433018654198" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1980", - "lte": "1980" - } - ], - "enumerationChronology_sort": [ - " -1980" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 001980" - }, - "sort": [ - " -1980" - ] - }, - { - "_nested": { - "field": "items", - "offset": 75 - }, - "_score": null, - "_source": { - "uri": "i12858861", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 Index (1977-1983)" - ], - "identifierV2": [ - { - "value": "*LA 81-296 Index (1977-1983)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654321" - } - ], - "enumerationChronology": [ - "Index (1977-1983)" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654321" - ], - "idBarcode": [ - "33433018654321" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1977", - "lte": "1983" - } - ], - "enumerationChronology_sort": [ - " -1977" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 Index (1977-1983)" - }, - "sort": [ - " -1977" - ] - }, - { - "_nested": { - "field": "items", - "offset": 56 - }, - "_score": null, - "_source": { - "uri": "i12858856", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:myh32", - "label": "Performing Arts Research Collections - Recorded Sound" - } - ], - "holdingLocation_packed": [ - "loc:myh32||Performing Arts Research Collections - Recorded Sound" - ], - "shelfMark": [ - "*LA 81-296 1977-1979" - ], - "identifierV2": [ - { - "value": "*LA 81-296 1977-1979", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433018654313" - } - ], - "enumerationChronology": [ - "1977-1979" - ], - "physicalLocation": [ - "*LA 81-296" - ], - "identifier": [ - "urn:barcode:33433018654313" - ], - "idBarcode": [ - "33433018654313" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "1977", - "lte": "1979" - } - ], - "enumerationChronology_sort": [ - " -1977" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*LA 81-296 1977-001979" - }, - "sort": [ - " -1977" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010676", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At head of title: No 704. Sénat. Année 1919. Session ordinaire ...", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "World War, 1914-1918" - ], - "publisherLiteral": [ - "Impr. du Sénat," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1919 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rapport de la Commission d'enquête sur les faits de la guerre [microform]." - ], - "shelfMark": [ - "*Z-3990 no. 9" - ], - "creatorLiteral": [ - "France. Commission d'enquête sur les faits de la guerre." - ], - "createdString": [ - "1919" - ], - "dateStartYear": [ - 1919 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3990 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10010676" - }, - { - "type": "bf:Identifier", - "value": "WWIa" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01112568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210652" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636125262067, - "publicationStatement": [ - "Paris : Impr. du Sénat, 1919-" - ], - "identifier": [ - "urn:bnum:10010676", - "urn:undefined:WWIa", - "urn:undefined:NNSZ01112568", - "urn:undefined:(WaOLN)nyp0210652" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1919" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "World War, 1914-1918." - ], - "titleDisplay": [ - "Rapport de la Commission d'enquête sur les faits de la guerre [microform]." - ], - "uri": "b10010676", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v.1. Mémoire sur les responsabilités de la guerre/établi ... par Émile Bourgeois et Georges Pagès." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10010676" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433106577558" - ], - "physicalLocation": [ - "*Z-3990" - ], - "shelfMark_sort": "a*Z-3990 no. 000001-9", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i24076474", - "shelfMark": [ - "*Z-3990 no. 1-9" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010704", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "World War, 1914-1918", - "World War, 1914-1918 -- Schools", - "World War, 1914-1918 -- Women" - ], - "publisherLiteral": [ - "Govt. Print. Off.," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1918 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "War work of women in colleges [microform]" - ], - "shelfMark": [ - "*Z-4016 no. 7" - ], - "creatorLiteral": [ - "United States. Committee on Public Information." - ], - "createdString": [ - "1918" - ], - "idLccn": [ - "18026236" - ], - "dateStartYear": [ - 1918 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-4016 no. 7" - }, - { - "type": "nypl:Bnumber", - "value": "10010704" - }, - { - "type": "bf:Lccn", - "value": "18026236" - }, - { - "type": "bf:Identifier", - "value": "WWIa" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01112597" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210680" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636143142429, - "publicationStatement": [ - "Washington, Govt. Print. Off., 1918-" - ], - "identifier": [ - "urn:bnum:10010704", - "urn:lccn:18026236", - "urn:undefined:WWIa", - "urn:undefined:NNSZ01112597", - "urn:undefined:(WaOLN)nyp0210680" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "World War, 1914-1918 -- Schools.", - "World War, 1914-1918 -- Women." - ], - "titleDisplay": [ - "War work of women in colleges [microform] issued by the Committee on Public Information ..." - ], - "uri": "b10010704", - "lccClassification": [ - "D639.W7 U5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Washington," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10010704" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433106577871" - ], - "physicalLocation": [ - "*Z-4016" - ], - "shelfMark_sort": "a*Z-4016 no. 000001-14", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30102337", - "shelfMark": [ - "*Z-4016 no. 1-14" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-4016 no. 1-14" - }, - { - "type": "bf:Barcode", - "value": "33433106577871" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "no. 1-14" - ], - "idBarcode": [ - "33433106577871" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-121137ffc8f53bcde6cbfa353abc873d.json b/test/fixtures/query-121137ffc8f53bcde6cbfa353abc873d.json new file mode 100644 index 00000000..d480a23b --- /dev/null +++ b/test/fixtures/query-121137ffc8f53bcde6cbfa353abc873d.json @@ -0,0 +1,13660 @@ +{ + "body": { + "took": 176, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1433126, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000126", + "_score": null, + "_source": { + "extent": [ + "72 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ramana, Maharshi" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrī Ramaṇāśrama" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "title": [ + "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OLY 82-4666" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "idOclc": [ + "NYPG001000074-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-4666" + }, + { + "type": "nypl:Bnumber", + "value": "10000126" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000074-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100074" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200125" + } + ], + "updatedAt": 1703706750428, + "publicationStatement": [ + "Tirūvaṇṇāmalai : Śrī Ramaṇāśrama, 1974." + ], + "identifier": [ + "urn:shelfmark:*OLY 82-4666", + "urn:bnum:10000126", + "urn:oclc:NYPG001000074-B", + "urn:identifier:NNSZ00100074", + "urn:identifier:(WaOLN)nyp0200125" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ramana, Maharshi." + ], + "titleDisplay": [ + "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." + ], + "uri": "b10000126", + "placeOfPublication": [ + "Tirūvaṇṇāmalai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000126" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417551" + ], + "identifier": [ + "urn:shelfmark:*OLY 82-4666", + "urn:barcode:33433060417551" + ], + "identifierV2": [ + { + "value": "*OLY 82-4666", + "type": "bf:ShelfMark" + }, + { + "value": "33433060417551", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 82-4666" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLY 82-4666" + ], + "shelfMark_sort": "a*OLY 82-004666", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783800" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000156", + "_score": null, + "_source": { + "extent": [ + "10, 9 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Additions and corrections in MS.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter in Sanskrit or English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu gods", + "Hindu hymns, Sanskrit" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Go. Venkaṭarāmaśāstri]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + ], + "shelfMark": [ + "*OLY 83-4674" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902648" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" + }, + { + "type": "nypl:Bnumber", + "value": "10000156" + }, + { + "type": "bf:Lccn", + "value": "75902648" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000104-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100104" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200155" + } + ], + "idOclc": [ + "NYPG001000104-B" + ], + "uniformTitle": [ + "Aṣṭakapañcaka" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[S.l. : Go. Venkaṭarāmaśāstri], 1972." + ], + "identifier": [ + "urn:bnum:10000156", + "urn:lccn:75902648", + "urn:oclc:NYPG001000104-B", + "urn:undefined:NNSZ00100104", + "urn:undefined:(WaOLN)nyp0200155" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu gods.", + "Hindu hymns, Sanskrit." + ], + "titleDisplay": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari / praṇetā Garikapāṭi Lakshmīkāntaḥ." + ], + "uri": "b10000156", + "lccClassification": [ + "BL1216 .L34" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "titleAlt": [ + "Aṣṭakapañcaka", + "Jaladhijānandalaharī." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000156" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060370396" + ], + "physicalLocation": [ + "*OLY 83-4674" + ], + "shelfMark_sort": "a*OLY 83-004674", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783803", + "shelfMark": [ + "*OLY 83-4674" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" + }, + { + "type": "bf:Barcode", + "value": "33433060370396" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060370396" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000165", + "_score": null, + "_source": { + "extent": [ + "47, 112 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vaishnavism", + "Vaishnavism -- Prayer books and devotions", + "Vaishnavism -- Prayer books and devotions -- Tamil" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nārāyaṇacāmi Nāyaṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" + ], + "shelfMark": [ + "*OLY 83-4895" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76901471" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Narayanaswami Naidu, Tiruchirrambalam Krishnaswamy, 1906-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" + }, + { + "type": "nypl:Bnumber", + "value": "10000165" + }, + { + "type": "bf:Lccn", + "value": "76901471" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000113-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100113" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200164" + } + ], + "idOclc": [ + "NYPG001000113-B" + ], + "uniformTitle": [ + "Nālāyirat tivviyap pirapantam. Selections." + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Kaṭalūr : Nārāyaṇacāmi Nāyaṭu, 1975." + ], + "identifier": [ + "urn:bnum:10000165", + "urn:lccn:76901471", + "urn:oclc:NYPG001000113-B", + "urn:undefined:NNSZ00100113", + "urn:undefined:(WaOLN)nyp0200164" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vaishnavism -- Prayer books and devotions -- Tamil." + ], + "titleDisplay": [ + "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ / [Tokuppāciriyar Ti. Ki. Nārāyaṇacāmi Nāyaṭu]." + ], + "uri": "b10000165", + "lccClassification": [ + "BL1245.V3 N28 1975" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kaṭalūr" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000165" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419649" + ], + "physicalLocation": [ + "*OLY 83-4895" + ], + "shelfMark_sort": "a*OLY 83-004895", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783808", + "shelfMark": [ + "*OLY 83-4895" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" + }, + { + "type": "bf:Barcode", + "value": "33433060419649" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419649" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000177", + "_score": null, + "_source": { + "extent": [ + "4, 4, 354 p. col. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [349]-354.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rām Sanehīs" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rāmasnehī Sāhitya Śodha Saṃsthāna" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." + ], + "shelfMark": [ + "*OLY 84-85" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pāṇḍeya, Śivāśaṅkara, 1935-" + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74901467" + ], + "seriesStatement": [ + "Rāmasnehī sāhitya śodha saṃsthāna, pushpa 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-85" + }, + { + "type": "nypl:Bnumber", + "value": "10000177" + }, + { + "type": "bf:Lccn", + "value": "74901467" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000125-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100125" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200176" + } + ], + "idOclc": [ + "NYPG001000125-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Dillī, Rāmasnehī Sāhitya Śodha Saṃsthāna [1973]" + ], + "identifier": [ + "urn:bnum:10000177", + "urn:lccn:74901467", + "urn:oclc:NYPG001000125-B", + "urn:undefined:NNSZ00100125", + "urn:undefined:(WaOLN)nyp0200176" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rām Sanehīs." + ], + "titleDisplay": [ + "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi. Lekhaka Śivāśaṅkara Pāṇḍeya." + ], + "uri": "b10000177", + "lccClassification": [ + "BL1245.R35 P36" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000177" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419680" + ], + "physicalLocation": [ + "*OLY 84-85" + ], + "shelfMark_sort": "a*OLY 84-000085", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783812", + "shelfMark": [ + "*OLY 84-85" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-85" + }, + { + "type": "bf:Barcode", + "value": "33433060419680" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419680" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000195", + "_score": null, + "_source": { + "extent": [ + "116 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vālmīki" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." + ], + "shelfMark": [ + "*OLY 83-2592" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rāmacāmi, Ī. Ve., Tantai Periyār, 1878-1973." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73903633" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" + }, + { + "type": "nypl:Bnumber", + "value": "10000195" + }, + { + "type": "bf:Lccn", + "value": "73903633" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000143-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100143" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200194" + } + ], + "idOclc": [ + "NYPG001000143-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tirucci, Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu [1972]" + ], + "identifier": [ + "urn:bnum:10000195", + "urn:lccn:73903633", + "urn:oclc:NYPG001000143-B", + "urn:undefined:NNSZ00100143", + "urn:undefined:(WaOLN)nyp0200194" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vālmīki." + ], + "titleDisplay": [ + "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu. [Eḻutiyavar] Periyār Ī. Ve. Rā." + ], + "uri": "b10000195", + "lccClassification": [ + "PK3659 .R34 1972" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirucci" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000195" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418526" + ], + "physicalLocation": [ + "*OLY 83-2592" + ], + "shelfMark_sort": "a*OLY 83-002592", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783817", + "shelfMark": [ + "*OLY 83-2592" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" + }, + { + "type": "bf:Barcode", + "value": "33433060418526" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418526" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000203", + "_score": null, + "_source": { + "extent": [ + "201 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ramana, Maharshi" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śivalāla Agravāla eṇḍa Kampanī" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Vedālaṅkāra, Vedarāja." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Osbourne, Arthur." + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3981" + }, + { + "type": "nypl:Bnumber", + "value": "10000203" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000151-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100151" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200202" + } + ], + "idOclc": [ + "NYPG001000151-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Āgarā : Śivalāla Agravāla eṇḍa Kampanī, 1978." + ], + "identifier": [ + "urn:bnum:10000203", + "urn:oclc:NYPG001000151-B", + "urn:undefined:NNSZ00100151", + "urn:undefined:(WaOLN)nyp0200202" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ramana, Maharshi." + ], + "titleDisplay": [ + "Ramaṇa Maharshi : evaṃ ātma-jñāna kā mārga. [́Hindi edition of Ramana Maharshi and the Path of Self-Knowledge by Arthur Osbourne] / lekhaka Ārthara Āsaborna ; bhūmikā lekhaka Ḍā. Sarvapallī Rādhākṛshṇana ; anuvādaka Vedarāja Vedālankāra." + ], + "uri": "b10000203", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Āgarā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000203" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417486" + ], + "physicalLocation": [ + "*OLY 82-3981" + ], + "shelfMark_sort": "a*OLY 82-003981", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783820", + "shelfMark": [ + "*OLY 82-3981" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3981" + }, + { + "type": "bf:Barcode", + "value": "33433060417486" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417486" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000229", + "_score": null, + "_source": { + "extent": [ + "97, 5 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Running title: Silver jubilee souvenir '72", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Tamil or English.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Advertising matter included in paging.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu devotional literature, Tamil", + "Vaishnavites", + "Vaishnavites -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[Thirumazhisaiars' Association" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The Thirumazhisaiars' Association : (Mahisara Abhijana Sabha) silver jubilee souvenir, 1972." + ], + "shelfMark": [ + "*OLY 84-1084" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73902510" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Thirumazhisaiars' Association." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1084" + }, + { + "type": "nypl:Bnumber", + "value": "10000229" + }, + { + "type": "bf:Lccn", + "value": "73902510" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000177-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100177" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200228" + } + ], + "idOclc": [ + "NYPG001000177-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Madras : [Thirumazhisaiars' Association, 1972]" + ], + "identifier": [ + "urn:bnum:10000229", + "urn:lccn:73902510", + "urn:oclc:NYPG001000177-B", + "urn:undefined:NNSZ00100177", + "urn:undefined:(WaOLN)nyp0200228" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu devotional literature, Tamil.", + "Vaishnavites -- Biography." + ], + "titleDisplay": [ + "The Thirumazhisaiars' Association : (Mahisara Abhijana Sabha) silver jubilee souvenir, 1972." + ], + "uri": "b10000229", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Madras" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000229" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419979" + ], + "physicalLocation": [ + "*OLY 84-1084" + ], + "shelfMark_sort": "a*OLY 84-001084", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783829", + "shelfMark": [ + "*OLY 84-1084" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1084" + }, + { + "type": "bf:Barcode", + "value": "33433060419979" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419979" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000292", + "_score": null, + "_source": { + "extent": [ + "56 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit and English on opposite pages.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ramana, Maharshi" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sri Ramanasramam" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Revelation : Śrīramaṇahṛdayam. A Sanskrit Version of the Ulladu Narpadu of Bhagavan Sri Ramana with an English translation" + ], + "shelfMark": [ + "*OLY 82-3739" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sarma, K. Lakshmana." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3739" + }, + { + "type": "nypl:Bnumber", + "value": "10000292" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000245-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100245" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200291" + } + ], + "idOclc": [ + "NYPG001000245-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tiruvannamalai : Sri Ramanasramam, 1980." + ], + "identifier": [ + "urn:bnum:10000292", + "urn:oclc:NYPG001000245-B", + "urn:undefined:NNSZ00100245", + "urn:undefined:(WaOLN)nyp0200291" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ramana, Maharshi." + ], + "titleDisplay": [ + "Revelation : Śrīramaṇahṛdayam. A Sanskrit Version of the Ulladu Narpadu of Bhagavan Sri Ramana with an English translation / by K. Lakshmana Sarma, \"WHO.\"" + ], + "uri": "b10000292", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tiruvannamalai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000292" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417452" + ], + "physicalLocation": [ + "*OLY 82-3739" + ], + "shelfMark_sort": "a*OLY 82-003739", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783845", + "shelfMark": [ + "*OLY 82-3739" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3739" + }, + { + "type": "bf:Barcode", + "value": "33433060417452" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417452" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000338", + "_score": null, + "_source": { + "extent": [ + "8, 323 p. illus." + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu hymns" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Khemarāja Śrīkṛshṇadāsa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bṛhatstotraratrākaraḥ, sacitraḥ; stotrasaṃkhyā 224." + ], + "shelfMark": [ + "*OLY 82-3968" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 68013360" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3968" + }, + { + "type": "nypl:Bnumber", + "value": "10000338" + }, + { + "type": "bf:Lccn", + "value": "sa 68013360" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000291-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100291" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200337" + } + ], + "idOclc": [ + "NYPG001000291-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Bambaī, Khemarāja Śrīkṛshṇadāsa, 1963." + ], + "identifier": [ + "urn:bnum:10000338", + "urn:lccn:sa 68013360", + "urn:oclc:NYPG001000291-B", + "urn:undefined:NNSZ00100291", + "urn:undefined:(WaOLN)nyp0200337" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu hymns." + ], + "titleDisplay": [ + "Bṛhatstotraratrākaraḥ, sacitraḥ; stotrasaṃkhyā 224." + ], + "uri": "b10000338", + "lccClassification": [ + "BL1226.3 .B7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bambaī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000338" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417478" + ], + "physicalLocation": [ + "*OLY 82-3968" + ], + "shelfMark_sort": "a*OLY 82-003968", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783847", + "shelfMark": [ + "*OLY 82-3968" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3968" + }, + { + "type": "bf:Barcode", + "value": "33433060417478" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417478" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000344", + "_score": null, + "_source": { + "extent": [ + "194 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Persian or Arabic", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Translation of: Ṭibb al-Imām al-Ṣādiq.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jaʻfar al-Ṣādiq, 702?-765 or 6", + "Medicine, Medieval", + "Hygiene" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bungāh-i Maṭbūʻātī-i ʻAṭāʼī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1961 + ], + "dateEndString": [ + "1962" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ṭibb al-Ṣādiq, ṭibb va bihdāsht az naẓar-i Imām Jaʻfar Ṣādiq." + ], + "shelfMark": [ + "*OGI 82-3991" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khalīlī, Muḥammad." + ], + "createdString": [ + "1961" + ], + "idLccn": [ + "72274632" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Tihrānī, Nāṣir al-Dīn Ṣādiq." + ], + "dateStartYear": [ + 1961 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI 82-3991" + }, + { + "type": "nypl:Bnumber", + "value": "10000344" + }, + { + "type": "bf:Lccn", + "value": "72274632" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000297-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100297" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200343" + } + ], + "idOclc": [ + "NYPG001000297-B" + ], + "dateEndYear": [ + 1962 + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tihrān, Bungāh-i Maṭbūʻātī-i ʻAṭāʼī, 1339 [1961 or 1962]" + ], + "identifier": [ + "urn:bnum:10000344", + "urn:lccn:72274632", + "urn:oclc:NYPG001000297-B", + "urn:undefined:NNSZ00100297", + "urn:undefined:(WaOLN)nyp0200343" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1961" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jaʻfar al-Ṣādiq, 702?-765 or 6.", + "Medicine, Medieval.", + "Hygiene." + ], + "titleDisplay": [ + "Ṭibb al-Ṣādiq, ṭibb va bihdāsht az naẓar-i Imām Jaʻfar Ṣādiq. Taʼlīf-i Muḥammad Khalī̄li. Tarjumah va sharḥ az Naṣīr al-Dīn Ṣādiq Tihrānī." + ], + "uri": "b10000344", + "lccClassification": [ + "BP193.16. K516 1961" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000344" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058031224" + ], + "physicalLocation": [ + "*OGI 82-3991" + ], + "shelfMark_sort": "a*OGI 82-003991", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858044", + "shelfMark": [ + "*OGI 82-3991" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI 82-3991" + }, + { + "type": "bf:Barcode", + "value": "33433058031224" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058031224" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000345", + "_score": null, + "_source": { + "extent": [ + "5, 247 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Persian or Arabic.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "ʻAlī al-Riḍāʼs Risālah dhahabīyah: p.191-220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʻAlī al-Riḍā ibn Mūsá, -818 or 19", + "Medicine, Medieval", + "Hygiene" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muḥammad Rizā Lavāsānī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1961 + ], + "title": [ + "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OGI 82-3989" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1961" + ], + "creatorLiteral": [ + "Tihrānī, Nāṣir al-Dīn Ṣādiq." + ], + "idLccn": [ + "74214957" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "ʻAlī al-Riḍā ibn Mūsá, -818 or 19." + ], + "dateStartYear": [ + 1961 + ], + "idOclc": [ + "NYPG001000298-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI 82-3989" + }, + { + "type": "nypl:Bnumber", + "value": "10000345" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000298-B" + }, + { + "type": "bf:Lccn", + "value": "74214957" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100298" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200344" + } + ], + "updatedAt": 1696262638505, + "publicationStatement": [ + "Tihrān, Muḥammad Rizā Lavāsānī, 1340 [1961]" + ], + "identifier": [ + "urn:shelfmark:*OGI 82-3989", + "urn:bnum:10000345", + "urn:oclc:NYPG001000298-B", + "urn:lccn:74214957", + "urn:identifier:NNSZ00100298", + "urn:identifier:(WaOLN)nyp0200344" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1961" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʻAlī al-Riḍā ibn Mūsá, -818 or 19.", + "Medicine, Medieval.", + "Hygiene." + ], + "titleDisplay": [ + "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā, nivishtah-ʼi Naṣīr al-Dīn Mīr Ṣādiqī Tihrānī." + ], + "uri": "b10000345", + "lccClassification": [ + "R141. T53" + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000345" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058030721" + ], + "identifier": [ + "urn:shelfmark:*OGI 82-3989", + "urn:barcode:33433058030721" + ], + "identifierV2": [ + { + "value": "*OGI 82-3989", + "type": "bf:ShelfMark" + }, + { + "value": "33433058030721", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OGI 82-3989" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OGI 82-3989" + ], + "shelfMark_sort": "a*OGI 82-003989", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858045" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000348", + "_score": null, + "_source": { + "extent": [ + "[28], 573 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [7-10] (1st group)", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Description and travel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Mīrzā Ḥabīb Allāh" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1880" + ], + "createdYear": [ + 1879 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kitāb-i mustaṭāb-i ganj-i dānish" + ], + "shelfMark": [ + "*ONA+ 82-2677" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Muʻtamid al-Sulṭān, Muḥammad Taqī khān Ḥakīm, mutakhalliṣ bih Ḥakīm." + ], + "createdString": [ + "1879" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1879 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677" + }, + { + "type": "nypl:Bnumber", + "value": "10000348" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000301-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100301" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200347" + } + ], + "idOclc": [ + "NYPG001000301-B" + ], + "dateEndYear": [ + 1880 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ṭihrān : Mīrzā Ḥabīb Allāh, 1305 [1879 or 1880]" + ], + "identifier": [ + "urn:bnum:10000348", + "urn:oclc:NYPG001000301-B", + "urn:undefined:NNSZ00100301", + "urn:undefined:(WaOLN)nyp0200347" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1879" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Description and travel." + ], + "titleDisplay": [ + "Kitāb-i mustaṭāb-i ganj-i dānish / az taʼlīfāt-i Muʻtamid al-Sulṭān Muḥammad Taqī Khān mutikhalliṣ bih Ḥakīm ; bi-saʻī va ihtimām-i Mullā Maḥmūd va Mullā Rizā Kitābfurūsh." + ], + "uri": "b10000348", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ṭihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Ganj-i dānish." + ], + "dimensions": [ + "34 cm." + ] + }, + "sort": [ + "b10000348" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059840763" + ], + "physicalLocation": [ + "*ONA+ 82-2677 " + ], + "shelfMark_sort": "a*ONA+ 82-2677 ", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783848", + "shelfMark": [ + "*ONA+ 82-2677 " + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677 " + }, + { + "type": "bf:Barcode", + "value": "33433059840763" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433059840763" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000379", + "_score": null, + "_source": { + "extent": [ + "2 v. in 1. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Persian or Arabic.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Shiites", + "Shiites -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Markazī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1949 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Favāʼid al-Razavīyah : zindigānī-i ʻulamāʼī maẕ hab-i shīʻah" + ], + "shelfMark": [ + "*OGI 83-4798" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Qummī, ʻAbbās ibn Muḥammad Riḍā, -1941." + ], + "createdString": [ + "1949" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1949 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI 83-4798" + }, + { + "type": "nypl:Bnumber", + "value": "10000379" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000332-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100332" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200378" + } + ], + "idOclc": [ + "NYPG001000332-B" + ], + "updatedAt": 1676664769349, + "publicationStatement": [ + "[Tihrān?] : Intishārāt-i Markazī, 1327 [1949]" + ], + "identifier": [ + "urn:bnum:10000379", + "urn:oclc:NYPG001000332-B", + "urn:undefined:NNSZ00100332", + "urn:undefined:(WaOLN)nyp0200378" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1949" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Shiites -- Biography." + ], + "titleDisplay": [ + "Favāʼid al-Razavīyah : zindigānī-i ʻulamāʼī maẕ hab-i shīʻah / taʼlīf-i Shaykh ʻAbbās Qummī." + ], + "uri": "b10000379", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tihrān?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000379" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058030051" + ], + "physicalLocation": [ + "*OGI 83-4798" + ], + "shelfMark_sort": "a*OGI 83-004798", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858047", + "shelfMark": [ + "*OGI 83-4798" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI 83-4798" + }, + { + "type": "bf:Barcode", + "value": "33433058030051" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058030051" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000392", + "_score": null, + "_source": { + "extent": [ + "228 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Fasts and feasts", + "Fasts and feasts -- Hinduism", + "Hindu temples", + "Hindu temples -- Tamil Nadu" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Cāstā Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aimperu viḻākkaḷ." + ], + "shelfMark": [ + "*OLY 84-1823" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gopalakrishnan, Sattanathapuram Subramania, 1916-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74913252" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1823" + }, + { + "type": "nypl:Bnumber", + "value": "10000392" + }, + { + "type": "bf:Lccn", + "value": "74913252" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000346-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100346" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200391" + } + ], + "idOclc": [ + "NYPG001000346-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tiruccentūr, Cāstā Patippakam [1970]" + ], + "identifier": [ + "urn:bnum:10000392", + "urn:lccn:74913252", + "urn:oclc:NYPG001000346-B", + "urn:undefined:NNSZ00100346", + "urn:undefined:(WaOLN)nyp0200391" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Fasts and feasts -- Hinduism.", + "Hindu temples -- Tamil Nadu." + ], + "titleDisplay": [ + "Aimperu viḻākkaḷ. Tokuppāciriyar Centil Tuṟavi." + ], + "uri": "b10000392", + "lccClassification": [ + "BL1212 .G66" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tiruccentūr" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000392" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060420118" + ], + "physicalLocation": [ + "*OLY 84-1823" + ], + "shelfMark_sort": "a*OLY 84-001823", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783870", + "shelfMark": [ + "*OLY 84-1823" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1823" + }, + { + "type": "bf:Barcode", + "value": "33433060420118" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060420118" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000397", + "_score": null, + "_source": { + "extent": [ + "87 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Revision of a speech delivered at the 41st annual day celebration of the Saivasiddhanta Sabha, Tuticorin, 1924.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu philosophy", + "Śaivism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Araci Puk Ṭippō" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Caivattiṉ camaracam." + ], + "shelfMark": [ + "*OLY 84-1838" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913694" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Saivasiddhanta Sabha." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1838" + }, + { + "type": "nypl:Bnumber", + "value": "10000397" + }, + { + "type": "bf:Lccn", + "value": "73913694" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000351-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100351" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200396" + } + ], + "idOclc": [ + "NYPG001000351-B" + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "Ceṉṉai, Araci Puk Ṭippō, 1970." + ], + "identifier": [ + "urn:bnum:10000397", + "urn:lccn:73913694", + "urn:oclc:NYPG001000351-B", + "urn:undefined:NNSZ00100351", + "urn:undefined:(WaOLN)nyp0200396" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu philosophy.", + "Śaivism." + ], + "titleDisplay": [ + "Caivattiṉ camaracam. Ākkiyōr Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "uri": "b10000397", + "lccClassification": [ + "B131 .K343 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000397" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060420126" + ], + "physicalLocation": [ + "*OLY 84-1838" + ], + "shelfMark_sort": "a*OLY 84-001838", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783872", + "shelfMark": [ + "*OLY 84-1838" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1838" + }, + { + "type": "bf:Barcode", + "value": "33433060420126" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060420126" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000406", + "_score": null, + "_source": { + "extent": [ + "220 p. port." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Murugan (Hindu deity)", + "Murugan (Hindu deity) -- Poetry" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Acciṭṭōr Kāntitācaṉ Accakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ōtāḷar kuṟavañci; eṉum, Alakumalaikkuṟavañci." + ], + "shelfMark": [ + "*OLY 84-1725" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ciṉṉattampi Nāvalar, active 18th century." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "74914694" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Paḻaṉiccāmip Pulavar, K." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1725" + }, + { + "type": "nypl:Bnumber", + "value": "10000406" + }, + { + "type": "bf:Lccn", + "value": "74914694" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000360-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100360" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200405" + } + ], + "idOclc": [ + "NYPG001000360-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[Kōvai, Acciṭṭōr Kāntitācaṉ Accakam, 1969]" + ], + "identifier": [ + "urn:bnum:10000406", + "urn:lccn:74914694", + "urn:oclc:NYPG001000360-B", + "urn:undefined:NNSZ00100360", + "urn:undefined:(WaOLN)nyp0200405" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Murugan (Hindu deity) -- Poetry." + ], + "titleDisplay": [ + "Ōtāḷar kuṟavañci; eṉum, Alakumalaikkuṟavañci. Patipp̲aciriyar Ka. Paḻaṉiccāmip Pulavar." + ], + "uri": "b10000406", + "lccClassification": [ + "PL4758.9.C4985 O8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Kōvai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000406" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060420076" + ], + "physicalLocation": [ + "*OLY 84-1725" + ], + "shelfMark_sort": "a*OLY 84-001725", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783876", + "shelfMark": [ + "*OLY 84-1725" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1725" + }, + { + "type": "bf:Barcode", + "value": "33433060420076" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060420076" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000413", + "_score": null, + "_source": { + "extent": [ + "100 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Karumari Amman (Hindu deity)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Cūppar Pavar Papḷikēṣaṉs" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiruvēṟkāṭu Śrī Tēvi Karumārī Ammaṉ Catakam" + ], + "shelfMark": [ + "*OLY 84-1817" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Śrī Tēvi Karumāri Tāsar." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "75914516" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1817" + }, + { + "type": "nypl:Bnumber", + "value": "10000413" + }, + { + "type": "bf:Lccn", + "value": "75914516" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000367-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100367" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200412" + } + ], + "idOclc": [ + "NYPG001000367-B" + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "Ceṉṉai : Cūppar Pavar Papḷikēṣaṉs, [1970]" + ], + "identifier": [ + "urn:bnum:10000413", + "urn:lccn:75914516", + "urn:oclc:NYPG001000367-B", + "urn:undefined:NNSZ00100367", + "urn:undefined:(WaOLN)nyp0200412" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Karumari Amman (Hindu deity)" + ], + "titleDisplay": [ + "Tiruvēṟkāṭu Śrī Tēvi Karumārī Ammaṉ Catakam / iyaṟṟiyavar Śrī Tēvi Karumārī Tāsar." + ], + "uri": "b10000413", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10000413" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060420100" + ], + "physicalLocation": [ + "*OLY 84-1817" + ], + "shelfMark_sort": "a*OLY 84-001817", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783880", + "shelfMark": [ + "*OLY 84-1817" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1817" + }, + { + "type": "bf:Barcode", + "value": "33433060420100" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060420100" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000421", + "_score": null, + "_source": { + "extent": [ + "4, 80 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nammāḻvār", + "Hindu philosophy", + "Vaishnavism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Araci Puk Ṭippō" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tamiḻnāṭum Nammāḻvārum." + ], + "shelfMark": [ + "*OLY 84-1736" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "74913567" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1736" + }, + { + "type": "nypl:Bnumber", + "value": "10000421" + }, + { + "type": "bf:Lccn", + "value": "74913567" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000375-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100375" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200420" + } + ], + "idOclc": [ + "NYPG001000375-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ceṉṉai, Araci Puk Ṭippō, 1969." + ], + "identifier": [ + "urn:bnum:10000421", + "urn:lccn:74913567", + "urn:oclc:NYPG001000375-B", + "urn:undefined:NNSZ00100375", + "urn:undefined:(WaOLN)nyp0200420" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nammāḻvār.", + "Hindu philosophy.", + "Vaishnavism." + ], + "titleDisplay": [ + "Tamiḻnāṭum Nammāḻvārum. Ākkiyōr Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "uri": "b10000421", + "lccClassification": [ + "B131 .K346 1969" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000421" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060420092" + ], + "physicalLocation": [ + "*OLY 84-1736" + ], + "shelfMark_sort": "a*OLY 84-001736", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783883", + "shelfMark": [ + "*OLY 84-1736" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1736" + }, + { + "type": "bf:Barcode", + "value": "33433060420092" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060420092" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000424", + "_score": null, + "_source": { + "extent": [ + "7, 79 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1931 as an appendix to v.4 of Mīmāṃsādarśana.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jaimini", + "Mimamsa" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ānandāśramasaṃsthā" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Murārimiśra." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "76903136" + ], + "seriesStatement": [ + "Ānandāśramasaṃskrtagranthāvaliḥ; granthāṇkaḥ 137" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ānandāśramasaṃsthā." + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKM 97-3015" + }, + { + "type": "nypl:Bnumber", + "value": "10000424" + }, + { + "type": "bf:Lccn", + "value": "76903136" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000378-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100378" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200423" + } + ], + "idOclc": [ + "NYPG001000378-B" + ], + "uniformTitle": [ + "Aṅgatvanirukti" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Puṇyākhyapattane : Ānandāśramasaṃsthā, 1973." + ], + "identifier": [ + "urn:bnum:10000424", + "urn:lccn:76903136", + "urn:oclc:NYPG001000378-B", + "urn:undefined:NNSZ00100378", + "urn:undefined:(WaOLN)nyp0200423" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jaimini.", + "Mimamsa." + ], + "titleDisplay": [ + "Śrīmajjaiminipraṇītamīmāṃsādarśaneʼṅgāṅgi-bhāvavimarśakaḥ \"Aṅgatvaniruktiḥ\" nāma prabandhaḥ / Śrīmanmurārimiśraviracitaḥ ; etatpustakaṃ Ānandāśramasthapaṇḍitaiḥ sampāditam." + ], + "uri": "b10000424", + "lccClassification": [ + "B132.M5 M87" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Puṇyākhyapattane" + ], + "titleAlt": [ + "Aṅgatvanirukti" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000424" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058597968" + ], + "physicalLocation": [ + "*OKM 97-3015" + ], + "shelfMark_sort": "a*OKM 97-003015", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783885", + "shelfMark": [ + "*OKM 97-3015" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKM 97-3015" + }, + { + "type": "bf:Barcode", + "value": "33433058597968" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058597968" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000461", + "_score": null, + "_source": { + "extent": [ + "2v." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Caracuvatimāl] Nūlnilaiyak kaurava kāriyatarici S. Kōpālaiyaravarkaḷ" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1961 + ], + "dateEndString": [ + "1963" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ativīra Rāma Pāṇtiyar iyaṟṟiya Kūrma Purāṇa mūlam." + ], + "shelfMark": [ + "*OKOK 81-2812" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1961" + ], + "idLccn": [ + "sa 65009124" + ], + "seriesStatement": [ + "Tañcai Caracuvati Māl. Veḷiyīṭu eṇ 91, 100" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ativira Rama Pandian, active 1562.", + "Govindaswami Pillai, R." + ], + "dateStartYear": [ + 1961 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 81-2812" + }, + { + "type": "nypl:Bnumber", + "value": "10000461" + }, + { + "type": "bf:Lccn", + "value": "sa 65009124" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000416-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100416" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200460" + } + ], + "idOclc": [ + "NYPG001000416-B" + ], + "uniformTitle": [ + "Puranas. Kūrmapurāṇa. Tamil" + ], + "dateEndYear": [ + 1963 + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "[Tañcai, Caracuvatimāl] Nūlnilaiyak kaurava kāriyatarici S. Kōpālaiyaravarkaḷ, 1961-1963." + ], + "identifier": [ + "urn:bnum:10000461", + "urn:lccn:sa 65009124", + "urn:oclc:NYPG001000416-B", + "urn:undefined:NNSZ00100416", + "urn:undefined:(WaOLN)nyp0200460" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1961" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Ativīra Rāma Pāṇtiyar iyaṟṟiya Kūrma Purāṇa mūlam. Pala piratikaḷaik konṭu paricōtittup patittavar Irāma. Kōvintacāmipiḷḷai." + ], + "uri": "b10000461", + "lccClassification": [ + "PK3621 .K817" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Tañcai" + ], + "titleAlt": [ + "Puranas. Kūrmapurāṇa.", + "Kūrma Purāṇa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000461" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058648977" + ], + "physicalLocation": [ + "*OKOK 81-2812" + ], + "shelfMark_sort": "a*OKOK 81-2812 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783891", + "shelfMark": [ + "*OKOK 81-2812 v. 2" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058648969" + ], + "physicalLocation": [ + "*OKOK 81-2812" + ], + "shelfMark_sort": "a*OKOK 81-2812 v. 000001", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783890", + "shelfMark": [ + "*OKOK 81-2812 v. 1" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000468", + "_score": null, + "_source": { + "extent": [ + "16, 312 p. port." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Banārasa Hindū Yūnivarsiṭī dvārā Pī-eca. Ḍī. kī upādhi ke lie svīkrta śodha-prabandha.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [282]-294.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ahiṃsā" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sohanalāla Jainadharma Pracāraka Samiti; prāpti-sthāna: Pārśvanātha Vidyāśrama Śodha Saṃsthāna, Vārāṇasī" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jaina-dharma meṃ ahiṃsā." + ], + "shelfMark": [ + "*OLX 83-155" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sinha, Bashistha Narayan, 1935-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73900921" + ], + "seriesStatement": [ + "Pārśvanātha Vidyāśrama granthamālā, 17" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 83-155" + }, + { + "type": "nypl:Bnumber", + "value": "10000468" + }, + { + "type": "bf:Lccn", + "value": "73900921" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000423-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100423" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200467" + } + ], + "idOclc": [ + "NYPG001000423-B" + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "Amrtasara, Sohanalāla Jainadharma Pracāraka Samiti; prāpti-sthāna: Pārśvanātha Vidyāśrama Śodha Saṃsthāna, Vārāṇasī [1972]" + ], + "identifier": [ + "urn:bnum:10000468", + "urn:lccn:73900921", + "urn:oclc:NYPG001000423-B", + "urn:undefined:NNSZ00100423", + "urn:undefined:(WaOLN)nyp0200467" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ahiṃsā." + ], + "titleDisplay": [ + "Jaina-dharma meṃ ahiṃsā. Lekhaka Baśishṭhanārāyaṇa Sinhā." + ], + "uri": "b10000468", + "lccClassification": [ + "BL1375.A35 S56" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amrtasara" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000468" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060359332" + ], + "physicalLocation": [ + "*OLX 83-155" + ], + "shelfMark_sort": "a*OLX 83-000155", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783893", + "shelfMark": [ + "*OLX 83-155" + ], + "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": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000627", + "_score": null, + "_source": { + "extent": [ + "363, 53 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: The travels of Ibn Jubayr. Edited from a ms. in the University Library of Leyden by William Wright.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Original ed. issued as v. 5 of \"E.J.W. Gibb memorial\" series.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic Empire", + "Islamic Empire -- Description and travel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "AMS Press" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1973 + ], + "dateEndString": [ + "1907" + ], + "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)" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ibn Jubayr, Muḥammad ibn Aḥmad, 1145-1217." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "77173005" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Wright, William, 1830-1889.", + "Goeje, M. J. de (Michael Jan), 1836-1909." + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + }, + { + "type": "nypl:Bnumber", + "value": "10000627" + }, + { + "type": "bf:Lccn", + "value": "77173005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000036-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200636" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200626" + } + ], + "idOclc": [ + "NYPG002000036-B" + ], + "uniformTitle": [ + "\"E.J.W. Gibb memorial\" series ; v.5." + ], + "dateEndYear": [ + 1907 + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "[New York, AMS Press, 1973] 1907." + ], + "identifier": [ + "urn:bnum:10000627", + "urn:lccn:77173005", + "urn:oclc:NYPG002000036-B", + "urn:undefined:NNSZ00200636", + "urn:undefined:(WaOLN)nyp0200626" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic Empire -- Description and travel." + ], + "titleDisplay": [ + "Riḥlat Abī al-Husayn Muhammad ibn Ahmad ibn Jubayr al-Kinānī al-Andalusī al-Balinsī." + ], + "uri": "b10000627", + "lccClassification": [ + "DS36.6 .I26 1973" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "[New York" + ], + "titleAlt": [ + "Travels of Ibn Jubayr." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000627" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014525079" + ], + "physicalLocation": [ + "*OFV 87-659" + ], + "shelfMark_sort": "a*OFV 87-000659", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10000366", + "shelfMark": [ + "*OFV 87-659" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFV 87-659" + }, + { + "type": "bf:Barcode", + "value": "33433014525079" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014525079" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433096515220" + ], + "physicalLocation": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + ], + "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10000365", + "shelfMark": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + }, + { + "type": "bf:Barcode", + "value": "33433096515220" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433096515220" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:barcode: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" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31207836", + "shelfMark": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + }, + { + "type": "bf:Barcode", + "value": "33433115326104" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433115326104" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000628", + "_score": null, + "_source": { + "extent": [ + "22, 484 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Historical dramas in Sanskrit literature.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Rājasthāna Viśvavidyālaya kī Pī.eca. Ḍī. kī upādhi ke lie svīkrta śodha prabandha.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliography and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Historical drama, Sanskrit", + "Historical drama, Sanskrit -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devanāgara Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Saṃskrta ke aitihāsika nāṭaka : [...aitihāsika, sāhityika, evaṃ saṃskrtika anuśīlana]" + ], + "shelfMark": [ + "*OKB 83.388" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sharma, Shyama." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75900847" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 83.388" + }, + { + "type": "nypl:Bnumber", + "value": "10000628" + }, + { + "type": "bf:Lccn", + "value": "75900847" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000037-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200637" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200627" + } + ], + "idOclc": [ + "NYPG002000037-B" + ], + "updatedAt": 1674870772746, + "publicationStatement": [ + "Jayapura : Devanāgara Prakāśana, [1974]" + ], + "identifier": [ + "urn:bnum:10000628", + "urn:lccn:75900847", + "urn:oclc:NYPG002000037-B", + "urn:undefined:NNSZ00200637", + "urn:undefined:(WaOLN)nyp0200627" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Historical drama, Sanskrit -- History and criticism." + ], + "titleDisplay": [ + "Saṃskrta ke aitihāsika nāṭaka : [...aitihāsika, sāhityika, evaṃ saṃskrtika anuśīlana] / Śyāma Śarmā." + ], + "uri": "b10000628", + "lccClassification": [ + "PK2932 .S5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Jayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000628" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058548284" + ], + "physicalLocation": [ + "*OKB 83.388" + ], + "shelfMark_sort": "a*OKB 83.000388", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858062", + "shelfMark": [ + "*OKB 83.388" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 83.388" + }, + { + "type": "bf:Barcode", + "value": "33433058548284" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058548284" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000630", + "_score": null, + "_source": { + "extent": [ + "2, 230 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rāma (Hindu deity) in literature", + "Indic literature", + "Indic literature -- History and criticism", + "Bhakti in literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Hindī Vibhāga, Kalakattā Viśvavidyālaya ke lie Hindī Pustaka Ejensī" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rāmabhakti, paramparā aura sāhitya" + ], + "shelfMark": [ + "*OLY 83-185" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Siṃha, Bhagavatī Prasāda." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75900873" + ], + "seriesStatement": [ + "Śrīghanaśyāmadāsa Biṛalā Hindī vyākhyānamālā; 1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-185" + }, + { + "type": "nypl:Bnumber", + "value": "10000630" + }, + { + "type": "bf:Lccn", + "value": "75900873" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000039-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200639" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200629" + } + ], + "idOclc": [ + "NYPG002000039-B" + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "Kalakattā : Hindī Vibhāga, Kalakattā Viśvavidyālaya ke lie Hindī Pustaka Ejensī, 1974." + ], + "identifier": [ + "urn:bnum:10000630", + "urn:lccn:75900873", + "urn:oclc:NYPG002000039-B", + "urn:undefined:NNSZ00200639", + "urn:undefined:(WaOLN)nyp0200629" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rāma (Hindu deity) in literature.", + "Indic literature -- History and criticism.", + "Bhakti in literature." + ], + "titleDisplay": [ + "Rāmabhakti, paramparā aura sāhitya / vyākhyātā Bhagavatī Prasāda Siṃha." + ], + "uri": "b10000630", + "lccClassification": [ + "PK2907.R25 S57" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalakattā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000630" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417874" + ], + "physicalLocation": [ + "*OLY 83-185" + ], + "shelfMark_sort": "a*OLY 83-000185", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783898", + "shelfMark": [ + "*OLY 83-185" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-185" + }, + { + "type": "bf:Barcode", + "value": "33433060417874" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417874" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000647", + "_score": null, + "_source": { + "extent": [ + "360 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Bhagavān Mahāvīra kī pacīsavīṃ nirvāṇa śatābdī ke upalaksha meṃ.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Mahāvīra" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Jaina Viśva Bhāratī Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śramaṇa Mahāvīra" + ], + "shelfMark": [ + "*OLX 83-353" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nathamal, Muni, 1920-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75900818" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 83-353" + }, + { + "type": "nypl:Bnumber", + "value": "10000647" + }, + { + "type": "bf:Lccn", + "value": "75900818" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000056-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200656" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200646" + } + ], + "idOclc": [ + "NYPG002000056-B" + ], + "updatedAt": 1674870772746, + "publicationStatement": [ + "Lāḍnūṃ : Jaina Viśva Bhāratī Prakāśana, 1974." + ], + "identifier": [ + "urn:bnum:10000647", + "urn:lccn:75900818", + "urn:oclc:NYPG002000056-B", + "urn:undefined:NNSZ00200656", + "urn:undefined:(WaOLN)nyp0200646" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Mahāvīra." + ], + "titleDisplay": [ + "Śramaṇa Mahāvīra / Muni Nathamala; Sampādaka Muni Dulaharāja." + ], + "uri": "b10000647", + "lccClassification": [ + "BL1371 .N36" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lāḍnūṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000647" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060359365" + ], + "physicalLocation": [ + "*OLX 83-353" + ], + "shelfMark_sort": "a*OLX 83-000353", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783899", + "shelfMark": [ + "*OLX 83-353" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 83-353" + }, + { + "type": "bf:Barcode", + "value": "33433060359365" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060359365" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000654", + "_score": null, + "_source": { + "extent": [ + "200 p." + ], + "note": [ + { + "noteType": "Language", + "label": "English and Sanskrit; introd. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sokappadu, Ramanaidoo" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tapovanam Pub. House" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Viṣṇusahasranāmastotram. Sri Vishnu sahasranama stotram, with namavali." + ], + "shelfMark": [ + "*OLY 83-374" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "sa 68001969" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Vimalananda, Swami." + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-374" + }, + { + "type": "nypl:Bnumber", + "value": "10000654" + }, + { + "type": "bf:Lccn", + "value": "sa 68001969" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000063-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200663" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200653" + } + ], + "idOclc": [ + "NYPG002000063-B" + ], + "uniformTitle": [ + "Viṣṇusahasranāma." + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "Tirupparaitturai; Tapovanam Pub. House [1965]" + ], + "identifier": [ + "urn:bnum:10000654", + "urn:lccn:sa 68001969", + "urn:oclc:NYPG002000063-B", + "urn:undefined:NNSZ00200663", + "urn:undefined:(WaOLN)nyp0200653" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sokappadu, Ramanaidoo." + ], + "titleDisplay": [ + "Śrī Viṣṇusahasranāmastotram. Sri Vishnu sahasranama stotram, with namavali. Introd., English rendering and index by Swami Vimalananda." + ], + "uri": "b10000654", + "lccClassification": [ + "BL1130.A353 V5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirupparaitturai;" + ], + "titleAlt": [ + "Vishnu sahasranama stotram.", + "Viṣṇusahasranāmastotram." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000654" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417890" + ], + "physicalLocation": [ + "*OLY 83-374" + ], + "shelfMark_sort": "a*OLY 83-000374", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783901", + "shelfMark": [ + "*OLY 83-374" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-374" + }, + { + "type": "bf:Barcode", + "value": "33433060417890" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417890" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000737", + "_score": null, + "_source": { + "extent": [ + "44, 56, 36 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Running title: Māmuṉivaṉ tivya sūkti sārārtta mālikai.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Each work has also separate t.p.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Sātāraṇa vaippacittirumūla malariṉ anupantam.\"", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vaishnavism", + "Vaishnavism -- Poetry" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "kiṭaikkumiṭam Krantamālā Āpīs]" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Maṇavāḷa Māmuṉi, 1370-1444." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73906525" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maṇavāḷa Māmuṉi, 1370-1444.", + "Annangaracharya, Prativadi Bhayankara, Swami, 1891-" + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2976" + }, + { + "type": "nypl:Bnumber", + "value": "10000737" + }, + { + "type": "bf:Lccn", + "value": "73906525" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000146-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200746" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200736" + } + ], + "idOclc": [ + "NYPG002000146-B" + ], + "uniformTitle": [ + "Upatēcarattiṉamālai" + ], + "updatedAt": 1674870779642, + "publicationStatement": [ + "[Kāñcīpuram, kiṭaikkumiṭam Krantamālā Āpīs] 1970." + ], + "identifier": [ + "urn:bnum:10000737", + "urn:lccn:73906525", + "urn:oclc:NYPG002000146-B", + "urn:undefined:NNSZ00200746", + "urn:undefined:(WaOLN)nyp0200736" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vaishnavism -- Poetry." + ], + "titleDisplay": [ + "Vicatavākcikāmaṇikaḷāṉa Maṇavāḷamāmuṉikaḷ aruḷicceyta upatēcarattiṉamālai. Tiruvāymoḻi nūṟṟantāti. Ārttippirapantam. Aṇṇaṅkarācāryatāsaṉ iyaṟṟiya eḷiya teḷiya uraiyuṭaṉ kūṭiyavai." + ], + "uri": "b10000737", + "lccClassification": [ + "PL4758.9.M242 U6" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Kāñcīpuram" + ], + "titleAlt": [ + "Upatēcarattiṉamālai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000737" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418666" + ], + "physicalLocation": [ + "*OLY 83-2976" + ], + "shelfMark_sort": "a*OLY 83-002976", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783922", + "shelfMark": [ + "*OLY 83-2976" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2976" + }, + { + "type": "bf:Barcode", + "value": "33433060418666" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418666" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000739", + "_score": null, + "_source": { + "extent": [ + "968 p. col. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "On cover: Upaniṣad-bhāṣya, sānuvāda, khaṇḍa 3.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hindi and Sanskrit; introductory matter in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Gītā Presa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1967" + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Chāndogyopaniṣad." + ], + "shelfMark": [ + "*OKLB 83-2978" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "sa 68015169" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Saṅkarācārya." + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKLB 83-2978" + }, + { + "type": "nypl:Bnumber", + "value": "10000739" + }, + { + "type": "bf:Lccn", + "value": "sa 68015169" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000148-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200748" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200738" + } + ], + "idOclc": [ + "NYPG002000148-B" + ], + "uniformTitle": [ + "Upanishads. Chāndogyopaniṣad." + ], + "dateEndYear": [ + 1967 + ], + "updatedAt": 1674870777259, + "publicationStatement": [ + "Gorakhapura, Gītā Presa [1966 or 7]" + ], + "identifier": [ + "urn:bnum:10000739", + "urn:lccn:sa 68015169", + "urn:oclc:NYPG002000148-B", + "urn:undefined:NNSZ00200748", + "urn:undefined:(WaOLN)nyp0200738" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Chāndogyopaniṣad. sānuvāda Śaṅkarabhāṣyasahita." + ], + "uri": "b10000739", + "lccClassification": [ + "PK3521 .C5 1966" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Gorakhapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000739" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058574710" + ], + "physicalLocation": [ + "*OKLB 83-2978" + ], + "shelfMark_sort": "a*OKLB 83-002978", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783923", + "shelfMark": [ + "*OKLB 83-2978" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKLB 83-2978" + }, + { + "type": "bf:Barcode", + "value": "33433058574710" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058574710" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000795", + "_score": null, + "_source": { + "extent": [ + "XV, 453 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Sanskrit or Tamil.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Vālmīki Rāmāyṇam\" (p. 389-453) comprises selected verses from the Valmīki Rāmāyaṇa.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kampar, active 9th century", + "Vālmīki" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Es. Sukumār; kiṭaikkumiṭam Pāri Nilaiyam, Ceṉṉai" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kāvya Rāmāyaṇam." + ], + "shelfMark": [ + "*OLY 82-1781" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Srinivasan, K. S. (Karur Soundara), 1920-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72904732" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-1781" + }, + { + "type": "nypl:Bnumber", + "value": "10000795" + }, + { + "type": "bf:Lccn", + "value": "72904732" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000204-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200804" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200794" + } + ], + "idOclc": [ + "NYPG002000204-B" + ], + "updatedAt": 1674870779642, + "publicationStatement": [ + "[Putu Tilli, Es. Sukumār; kiṭaikkumiṭam Pāri Nilaiyam, Ceṉṉai, 1971]" + ], + "identifier": [ + "urn:bnum:10000795", + "urn:lccn:72904732", + "urn:oclc:NYPG002000204-B", + "urn:undefined:NNSZ00200804", + "urn:undefined:(WaOLN)nyp0200794" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kampar, active 9th century.", + "Vālmīki." + ], + "titleDisplay": [ + "Kāvya Rāmāyaṇam. [Eḻutiyavar] Kē. Es. Śrīṉivāsaṉ." + ], + "uri": "b10000795", + "lccClassification": [ + "PL4758.9.K27 R35695" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Putu Tilli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000795" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417288" + ], + "physicalLocation": [ + "*OLY 82-1781" + ], + "shelfMark_sort": "a*OLY 82-001781", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783961", + "shelfMark": [ + "*OLY 82-1781" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-1781" + }, + { + "type": "bf:Barcode", + "value": "33433060417288" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417288" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000818", + "_score": null, + "_source": { + "extent": [ + "190 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 190.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Muḥammad, Prophet, -632" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Azhar, Majmaʻal-Buḥūth al-Islāmīyah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Rasūl, ṣallá Allāh ʻalayhi wa-sallam, lamḁhāt min ̥hayātih .... wa-nafaḥāt min hadyih" + ], + "shelfMark": [ + "*OGE 82-2828" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Maḥmūd, ʻAbd al-Ḥalīm." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "76960922" + ], + "seriesStatement": [ + "Silsilat al-buḥūth al-Islāmīyah, al-kitāb 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGE 82-2828" + }, + { + "type": "nypl:Bnumber", + "value": "10000818" + }, + { + "type": "bf:Lccn", + "value": "76960922" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000227-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200827" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200817" + } + ], + "idOclc": [ + "NYPG002000227-B" + ], + "updatedAt": 1674870777259, + "publicationStatement": [ + "[al-Qāhirah] al-Azhar, Majmaʻal-Buḥūth al-Islāmīyah, 1969." + ], + "identifier": [ + "urn:bnum:10000818", + "urn:lccn:76960922", + "urn:oclc:NYPG002000227-B", + "urn:undefined:NNSZ00200827", + "urn:undefined:(WaOLN)nyp0200817" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Muḥammad, Prophet, -632." + ], + "titleDisplay": [ + "al-Rasūl, ṣallá Allāh ʻalayhi wa-sallam, lamḁhāt min ̥hayātih .... wa-nafaḥāt min hadyih [taʻlīf] ʻAbd al-Ḥalīm Maḥmūd." + ], + "uri": "b10000818", + "lccClassification": [ + "BP75.2 .M32" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000818" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057993358" + ], + "physicalLocation": [ + "*OGE 82-2828" + ], + "shelfMark_sort": "a*OGE 82-002828", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858070", + "shelfMark": [ + "*OGE 82-2828" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGE 82-2828" + }, + { + "type": "bf:Barcode", + "value": "33433057993358" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057993358" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000912", + "_score": null, + "_source": { + "extent": [ + "245 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tulasīdāsa, 1532-1623" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Granthama" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tulasī kā mānasa." + ], + "shelfMark": [ + "*OLY 83-31" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sharma, Munshi Ram, 1901-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "72901165" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-31" + }, + { + "type": "nypl:Bnumber", + "value": "10000912" + }, + { + "type": "bf:Lccn", + "value": "72901165" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000322-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200922" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200911" + } + ], + "idOclc": [ + "NYPG002000322-B" + ], + "updatedAt": 1674870783590, + "publicationStatement": [ + "Kānapura, Granthama [1972]" + ], + "identifier": [ + "urn:bnum:10000912", + "urn:lccn:72901165", + "urn:oclc:NYPG002000322-B", + "urn:undefined:NNSZ00200922", + "urn:undefined:(WaOLN)nyp0200911" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tulasīdāsa, 1532-1623." + ], + "titleDisplay": [ + "Tulasī kā mānasa. [Lekhaka] Munśīrāma Śarmā." + ], + "uri": "b10000912", + "lccClassification": [ + "PK2095.T8 R3394" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kānapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000912" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417726" + ], + "physicalLocation": [ + "*OLY 83-31" + ], + "shelfMark_sort": "a*OLY 83-000031", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783983", + "shelfMark": [ + "*OLY 83-31" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-31" + }, + { + "type": "bf:Barcode", + "value": "33433060417726" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417726" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001029", + "_score": null, + "_source": { + "extent": [ + "xivi, 400, 52 p., [14] leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil, foreword in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēsatri, Swami, 1870-1929", + "Hindus", + "Hindus -- Biography" + ], + "publisherLiteral": [ + "Srī Satkuru Cēsātri Svāmikaḷ Matyasta Pracārasapā," + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiruvaṇṇāmalai Srī Cēṣātri Svāmikaḷ carittiram" + ], + "shelfMark": [ + "*OLY 83-4924" + ], + "creatorLiteral": [ + "Nārāyaṇa Cāstirikal, Kuḻumaṇi." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76902259" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4924" + }, + { + "type": "nypl:Bnumber", + "value": "10001029" + }, + { + "type": "bf:Lccn", + "value": "76902259" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201039" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201028" + } + ], + "updatedAt": 1636139596240, + "publicationStatement": [ + "Kōyamputtūr : Srī Satkuru Cēsātri Svāmikaḷ Matyasta Pracārasapā, 1975." + ], + "identifier": [ + "urn:bnum:10001029", + "urn:lccn:76902259", + "urn:undefined:NNSZ00201039", + "urn:undefined:(WaOLN)nyp0201028" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēsatri, Swami, 1870-1929.", + "Hindus -- Biography." + ], + "titleDisplay": [ + "Tiruvaṇṇāmalai Srī Cēṣātri Svāmikaḷ carittiram / eḻutiyatu Kuḻumaṇi Nārāyaṇa Cāstirikaḷ." + ], + "uri": "b10001029", + "lccClassification": [ + "BL1175.C47 N37 1975" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōyamputtūr :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10001029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419664" + ], + "physicalLocation": [ + "*OLY 83-4924" + ], + "shelfMark_sort": "a*OLY 83-004924", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13783994", + "shelfMark": [ + "*OLY 83-4924" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4924" + }, + { + "type": "bf:Barcode", + "value": "33433060419664" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419664" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001042", + "_score": null, + "_source": { + "extent": [ + "30, 122 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Tarkabhasha & Anekantavadanirasa of Mokshakaragupta and Jitaripad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Running title: Bauddha-tarkabhāṣā.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hindi and Sanskrit; introductory matter in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhist logic" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prācya Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā." + ], + "shelfMark": [ + "*OLWF 83-4679" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Mokṣākara Gupta." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "71901168" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jitāri, active 940-980.", + "Giri, Ragunath." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLWF 83-4679" + }, + { + "type": "nypl:Bnumber", + "value": "10001042" + }, + { + "type": "bf:Lccn", + "value": "71901168" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000452-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201052" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201041" + } + ], + "idOclc": [ + "NYPG002000452-B" + ], + "updatedAt": 1673986529749, + "publicationStatement": [ + "Vārāṇasī, Prācya Prakāśana [1969]" + ], + "identifier": [ + "urn:bnum:10001042", + "urn:lccn:71901168", + "urn:oclc:NYPG002000452-B", + "urn:undefined:NNSZ00201052", + "urn:undefined:(WaOLN)nyp0201041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhist logic." + ], + "titleDisplay": [ + "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā. Jitāripādaviracitaḥ Anekāntavādanirāsaḥ, Hindīanuvādasahitaḥ. Sampādakaḥ anuvādakaśca Raghunāthagiriḥ." + ], + "uri": "b10001042", + "lccClassification": [ + "BC25 .M65" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasī" + ], + "titleAlt": [ + "Bauddha-tarkabhāṣā.", + "Tarkabhasha.", + "Anekantavadanirasa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10001042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059862981" + ], + "physicalLocation": [ + "*OLWF 83-4679" + ], + "shelfMark_sort": "a*OLWF 83-004679", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783998", + "shelfMark": [ + "*OLWF 83-4679" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLWF 83-4679" + }, + { + "type": "bf:Barcode", + "value": "33433059862981" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433059862981" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001083", + "_score": null, + "_source": { + "extent": [ + "9, 142 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; prefatory matter in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jaina logic" + ], + "publisherLiteral": [ + "Bhāratīya Prācyatatva-Prakāśana Samiti ; prāptisthāna, Śā. Ramaṇala Vajecanda," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "1975" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vādasaṅgraha" + ], + "shelfMark": [ + "*OLX 84-289" + ], + "creatorLiteral": [ + "Yaśovijaya, 1624-1688." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "76902374" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 84-289" + }, + { + "type": "nypl:Bnumber", + "value": "10001083" + }, + { + "type": "bf:Lccn", + "value": "76902374" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201094" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201082" + } + ], + "dateEndYear": [ + 1975 + ], + "updatedAt": 1636143035644, + "publicationStatement": [ + "Pindabāṛā : Bhāratīya Prācyatatva-Prakāśana Samiti ; Ȧhamadābāda : prāptisthāna, Śā. Ramaṇala Vajecanda, Vikrama Saṃ 2031 [1974 or 1975]" + ], + "identifier": [ + "urn:bnum:10001083", + "urn:lccn:76902374", + "urn:undefined:NNSZ00201094", + "urn:undefined:(WaOLN)nyp0201082" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jaina logic." + ], + "titleDisplay": [ + "Vādasaṅgraha / Yaśovijayopādhyāyaviracita." + ], + "uri": "b10001083", + "lccClassification": [ + "BC25 .Y38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Pindabāṛā : Ȧhamadābāda :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10001083" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060359589" + ], + "physicalLocation": [ + "*OLX 84-289" + ], + "shelfMark_sort": "a*OLX 84-000289", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784009", + "shelfMark": [ + "*OLX 84-289" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 84-289" + }, + { + "type": "bf:Barcode", + "value": "33433060359589" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060359589" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001094", + "_score": null, + "_source": { + "extent": [ + "2 v. : ports. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Church history", + "Coptic church", + "Coptic church -- History" + ], + "publisherLiteral": [ + "Maktabat al-Maḥabbah," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Kharīdah al-nafīsah fī tārīkh al-kanīsah" + ], + "shelfMark": [ + "*OCF 81-3103" + ], + "creatorLiteral": [ + "Īsīdhūrūs, Bishop, 1867-1942." + ], + "createdString": [ + "1964" + ], + "contributorLiteral": [ + "Arsānyūs al-Muḥarraqī." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OCF 81-3103" + }, + { + "type": "nypl:Bnumber", + "value": "10001094" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201106" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201093" + } + ], + "updatedAt": 1636072387033, + "publicationStatement": [ + "[S.l.] : Maktabat al-Maḥabbah, 1964" + ], + "identifier": [ + "urn:bnum:10001094", + "urn:undefined:NNSZ00201106", + "urn:undefined:(WaOLN)nyp0201093" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Church history.", + "Coptic church -- History." + ], + "titleDisplay": [ + "al-Kharīdah al-nafīsah fī tārīkh al-kanīsah / qām bi-ṭabʻihi al-Qummuṣ ʻAṭā Allāh Arsānyūs al-Muḥarraqī ... ʻan al-nuskhah al-aṣlīyah lil-Usquf al-Anbā Īsīdhūrūs." + ], + "uri": "b10001094", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[S.l.] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10001094" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433017339361" + ], + "shelfMark_sort": "a*OCF 81-003103", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i11900431", + "shelfMark": [ + "*OCF 81-3103" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433017339361" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433017339361" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433017339353" + ], + "shelfMark_sort": "a*OCF 81-003103", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i11900430", + "shelfMark": [ + "*OCF 81-3103" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433017339353" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433017339353" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001112", + "_score": null, + "_source": { + "extent": [ + "80 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Muḥammad, Prophet, -632", + "Muḥammad, Prophet, -632 -- Prayers and devotions" + ], + "publisherLiteral": [ + "Mukhtār Abū al-ʻAzāʼim," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Bashāʼir fī mawlid al-Mukhtār ..." + ], + "shelfMark": [ + "*OGE 82-1575" + ], + "creatorLiteral": [ + "Abū al-ʻAzāʼim, Muḥammad Māḍī." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74960195" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGE 82-1575" + }, + { + "type": "nypl:Bnumber", + "value": "10001112" + }, + { + "type": "bf:Lccn", + "value": "74960195" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201124" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201111" + } + ], + "updatedAt": 1636072366534, + "publicationStatement": [ + "[al. Qāhirah] : Mukhtār Abū al-ʻAzāʼim, [1973]" + ], + "identifier": [ + "urn:bnum:10001112", + "urn:lccn:74960195", + "urn:undefined:NNSZ00201124", + "urn:undefined:(WaOLN)nyp0201111" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Muḥammad, Prophet, -632 -- Prayers and devotions." + ], + "titleDisplay": [ + "al-Bashāʼir fī mawlid al-Mukhtār ... / lil-sayyid Muḥammad Māḍī Abū al-ʻAzāʼim." + ], + "uri": "b10001112", + "lccClassification": [ + "BP75.2 .A18" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al. Qāhirah] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10001112" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057993127" + ], + "shelfMark_sort": "a*OGE 82-001575", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858081", + "shelfMark": [ + "*OGE 82-1575" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433057993127" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433057993127" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001164", + "_score": null, + "_source": { + "extent": [ + "36, 608, 40 p. port." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: The philosophy of oriental music, by Michael Allawerdi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Music, Oriental", + "Music, Oriental -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 2 + ], + "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" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JME 82-175" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1950" + ], + "creatorLiteral": [ + "Allawerdi, Michael." + ], + "idLccn": [ + "ne 66001433 /MN" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Otto Kinkeldey Memorial Collection." + ], + "dateStartYear": [ + 1950 + ], + "idOclc": [ + "NYPG002000577-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JME 82-175" + }, + { + "type": "nypl:Bnumber", + "value": "10001164" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000577-B" + }, + { + "type": "bf:Lccn", + "value": "ne 66001433 /MN" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201177" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201163" + } + ], + "updatedAt": 1701869147487, + "publicationStatement": [ + "Dimashq [1950]" + ], + "identifier": [ + "urn:shelfmark:JME 82-175", + "urn:bnum:10001164", + "urn:oclc:NYPG002000577-B", + "urn:lccn:ne 66001433 /MN", + "urn:identifier:NNSZ00201177", + "urn:identifier:(WaOLN)nyp0201163" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1950" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Music, Oriental -- History and criticism." + ], + "titleDisplay": [ + "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 [+aʼlīf] M. Allāh Wīrdī." + ], + "uri": "b10001164", + "lccClassification": [ + "ML330. A44" + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Philosophy of oriental music." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10001164" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433098691227" + ], + "identifier": [ + "urn:shelfmark:*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", + "urn:barcode:33433098691227" + ], + "identifierV2": [ + { + "value": "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", + "type": "bf:ShelfMark" + }, + { + "value": "33433098691227", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" + ], + "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 + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "dueDate": [ + "2024-03-05" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032678454" + ], + "identifier": [ + "urn:shelfmark:JME 82-175", + "urn:barcode:33433032678454" + ], + "identifierV2": [ + { + "value": "JME 82-175", + "type": "bf:ShelfMark" + }, + { + "value": "33433032678454", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "physicalLocation": [ + "JME 82-175" + ], + "recapCustomerCode": [ + "NP" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JME 82-175" + ], + "shelfMark_sort": "aJME 82-000175", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i10942096" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001190", + "_score": null, + "_source": { + "extent": [ + "320p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 313-320.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chinese literature", + "Chinese literature -- Qing dynasty, 1644-1912", + "Chinese literature -- Qing dynasty, 1644-1912 -- History and criticism" + ], + "publisherLiteral": [ + "Wen jin chu ban she," + ], + "language": [ + { + "id": "lang:chi", + "label": "Chinese" + } + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tʻung-Chʻeng pʻai wen hsueh shih" + ], + "shelfMark": [ + "*OVK 82-796" + ], + "creatorLiteral": [ + "Ye, Long." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76838266" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVK 82-796" + }, + { + "type": "nypl:Bnumber", + "value": "10001190" + }, + { + "type": "bf:Lccn", + "value": "76838266" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201203" + } + ], + "updatedAt": 1636140614104, + "publicationStatement": [ + "[Taipei] : Wen jin chu ban she, Min'guo 64 [1975]" + ], + "identifier": [ + "urn:bnum:10001190", + "urn:lccn:76838266", + "urn:undefined:NNSZ00201203" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chinese literature -- Qing dynasty, 1644-1912 -- History and criticism." + ], + "titleDisplay": [ + "Tʻung-Chʻeng pʻai wen hsueh shih / Zhu zuo zhe Ye Long." + ], + "uri": "b10001190", + "lccClassification": [ + "PL2297 .Y4" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Taipei] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10001190" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433011952243" + ], + "physicalLocation": [ + "*OVK 82-796" + ], + "shelfMark_sort": "a*OVK 82-000796", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000788", + "shelfMark": [ + "*OVK 82-796" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVK 82-796" + }, + { + "type": "bf:Barcode", + "value": "33433011952243" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433011952243" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001233", + "_score": null, + "_source": { + "extent": [ + "xviii, 269 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Classical Hindu text.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Krishna (Hindu deity)" + ], + "publisherLiteral": [ + "Kēraḷa Sāhitya Akkādami ; vitaraṇaṃ, Nāṣanal Bukk Sṯāḷ," + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bhāgavataṃ : Irupattināluvrttaṃ" + ], + "shelfMark": [ + "*OLY 84-598" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "78900499" + ], + "contributorLiteral": [ + "Krṣṇapiḷḷa, Es. En." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-598" + }, + { + "type": "nypl:Bnumber", + "value": "10001233" + }, + { + "type": "bf:Lccn", + "value": "78900499" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201246" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201231" + } + ], + "uniformTitle": [ + "Puranas. Bhāgavatapurāṇa. Malayalam." + ], + "updatedAt": 1636077703170, + "publicationStatement": [ + "[Trśūr] : Kēraḷa Sāhitya Akkādami ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Bukk Sṯāḷ, 1976." + ], + "identifier": [ + "urn:bnum:10001233", + "urn:lccn:78900499", + "urn:undefined:NNSZ00201246", + "urn:undefined:(WaOLN)nyp0201231" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Krishna (Hindu deity)" + ], + "titleDisplay": [ + "Bhāgavataṃ : Irupattināluvrttaṃ" + ], + "uri": "b10001233", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Trśūr] : Kōṭṭayaṃ :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10001233" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419870" + ], + "physicalLocation": [ + "*OLY 84-598" + ], + "shelfMark_sort": "a*OLY 84-000598", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784029", + "shelfMark": [ + "*OLY 84-598" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-598" + }, + { + "type": "bf:Barcode", + "value": "33433060419870" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419870" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001239", + "_score": null, + "_source": { + "extent": [ + "679 p. : ports. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ramana, Maharshi" + ], + "publisherLiteral": [ + "Śivalāla Agravāla eṇḍa Kampanī" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Ramaṇa Maharshi se bātacīta" + ], + "shelfMark": [ + "*OLY 82-3982" + ], + "creatorLiteral": [ + "Śarma, Dineśacandra." + ], + "createdString": [ + "1979" + ], + "contributorLiteral": [ + "Osbourne, Arthur." + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3982" + }, + { + "type": "nypl:Bnumber", + "value": "10001239" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201252" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201237" + } + ], + "updatedAt": 1653404628484, + "publicationStatement": [ + "Āgarā : Śivalāla Agravāla eṇḍa Kampanī, 1979." + ], + "identifier": [ + "urn:bnum:10001239", + "urn:undefined:NNSZ00201252", + "urn:undefined:(WaOLN)nyp0201237" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ramana, Maharshi." + ], + "titleDisplay": [ + "Śrī Ramaṇa Maharshi se bātacīta / saṅgrahakartā Śrī Sunagala Esa. Veṅkaṭarāmaiyā ; bhūmikā-lekhaka Dā. Ṭī. Ema. Pī. Mahādevana ; prastāvanā lekhaka Mejara E. Ḍablyū. Caiḍavika ; anuvādaka Srī Dineśacandra Śarmā." + ], + "uri": "b10001239", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Āgarā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10001239" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417494" + ], + "physicalLocation": [ + "*OLY 82-3982" + ], + "shelfMark_sort": "a*OLY 82-003982", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784032", + "shelfMark": [ + "*OLY 82-3982" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-3982" + }, + { + "type": "bf:Barcode", + "value": "33433060417494" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417494" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001240", + "_score": null, + "_source": { + "extent": [ + "[8], 8, lxv, 888 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Introductory matter in English, Hindi, or Sanskrit; extant portion of the autocommentary, Bhāvadīpkā, in Sanskrit.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title on spine: The Vedānta-kaumudī, with Bhāva-dīpika of Rāmādvayācārya, a critical edition.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title: Śrī Rāmādvayācāryakrtā Vedāntakaumudī.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Bādarāyaṇa" + ], + "publisherLiteral": [ + "Kāśī Hindū Viśvavidyālaya Śodhaprakáśana," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā." + ], + "shelfMark": [ + "*OKN 84-1977" + ], + "creatorLiteral": [ + "Rāmādvaya, active 14th century." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74903417" + ], + "seriesStatement": [ + "Kāśī Hindū Viśvavidyālaya Saṃskrtagranthamālā, puṣpa 9", + "Śodhaprakāśanayojanā" + ], + "contributorLiteral": [ + "Caturvedī, Rādheśyāma, 1940-", + "Rāmādvaya, active 14th century." + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1977" + }, + { + "type": "nypl:Bnumber", + "value": "10001240" + }, + { + "type": "bf:Lccn", + "value": "74903417" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201253" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201238" + } + ], + "uniformTitle": [ + "Vedāntakaumudī. Hindi & Sanskrit." + ], + "updatedAt": 1641393543446, + "publicationStatement": [ + "Vārāṇasī] Kāśī Hindū Viśvavidyālaya Śodhaprakáśana, 1973." + ], + "identifier": [ + "urn:bnum:10001240", + "urn:lccn:74903417", + "urn:undefined:NNSZ00201253", + "urn:undefined:(WaOLN)nyp0201238" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Bādarāyaṇa." + ], + "titleDisplay": [ + "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā. [Sampādaka, anuvādaka, tathā ṭippaṇīkāra] Rādheśyāma Caturvedī." + ], + "uri": "b10001240", + "lccClassification": [ + "B132.A3 R2815" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasī]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Vedāntakaumudī." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10001240" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058618418" + ], + "shelfMark_sort": "a*OKN 84-001977", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784033", + "shelfMark": [ + "*OKN 84-1977" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433058618418" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058618418" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001310", + "_score": null, + "_source": { + "extent": [ + "44 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hinduism", + "Hinduism -- Controversial literature", + "Tamil (Indic people)", + "Tamil (Indic people) -- Religion", + "Tiruvaḷḷuvar" + ], + "publisherLiteral": [ + "Tamiḻaṉ Nilaiyam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nāṉ Intu alla, eṉatu matam Tiruvaḷḷuvam." + ], + "shelfMark": [ + "*OLY 83-1642" + ], + "creatorLiteral": [ + "Kiruṣṇaṉ, P." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "73903976" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1642" + }, + { + "type": "nypl:Bnumber", + "value": "10001310" + }, + { + "type": "bf:Lccn", + "value": "73903976" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201324" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201308" + } + ], + "updatedAt": 1636119343632, + "publicationStatement": [ + "Karūr, Tirucci Māvaṭṭam, Tamiḻaṉ Nilaiyam [1971]" + ], + "identifier": [ + "urn:bnum:10001310", + "urn:lccn:73903976", + "urn:undefined:NNSZ00201324", + "urn:undefined:(WaOLN)nyp0201308" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hinduism -- Controversial literature.", + "Tamil (Indic people) -- Religion.", + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Nāṉ Intu alla, eṉatu matam Tiruvaḷḷuvam. [Eḻutiyavar]Pe. Kiruṣṇaṉ." + ], + "uri": "b10001310", + "lccClassification": [ + "BL1211 .K57" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karūr, Tirucci Māvaṭṭam," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10001310" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418260" + ], + "physicalLocation": [ + "*OLY 83-1642" + ], + "shelfMark_sort": "a*OLY 83-001642", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784058", + "shelfMark": [ + "*OLY 83-1642" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1642" + }, + { + "type": "bf:Barcode", + "value": "33433060418260" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418260" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001316", + "_score": null, + "_source": { + "extent": [ + "xxvi. 90 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Parvati (Hindu deity)", + "Parvati (Hindu deity) -- Poetry" + ], + "publisherLiteral": [ + "Amuta Nilaiyam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Apirāmi antāti." + ], + "shelfMark": [ + "*OLY 83-1631" + ], + "creatorLiteral": [ + "Apirāmi Paṭṭar, active 18th century." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "77904332" + ], + "seriesStatement": [ + "Amutam, 171" + ], + "contributorLiteral": [ + "Jakannātaṉ, Ki. Vā., 1906-" + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1631" + }, + { + "type": "nypl:Bnumber", + "value": "10001316" + }, + { + "type": "bf:Lccn", + "value": "77904332" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201330" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201314" + } + ], + "updatedAt": 1641330883378, + "publicationStatement": [ + "Ceṉṉai, Amuta Nilaiyam [1968]" + ], + "identifier": [ + "urn:bnum:10001316", + "urn:lccn:77904332", + "urn:undefined:NNSZ00201330", + "urn:undefined:(WaOLN)nyp0201314" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Parvati (Hindu deity) -- Poetry." + ], + "titleDisplay": [ + "Apirāmi antāti. Āciriyar Apirāmi Paṭṭar. Urai Āciriyar Ki. Vā. Jakannātaṉ." + ], + "uri": "b10001316", + "lccClassification": [ + "PL4758.9.A6 A8 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10001316" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418252" + ], + "physicalLocation": [ + "*OLY 83-1631" + ], + "shelfMark_sort": "a*OLY 83-001631", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784062", + "shelfMark": [ + "*OLY 83-1631" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1631" + }, + { + "type": "bf:Barcode", + "value": "33433060418252" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418252" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001351", + "_score": null, + "_source": { + "extent": [ + "92 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Murugan (Hindu deity)", + "Murugan (Hindu deity) -- Poetry" + ], + "publisherLiteral": [ + "Vācuki Patippakam] ; viṟpaṉai urimai, Pāri Nilaiyam," + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Paḻaṉiyāṉ kātal" + ], + "shelfMark": [ + "*OLY 84-1362" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "77910693" + ], + "seriesStatement": [ + "Vācuki patippaka veḷiyīṭu 3" + ], + "contributorLiteral": [ + "Kōvintacāmi, M." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1362" + }, + { + "type": "nypl:Bnumber", + "value": "10001351" + }, + { + "type": "bf:Lccn", + "value": "77910693" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201367" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201349" + } + ], + "updatedAt": 1636121455901, + "publicationStatement": [ + "[Aṇṇāmalainakar : Vācuki Patippakam] ; Ceṉṉai : viṟpaṉai urimai, Pāri Nilaiyam, [1969]" + ], + "identifier": [ + "urn:bnum:10001351", + "urn:lccn:77910693", + "urn:undefined:NNSZ00201367", + "urn:undefined:(WaOLN)nyp0201349" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Murugan (Hindu deity) -- Poetry." + ], + "titleDisplay": [ + "Paḻaṉiyāṉ kātal / patippāciriyar Mu. Kōvintacāmi." + ], + "uri": "b10001351", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar : Ceṉṉai :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10001351" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419987" + ], + "physicalLocation": [ + "*OLY 84-1362" + ], + "shelfMark_sort": "a*OLY 84-001362", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784068", + "shelfMark": [ + "*OLY 84-1362" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-1362" + }, + { + "type": "bf:Barcode", + "value": "33433060419987" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419987" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001374", + "_score": null, + "_source": { + "extent": [ + "18, 316 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hinduism", + "Hinduism -- Rituals" + ], + "publisherLiteral": [ + "[Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Saṃskāradīpakaḥ," + ], + "shelfMark": [ + "*OLY 83-204" + ], + "creatorLiteral": [ + "Jhā, Harṣanātha, 1845-1896." + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 68001970" + ], + "seriesStatement": [ + "Varanaseya Sanskrit Vishwavidyalaya. Research Institute. Gopīnāthakavirāja- granthamālā, 1" + ], + "contributorLiteral": [ + "Jhā, Durgādhara, 1909-1987.", + "Khanaṇga, Rāmacandraśāstrī." + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-204" + }, + { + "type": "nypl:Bnumber", + "value": "10001374" + }, + { + "type": "bf:Lccn", + "value": "sa 68001970" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201390" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201372" + } + ], + "updatedAt": 1636128327571, + "publicationStatement": [ + "Vārāṇasyām, [Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya] 1885 tame Śakābde [1963]" + ], + "identifier": [ + "urn:bnum:10001374", + "urn:lccn:sa 68001970", + "urn:undefined:NNSZ00201390", + "urn:undefined:(WaOLN)nyp0201372" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hinduism -- Rituals." + ], + "titleDisplay": [ + "Saṃskāradīpakaḥ, Mahāmahopādhyāyaśrī harṣanāthajhāviracitaḥ. Śrīrāmacandraśāstrikhanaṅgakrtaṭippaṇībhiḥ pariṣkrtaḥ. Sampādakaḥ Srīdurgādharajhā." + ], + "uri": "b10001374", + "lccClassification": [ + "BL1226.2 .J46" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasyām," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10001374" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417882" + ], + "physicalLocation": [ + "*OLY 83-204" + ], + "shelfMark_sort": "a*OLY 83-000204", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784073", + "shelfMark": [ + "*OLY 83-204" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-204" + }, + { + "type": "bf:Barcode", + "value": "33433060417882" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417882" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001378", + "_score": null, + "_source": { + "extent": [ + "7, 367 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Siva (Hindu deity)" + ], + "publisherLiteral": [ + "Vācu Piracuram" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Liṅka purāṇam." + ], + "shelfMark": [ + "*OLY 83-1666" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "77904612" + ], + "contributorLiteral": [ + "Ramanathan, S., 1931-" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1666" + }, + { + "type": "nypl:Bnumber", + "value": "10001378" + }, + { + "type": "bf:Lccn", + "value": "77904612" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201394" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201376" + } + ], + "uniformTitle": [ + "Puranas. Liṅgapurāṇa. Tamil." + ], + "updatedAt": 1653404628484, + "publicationStatement": [ + "Ceṉṉai, Vācu Piracuram [1969]" + ], + "identifier": [ + "urn:bnum:10001378", + "urn:lccn:77904612", + "urn:undefined:NNSZ00201394", + "urn:undefined:(WaOLN)nyp0201376" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Siva (Hindu deity)" + ], + "titleDisplay": [ + "Śrī Liṅka purāṇam. [Moḻipeyarppāciriyar] Kārttikēyaṉ." + ], + "uri": "b10001378", + "lccClassification": [ + "BL1218 .P86" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10001378" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418278" + ], + "physicalLocation": [ + "*OLY 83-1666" + ], + "shelfMark_sort": "a*OLY 83-001666", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784074", + "shelfMark": [ + "*OLY 83-1666" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1666" + }, + { + "type": "bf:Barcode", + "value": "33433060418278" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418278" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001379", + "_score": null, + "_source": { + "extent": [ + "12, 197 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Includes the commentary Ālokaprakāśa, by C.K. Raman Nambia and others.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Naya" + ], + "publisherLiteral": [ + "[Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya; Prāptisthānam: Prakāśanavibhāgaḥ, Vārāṇaseyasaṃskṛta viśvavidyālayaḥ]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā" + ], + "shelfMark": [ + "*OKM 83-1701" + ], + "creatorLiteral": [ + "Sarmā, Sāstṛ." + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "sa 68010892" + ], + "seriesStatement": [ + "Saravati Bhavana granthamala, 93" + ], + "contributorLiteral": [ + "Raman Nambiar, C. K." + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKM 83-1701" + }, + { + "type": "nypl:Bnumber", + "value": "10001379" + }, + { + "type": "bf:Lccn", + "value": "sa 68010892" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201395" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201377" + } + ], + "updatedAt": 1653404628484, + "publicationStatement": [ + "Vārāṇasyām [Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya; Prāptisthānam: Prakāśanavibhāgaḥ, Vārāṇaseyasaṃskṛta viśvavidyālayaḥ] 1887 tame śakābde [1965]" + ], + "identifier": [ + "urn:bnum:10001379", + "urn:lccn:sa 68010892", + "urn:undefined:NNSZ00201395", + "urn:undefined:(WaOLN)nyp0201377" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Naya." + ], + "titleDisplay": [ + "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā, Śrīśāstṛśarmaṇā viracitā granthakāraśiṣyaiḥ saṃkalitayā ālokaprakāśaṭippaṇyopab̄rhita ca." + ], + "uri": "b10001379", + "lccClassification": [ + "B132.N8 S2" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasyām" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10001379" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433058602826" + ], + "shelfMark_sort": "a*OKM 83-001701", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784075", + "shelfMark": [ + "*OKM 83-1701" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433058602826" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433058602826" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001388", + "_score": null, + "_source": { + "extent": [ + "36 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Originally broadcast over All India Radio, Madras.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Without the music.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Songs, Tamil", + "Songs, Tamil -- Texts", + "Parvati (Hindu deity)", + "Parvati (Hindu deity) -- Songs and music" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Tēvi Mahātmiyam; kīrttaṉaikaḷ." + ], + "shelfMark": [ + "*OLY 83-1674" + ], + "creatorLiteral": [ + "Thiagarajan, K. C." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "70903904" + ], + "contributorLiteral": [ + "All India Radio." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1674" + }, + { + "type": "nypl:Bnumber", + "value": "10001388" + }, + { + "type": "bf:Lccn", + "value": "70903904" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201404" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201386" + } + ], + "updatedAt": 1653404628484, + "publicationStatement": [ + "[Ceṉṉai, 1968]" + ], + "identifier": [ + "urn:bnum:10001388", + "urn:lccn:70903904", + "urn:undefined:NNSZ00201404", + "urn:undefined:(WaOLN)nyp0201386" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Songs, Tamil -- Texts.", + "Parvati (Hindu deity) -- Songs and music." + ], + "titleDisplay": [ + "Śrī Tēvi Mahātmiyam; kīrttaṉaikaḷ. Ākkiyōṉ Kē. Si. Tiyākarājaṉ." + ], + "uri": "b10001388", + "lccClassification": [ + "M1808.T53 S7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10001388" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418286" + ], + "physicalLocation": [ + "*OLY 83-1674" + ], + "shelfMark_sort": "a*OLY 83-001674", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784080", + "shelfMark": [ + "*OLY 83-1674" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-1674" + }, + { + "type": "bf:Barcode", + "value": "33433060418286" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418286" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:09 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "168036", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"nested\":{\"path\":\"items\",\"query\":{\"constant_score\":{\"filter\":{\"bool\":{\"should\":[{\"term\":{\"items.holdingLocation.id\":\"loc:mal92\"}},{\"term\":{\"items.holdingLocation.label\":\"loc:mal92\"}}]}}}}}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "727" + }, + "timeout": 30000 + }, + "options": {}, + "id": 55 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-17bc6a76d1c2a5e16798b484b1b07ac0.json b/test/fixtures/query-17bc6a76d1c2a5e16798b484b1b07ac0.json deleted file mode 100644 index 96bbf437..00000000 --- a/test/fixtures/query-17bc6a76d1c2a5e16798b484b1b07ac0.json +++ /dev/null @@ -1,286 +0,0 @@ -{ - "took": 817, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 18434492, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000103", - "_score": null, - "_source": { - "extent": [ - "11, 602 p.: port.;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "75960366" - ], - "seriesStatement": [ - "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-5137" - }, - { - "type": "nypl:Bnumber", - "value": "10000103" - }, - { - "type": "bf:Lccn", - "value": "75960366" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000051-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100051" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200102" - } - ], - "idOclc": [ - "NYPG001000051-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." - ], - "identifier": [ - "urn:bnum:10000103", - "urn:lccn:75960366", - "urn:oclc:NYPG001000051-B", - "urn:undefined:NNSZ00100051", - "urn:undefined:(WaOLN)nyp0200102" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "uri": "b10000103", - "lccClassification": [ - "PJ7842.H2937 A17 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Jazāʼir]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000103" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000042", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "identifierV2": [ - { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000671" - } - ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000671" - ], - "idBarcode": [ - "33433002000671" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-005137" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-18b5b3ec3a016af2ceea77369ec9ca59.json b/test/fixtures/query-18b5b3ec3a016af2ceea77369ec9ca59.json deleted file mode 100644 index ec3740fc..00000000 --- a/test/fixtures/query-18b5b3ec3a016af2ceea77369ec9ca59.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 347, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.905142, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.905142, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-1c2d8f93ab77fffcea01c8a459215262.json b/test/fixtures/query-1c2d8f93ab77fffcea01c8a459215262.json new file mode 100644 index 00000000..8bf00a51 --- /dev/null +++ b/test/fixtures/query-1c2d8f93ab77fffcea01c8a459215262.json @@ -0,0 +1,13972 @@ +{ + "body": { + "took": 1452, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 14227566, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000005", + "_score": null, + "_source": { + "extent": [ + "1 score (43 p.) + 1 part (12 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Acc. arr. for piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Soch. 22\"--Caption.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: 11049.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Concertos (Violin)", + "Concertos (Violin) -- Solo with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muzyka" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" + ], + "shelfMark": [ + "JMF 83-336" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wieniawski, Henri, 1835-1880." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-336" + }, + { + "type": "nypl:Bnumber", + "value": "10000005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-C" + }, + { + "type": "bf:Identifier", + "value": "11049. Muzyka" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100551" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200004" + } + ], + "idOclc": [ + "NYPG001000001-C" + ], + "uniformTitle": [ + "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Moskva : Muzyka, 1980." + ], + "identifier": [ + "urn:bnum:10000005", + "urn:oclc:NYPG001000001-C", + "urn:undefined:11049. Muzyka", + "urn:undefined:NNSZ00100551", + "urn:undefined:(WaOLN)nyp0200004" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Concertos (Violin) -- Solo with piano." + ], + "titleDisplay": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." + ], + "uri": "b10000005", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Moskva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Concertos, no. 2, op. 22" + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10000005" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-336" + ], + "identifierV2": [ + { + "value": "JMF 83-336", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032711909" + } + ], + "physicalLocation": [ + "JMF 83-336" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032711909" + ], + "idBarcode": [ + "33433032711909" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000336" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000007", + "_score": null, + "_source": { + "extent": [ + "14 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 7:35.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: Z.8917.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Guitar music", + "Guitar", + "Guitar -- Studies and exercises" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editio Musica" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Due studi per chitarra" + ], + "shelfMark": [ + "JMG 83-276" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Patachich, Iván." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-276" + }, + { + "type": "nypl:Bnumber", + "value": "10000007" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-C" + }, + { + "type": "bf:Identifier", + "value": "Z.8917. Editio Musica" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100552" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200006" + } + ], + "idOclc": [ + "NYPG001000002-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Budapest : Editio Musica, c1981." + ], + "identifier": [ + "urn:bnum:10000007", + "urn:oclc:NYPG001000002-C", + "urn:undefined:Z.8917. Editio Musica", + "urn:undefined:NNSZ00100552", + "urn:undefined:(WaOLN)nyp0200006" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Guitar music.", + "Guitar -- Studies and exercises." + ], + "titleDisplay": [ + "Due studi per chitarra / Patachich Iván." + ], + "uri": "b10000007", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Budapest" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-276" + ], + "identifierV2": [ + { + "value": "JMG 83-276", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883591" + } + ], + "physicalLocation": [ + "JMG 83-276" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883591" + ], + "idBarcode": [ + "33433032883591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000276" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000009", + "_score": null, + "_source": { + "extent": [ + "30 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Edition Peters Nr. 5489.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: E.P. 13028.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Edition Peters ; C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miniaturen II : 13 kleine Klavierstücke" + ], + "shelfMark": [ + "JMG 83-278" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Golle, Jürgen, 1942-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-278" + }, + { + "type": "nypl:Bnumber", + "value": "10000009" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters Nr. 5489 Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "E.P. 13028. Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100553" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200008" + } + ], + "idOclc": [ + "NYPG001000003-C" + ], + "uniformTitle": [ + "Miniaturen, no. 2" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000009", + "urn:oclc:NYPG001000003-C", + "urn:undefined:Edition Peters Nr. 5489 Edition Peters", + "urn:undefined:E.P. 13028. Edition Peters", + "urn:undefined:NNSZ00100553", + "urn:undefined:(WaOLN)nyp0200008" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." + ], + "uri": "b10000009", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig : New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen, no. 2" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000009" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-278" + ], + "identifierV2": [ + { + "value": "JMG 83-278", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883617" + } + ], + "physicalLocation": [ + "JMG 83-278" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883617" + ], + "idBarcode": [ + "33433032883617" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000278" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000011", + "_score": null, + "_source": { + "extent": [ + "46 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Boeijenga" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1982" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Passie en pasen : suite voor orgel, opus 50" + ], + "shelfMark": [ + "JMG 83-279" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Berg, Jan J. van den." + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-279" + }, + { + "type": "nypl:Bnumber", + "value": "10000011" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-C" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200010" + } + ], + "idOclc": [ + "NYPG001000004-C" + ], + "dateEndYear": [ + 1982 + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." + ], + "identifier": [ + "urn:bnum:10000011", + "urn:oclc:NYPG001000004-C", + "urn:undefined:(WaOLN)nyp0200010" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music." + ], + "titleDisplay": [ + "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." + ], + "uri": "b10000011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Sneek [Netherlands]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-279" + ], + "identifierV2": [ + { + "value": "JMG 83-279", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883625" + } + ], + "physicalLocation": [ + "JMG 83-279" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883625" + ], + "idBarcode": [ + "33433032883625" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000279" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000013", + "_score": null, + "_source": { + "extent": [ + "32 p. of music : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Popular music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Arr. for piano with chord symbols; superlinear German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- Germany (East)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harth Musik Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Disko Treff 1 : Klavier." + ], + "shelfMark": [ + "JMF 83-366" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-366" + }, + { + "type": "nypl:Bnumber", + "value": "10000013" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100555" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200012" + } + ], + "idOclc": [ + "NYPG001000005-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Leipzig : Harth Musik Verlag, c1980." + ], + "identifier": [ + "urn:bnum:10000013", + "urn:oclc:NYPG001000005-C", + "urn:undefined:NNSZ00100555", + "urn:undefined:(WaOLN)nyp0200012" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- Germany (East)" + ], + "titleDisplay": [ + "Disko Treff 1 : Klavier." + ], + "uri": "b10000013", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Disko Treff eins." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000013" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-366" + ], + "identifierV2": [ + { + "value": "JMF 83-366", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032712204" + } + ], + "physicalLocation": [ + "JMF 83-366" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032712204" + ], + "idBarcode": [ + "33433032712204" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000366" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000015", + "_score": null, + "_source": { + "extent": [ + "25 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For organ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"A McAfee Music Publication.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: DM 220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Belwin-Mills" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suite no. 1 : 1977" + ], + "shelfMark": [ + "JNG 83-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hampton, Calvin." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JNG 83-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-C" + }, + { + "type": "bf:Identifier", + "value": "DM 220. Belwin-Mills" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100556" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200014" + } + ], + "idOclc": [ + "NYPG001000006-C" + ], + "uniformTitle": [ + "Suite, organ, no. 1" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Melville, NY : Belwin-Mills, [1980?]" + ], + "identifier": [ + "urn:bnum:10000015", + "urn:oclc:NYPG001000006-C", + "urn:undefined:DM 220. Belwin-Mills", + "urn:undefined:NNSZ00100556", + "urn:undefined:(WaOLN)nyp0200014" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)" + ], + "titleDisplay": [ + "Suite no. 1 : 1977 / Calvin Hampton." + ], + "uri": "b10000015", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Melville, NY" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Suite, no. 1" + ], + "tableOfContents": [ + "Fanfares -- Antiphon -- Toccata." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000015" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000017", + "_score": null, + "_source": { + "extent": [ + "1 score (17 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For baritone and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Words printed also as text.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 3:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbière, Tristan, 1845-1875", + "Corbière, Tristan, 1845-1875 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lettre du Mexique : pour baryton et piano, 1942" + ], + "shelfMark": [ + "JMG 83-395" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Escher, Rudolf." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Corbière, Tristan, 1845-1875." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-395" + }, + { + "type": "nypl:Bnumber", + "value": "10000017" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100557" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200016" + } + ], + "idOclc": [ + "NYPG001000007-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Amsterdam : Donemus, c1981." + ], + "identifier": [ + "urn:bnum:10000017", + "urn:oclc:NYPG001000007-C", + "urn:undefined:NNSZ00100557", + "urn:undefined:(WaOLN)nyp0200016" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbière, Tristan, 1845-1875 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." + ], + "uri": "b10000017", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000017" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-395" + ], + "identifierV2": [ + { + "value": "JMG 83-395", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032735007" + } + ], + "physicalLocation": [ + "JMG 83-395" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032735007" + ], + "idBarcode": [ + "33433032735007" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000395" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000019", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: M 18.487.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Waltzes (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zwölf Walzer und ein Epilog : für Klavier" + ], + "shelfMark": [ + "JMG 83-111" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Benary, Peter." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-111" + }, + { + "type": "nypl:Bnumber", + "value": "10000019" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-C" + }, + { + "type": "bf:Identifier", + "value": "Möseler M 18.487." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200018" + } + ], + "idOclc": [ + "NYPG001000008-C" + ], + "uniformTitle": [ + "Walzer und ein Epilog" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000019", + "urn:oclc:NYPG001000008-C", + "urn:undefined:Möseler M 18.487.", + "urn:undefined:NNSZ00100558", + "urn:undefined:(WaOLN)nyp0200018" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Waltzes (Piano)" + ], + "titleDisplay": [ + "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." + ], + "uri": "b10000019", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Walzer und ein Epilog", + "Walzer und ein Epilog." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000019" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-111" + ], + "identifierV2": [ + { + "value": "JMG 83-111", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845053" + } + ], + "physicalLocation": [ + "JMG 83-111" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845053" + ], + "idBarcode": [ + "33433032845053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000111" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000021", + "_score": null, + "_source": { + "extent": [ + "1 score (51 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: NM 384.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Orchestral music", + "Orchestral music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Neue Musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aurora : sinfonischer Prolog : Partitur" + ], + "shelfMark": [ + "JMG 83-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Weitzendorf, Heinz." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000021" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-C" + }, + { + "type": "bf:Identifier", + "value": "NM 384. Verlag Neue Musik" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100559" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200020" + } + ], + "idOclc": [ + "NYPG001000009-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Berlin : Verlag Neue Musik, c1978." + ], + "identifier": [ + "urn:bnum:10000021", + "urn:oclc:NYPG001000009-C", + "urn:undefined:NM 384. Verlag Neue Musik", + "urn:undefined:NNSZ00100559", + "urn:undefined:(WaOLN)nyp0200020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Orchestral music -- Scores." + ], + "titleDisplay": [ + "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." + ], + "uri": "b10000021", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000021" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-113" + ], + "identifierV2": [ + { + "value": "JMG 83-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845079" + } + ], + "physicalLocation": [ + "JMG 83-113" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845079" + ], + "idBarcode": [ + "33433032845079" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000023", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (18 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For band or wind ensemble.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Based on the composer's Veni creator spiritus.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: KC913.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Band music", + "Band music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shawnee Press" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Musica sacra" + ], + "shelfMark": [ + "JMF 83-38" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zaninelli, Luigi." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-38" + }, + { + "type": "nypl:Bnumber", + "value": "10000023" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-C" + }, + { + "type": "bf:Identifier", + "value": "KC913 Shawnee Press" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100560" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200022" + } + ], + "idOclc": [ + "NYPG001000010-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Delaware Water Gap, Pa. : Shawnee Press, c1979." + ], + "identifier": [ + "urn:bnum:10000023", + "urn:oclc:NYPG001000010-C", + "urn:undefined:KC913 Shawnee Press", + "urn:undefined:NNSZ00100560", + "urn:undefined:(WaOLN)nyp0200022" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Band music -- Scores." + ], + "titleDisplay": [ + "Musica sacra / Luigi Zaninelli." + ], + "uri": "b10000023", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delaware Water Gap, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000023" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-38" + ], + "identifierV2": [ + { + "value": "JMF 83-38", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709028" + } + ], + "physicalLocation": [ + "JMF 83-38" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709028" + ], + "idBarcode": [ + "33433032709028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000038" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000025", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei Sonatinen für Klavier" + ], + "shelfMark": [ + "JMF 83-107" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stockmeier, Wolfgang." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-107" + }, + { + "type": "nypl:Bnumber", + "value": "10000025" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100561" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200024" + } + ], + "idOclc": [ + "NYPG001000011-C" + ], + "uniformTitle": [ + "Sonatinas, piano" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000025", + "urn:oclc:NYPG001000011-C", + "urn:undefined:NNSZ00100561", + "urn:undefined:(WaOLN)nyp0200024" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Drei Sonatinen für Klavier / Wolfgang Stockmeier." + ], + "uri": "b10000025", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatinas" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000025" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-107" + ], + "identifierV2": [ + { + "value": "JMF 83-107", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709697" + } + ], + "physicalLocation": [ + "JMF 83-107" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709697" + ], + "idBarcode": [ + "33433032709697" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000107" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000027", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Violin)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei kleine Sonaten : für Violine solo" + ], + "shelfMark": [ + "JMF 83-95" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Köhler, Friedemann." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 172" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-95" + }, + { + "type": "nypl:Bnumber", + "value": "10000027" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100562" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200026" + } + ], + "idOclc": [ + "NYPG001000012-C" + ], + "uniformTitle": [ + "Kleine Sonaten, violin" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Wolfenbüttel : Möseler Verlag, c1979." + ], + "identifier": [ + "urn:bnum:10000027", + "urn:oclc:NYPG001000012-C", + "urn:undefined:NNSZ00100562", + "urn:undefined:(WaOLN)nyp0200026" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Violin)" + ], + "titleDisplay": [ + "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." + ], + "uri": "b10000027", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kleine Sonaten" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000027" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-95" + ], + "identifierV2": [ + { + "value": "JMF 83-95", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709572" + } + ], + "physicalLocation": [ + "JMF 83-95" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709572" + ], + "idBarcode": [ + "33433032709572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000095" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000029", + "_score": null, + "_source": { + "extent": [ + "16 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: 29589.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Organ music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Hansen ; Distribution, Magnamusic-Baton" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cruor : for organ solo, 1977" + ], + "shelfMark": [ + "JMF 83-93" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lorentzen, Bent." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82771131" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "nypl:Bnumber", + "value": "10000029" + }, + { + "type": "bf:Lccn", + "value": "82771131" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-C" + }, + { + "type": "bf:Identifier", + "value": "Wilhelm Hansen edition no. 4372." + }, + { + "type": "bf:Identifier", + "value": "29589." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100563" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200028" + } + ], + "idOclc": [ + "NYPG001000013-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." + ], + "identifier": [ + "urn:bnum:10000029", + "urn:lccn:82771131", + "urn:oclc:NYPG001000013-C", + "urn:undefined:Wilhelm Hansen edition no. 4372.", + "urn:undefined:29589.", + "urn:undefined:NNSZ00100563", + "urn:undefined:(WaOLN)nyp0200028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Organ music." + ], + "titleDisplay": [ + "Cruor : for organ solo, 1977 / B. Lorentzen." + ], + "uri": "b10000029", + "lccClassification": [ + "M11 .L" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Copenhagen ; New York : [s.l.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-93" + ], + "identifierV2": [ + { + "value": "JMF 83-93", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" + } + ], + "physicalLocation": [ + "JMF 83-93" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709556" + ], + "idBarcode": [ + "33433032709556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000093" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000031", + "_score": null, + "_source": { + "extent": [ + "21 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Müller" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Neun Miniaturen : für Klavier : op. 52" + ], + "shelfMark": [ + "JMG 83-17" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Petersen, Wilhelm, 1890-1957." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-17" + }, + { + "type": "nypl:Bnumber", + "value": "10000031" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-C" + }, + { + "type": "bf:Identifier", + "value": "W. Müller WM 1713 SM." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100564" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200030" + } + ], + "idOclc": [ + "NYPG001000014-C" + ], + "uniformTitle": [ + "Miniaturen" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Heidelberg : W. Müller, c1979." + ], + "identifier": [ + "urn:bnum:10000031", + "urn:oclc:NYPG001000014-C", + "urn:undefined:W. Müller WM 1713 SM.", + "urn:undefined:NNSZ00100564", + "urn:undefined:(WaOLN)nyp0200030" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." + ], + "uri": "b10000031", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Heidelberg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen", + "Miniaturen." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-17" + ], + "identifierV2": [ + { + "value": "JMG 83-17", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841631" + } + ], + "physicalLocation": [ + "JMG 83-17" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841631" + ], + "idBarcode": [ + "33433032841631" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000033", + "_score": null, + "_source": { + "extent": [ + "1 score (20 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For voice and organ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs (Medium voice) with organ", + "Psalms (Music)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Agápe" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Psalm settings" + ], + "shelfMark": [ + "JMG 83-59" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nelhybel, Vaclav." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-59" + }, + { + "type": "nypl:Bnumber", + "value": "10000033" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100565" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200032" + } + ], + "idOclc": [ + "NYPG001000015-C" + ], + "updatedAt": 1689901710981, + "publicationStatement": [ + "Carol Stream, Ill. : Agápe, c1981." + ], + "identifier": [ + "urn:bnum:10000033", + "urn:oclc:NYPG001000015-C", + "urn:undefined:NNSZ00100565", + "urn:undefined:(WaOLN)nyp0200032" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs (Medium voice) with organ.", + "Psalms (Music)" + ], + "titleDisplay": [ + "Psalm settings / Vaclav Nelhybel." + ], + "uri": "b10000033", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Carol Stream, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000033" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-59" + ], + "identifierV2": [ + { + "value": "JMG 83-59", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842035" + } + ], + "physicalLocation": [ + "JMG 83-59" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842035" + ], + "idBarcode": [ + "33433032842035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000059" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000035", + "_score": null, + "_source": { + "extent": [ + "22 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Suite.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 12:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Serenade voor piano : 1980" + ], + "shelfMark": [ + "JMG 83-6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kasbergen, Marinus, 1936-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-6" + }, + { + "type": "nypl:Bnumber", + "value": "10000035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100566" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200034" + } + ], + "idOclc": [ + "NYPG001000016-C" + ], + "uniformTitle": [ + "Serenade, piano" + ], + "updatedAt": 1689901710976, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000035", + "urn:oclc:NYPG001000016-C", + "urn:undefined:NNSZ00100566", + "urn:undefined:(WaOLN)nyp0200034" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Piano)" + ], + "titleDisplay": [ + "Serenade voor piano : 1980 / Marinus Kasbergen." + ], + "uri": "b10000035", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Serenade" + ], + "tableOfContents": [ + "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000035" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-6" + ], + "identifierV2": [ + { + "value": "JMG 83-6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841490" + } + ], + "physicalLocation": [ + "JMG 83-6" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841490" + ], + "idBarcode": [ + "33433032841490" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000037", + "_score": null, + "_source": { + "extent": [ + "13a p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 15:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Guitar)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Eight studies for guitar : in form of a suite : 1979" + ], + "shelfMark": [ + "JMG 83-5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hekster, Walter." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-5" + }, + { + "type": "nypl:Bnumber", + "value": "10000037" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200036" + } + ], + "idOclc": [ + "NYPG001000017-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000037", + "urn:oclc:NYPG001000017-C", + "urn:undefined:NNSZ00100567", + "urn:undefined:(WaOLN)nyp0200036" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Guitar)" + ], + "titleDisplay": [ + "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." + ], + "uri": "b10000037", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000037" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-5" + ], + "identifierV2": [ + { + "value": "JMG 83-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841482" + } + ], + "physicalLocation": [ + "JMG 83-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841482" + ], + "idBarcode": [ + "33433032841482" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000005" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000039", + "_score": null, + "_source": { + "extent": [ + "49 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five sonatas for pianoforte" + ], + "shelfMark": [ + "JMG 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hässler, Johann Wilhelm, 1747-1822." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Oberdoerffer, Fritz." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000039" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters no. 66799. C.F. Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200038" + } + ], + "idOclc": [ + "NYPG001000018-C" + ], + "uniformTitle": [ + "Sonatas, piano. Selections" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000039", + "urn:oclc:NYPG001000018-C", + "urn:undefined:Edition Peters no. 66799. C.F. Peters", + "urn:undefined:NNSZ00100568", + "urn:undefined:(WaOLN)nyp0200038" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." + ], + "uri": "b10000039", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatas" + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-66" + ], + "identifierV2": [ + { + "value": "JMG 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842100" + } + ], + "physicalLocation": [ + "JMG 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842100" + ], + "idBarcode": [ + "33433032842100" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000041", + "_score": null, + "_source": { + "extent": [ + "1 score (23 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 5 clarinets.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Woodwind quintets (Clarinets (5))", + "Woodwind quintets (Clarinets (5)) -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Primavera" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Encounter" + ], + "shelfMark": [ + "JMF 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Usher, Julia." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "81770739" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000041" + }, + { + "type": "bf:Lccn", + "value": "81770739" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100569" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200040" + } + ], + "idOclc": [ + "NYPG001000019-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "London : Primavera, c1980." + ], + "identifier": [ + "urn:bnum:10000041", + "urn:lccn:81770739", + "urn:oclc:NYPG001000019-C", + "urn:undefined:NNSZ00100569", + "urn:undefined:(WaOLN)nyp0200040" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwind quintets (Clarinets (5)) -- Scores." + ], + "titleDisplay": [ + "Encounter / Julia Usher." + ], + "uri": "b10000041", + "lccClassification": [ + "M557.2.U8 E5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Greeting -- Circular argument -- Escape." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942042", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-66" + ], + "identifierV2": [ + { + "value": "JMF 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" + } + ], + "physicalLocation": [ + "JMF 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709291" + ], + "idBarcode": [ + "33433032709291" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000043", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (28 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 5:00-6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: D.15 579.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Wind ensembles", + "Wind ensembles -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Doblinger" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Capriccio : für 10 Blasinstrumente" + ], + "shelfMark": [ + "JMC 83-9" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Eröd, Iván." + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Doblingers Studienpartituren ; Stp. 410" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 83-9" + }, + { + "type": "nypl:Bnumber", + "value": "10000043" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-C" + }, + { + "type": "bf:Identifier", + "value": "Stp. 410 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "D.15 579 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200042" + } + ], + "idOclc": [ + "NYPG001000020-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wien : Verlag Doblinger, c1980." + ], + "identifier": [ + "urn:bnum:10000043", + "urn:oclc:NYPG001000020-C", + "urn:undefined:Stp. 410 Verlag Doblinger", + "urn:undefined:D.15 579 Verlag Doblinger", + "urn:undefined:NNSZ00100570", + "urn:undefined:(WaOLN)nyp0200042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Wind ensembles -- Scores." + ], + "titleDisplay": [ + "Capriccio : für 10 Blasinstrumente / Iván Eröd." + ], + "uri": "b10000043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wien" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMC 83-9" + ], + "identifierV2": [ + { + "value": "JMC 83-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004744128" + } + ], + "physicalLocation": [ + "JMC 83-9" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433004744128" + ], + "idBarcode": [ + "33433004744128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMC 83-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000044", + "_score": null, + "_source": { + "extent": [ + "[99] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ngawang Sopa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77901316" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" + }, + { + "type": "nypl:Bnumber", + "value": "10000044" + }, + { + "type": "bf:Lccn", + "value": "77901316" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100021" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200043" + } + ], + "idOclc": [ + "NYPG001000021-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Ngawang Sopa, 1976." + ], + "identifier": [ + "urn:bnum:10000044", + "urn:lccn:77901316", + "urn:oclc:NYPG001000021-B", + "urn:undefined:NNSZ00100021", + "urn:undefined:(WaOLN)nyp0200043" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." + ], + "uri": "b10000044", + "lccClassification": [ + "BQ942.Y367 R47 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000044" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000011", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2361" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2361", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080645" + } + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080645" + ], + "idBarcode": [ + "33433015080645" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002361" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000045", + "_score": null, + "_source": { + "extent": [ + "12 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Violin music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sole selling agents, Or-Tav" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Thoughts & feelings : for violin solo" + ], + "shelfMark": [ + "JMG 82-688" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stutschewsky, Joachim, 1891-1982." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "80770813" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 82-688" + }, + { + "type": "nypl:Bnumber", + "value": "10000045" + }, + { + "type": "bf:Lccn", + "value": "80770813" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100571" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200044" + } + ], + "idOclc": [ + "NYPG001000021-C" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Tel-Aviv : Sole selling agents, Or-Tav, c1979." + ], + "identifier": [ + "urn:bnum:10000045", + "urn:lccn:80770813", + "urn:oclc:NYPG001000021-C", + "urn:undefined:NNSZ00100571", + "urn:undefined:(WaOLN)nyp0200044" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Violin music." + ], + "titleDisplay": [ + "Thoughts & feelings : for violin solo / Joachim Stutschewsky." + ], + "uri": "b10000045", + "lccClassification": [ + "M42 .S" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tel-Aviv" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000045" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942043", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 82-688" + ], + "identifierV2": [ + { + "value": "JMG 82-688", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032707568" + } + ], + "physicalLocation": [ + "JMG 82-688" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032707568" + ], + "idBarcode": [ + "33433032707568" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 82-000688" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000046", + "_score": null, + "_source": { + "extent": [ + "[83] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kye rdor rnam bśad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", + "Tripiṭaka.", + "Tripiṭaka. -- Commentaries", + "Sa-skya-pa lamas", + "Sa-skya-pa lamas -- Tibet", + "Sa-skya-pa lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trayang and Jamyang Samten" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900893" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, + { + "type": "nypl:Bnumber", + "value": "10000046" + }, + { + "type": "bf:Lccn", + "value": "77900893" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100022" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200045" + } + ], + "idOclc": [ + "NYPG001000022-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Trayang and Jamyang Samten, 1976." + ], + "identifier": [ + "urn:bnum:10000046", + "urn:lccn:77900893", + "urn:oclc:NYPG001000022-B", + "urn:undefined:NNSZ00100022", + "urn:undefined:(WaOLN)nyp0200045" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", + "Tripiṭaka. -- Commentaries.", + "Sa-skya-pa lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." + ], + "uri": "b10000046", + "lccClassification": [ + "BG974.0727 T75" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "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" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000046" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2362", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080413" + } + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080413" + ], + "idBarcode": [ + "33433015080413" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002362" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000047", + "_score": null, + "_source": { + "extent": [ + "1 score (30 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 15 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vocalises (High voice) with instrumental ensemble", + "Vocalises (High voice) with instrumental ensemble -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" + ], + "shelfMark": [ + "JMG 83-79" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "81770634" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-79" + }, + { + "type": "nypl:Bnumber", + "value": "10000047" + }, + { + "type": "bf:Lccn", + "value": "81770634" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200046" + } + ], + "idOclc": [ + "NYPG001000022-C" + ], + "uniformTitle": [ + "Vocalise, soprano, instrumental ensemble, op. 38" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." + ], + "identifier": [ + "urn:bnum:10000047", + "urn:lccn:81770634", + "urn:oclc:NYPG001000022-C", + "urn:undefined:NNSZ00100572", + "urn:undefined:(WaOLN)nyp0200046" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vocalises (High voice) with instrumental ensemble -- Scores." + ], + "titleDisplay": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." + ], + "uri": "b10000047", + "lccClassification": [ + "M1613.3 .R8 op.38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London, England (Arlington Park House, London W4)" + ], + "titleAlt": [ + "Vocalise, op. 38" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "38 cm." + ] + }, + "sort": [ + "b10000047" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-79" + ], + "identifierV2": [ + { + "value": "JMG 83-79", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842233" + } + ], + "physicalLocation": [ + "JMG 83-79" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842233" + ], + "idBarcode": [ + "33433032842233" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000079" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000048", + "_score": null, + "_source": { + "extent": [ + "[150] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kunzang Topgey" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901012" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" + }, + { + "type": "nypl:Bnumber", + "value": "10000048" + }, + { + "type": "bf:Lccn", + "value": "76901012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100023" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200047" + } + ], + "idOclc": [ + "NYPG001000023-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Thimphu : Kunzang Topgey, 1976." + ], + "identifier": [ + "urn:bnum:10000048", + "urn:lccn:76901012", + "urn:oclc:NYPG001000023-B", + "urn:undefined:NNSZ00100023", + "urn:undefined:(WaOLN)nyp0200047" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000048", + "lccClassification": [ + "BQ7695 .B55" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Thimphu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 38 cm." + ] + }, + "sort": [ + "b10000048" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000013", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2382", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080439" + } + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080439" + ], + "idBarcode": [ + "33433015080439" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002382" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000049", + "_score": null, + "_source": { + "extent": [ + "1 score (105 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 25 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Symphony, op. 26 : full score" + ], + "shelfMark": [ + "JMG 83-80" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "81770641" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "nypl:Bnumber", + "value": "10000049" + }, + { + "type": "bf:Lccn", + "value": "81770641" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100573" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200048" + } + ], + "idOclc": [ + "NYPG001000023-C" + ], + "uniformTitle": [ + "Symphony, op. 26" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." + ], + "identifier": [ + "urn:bnum:10000049", + "urn:lccn:81770641", + "urn:oclc:NYPG001000023-C", + "urn:undefined:NNSZ00100573", + "urn:undefined:(WaOLN)nyp0200048" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "Symphony, op. 26 : full score / Francis Routh." + ], + "uri": "b10000049", + "lccClassification": [ + "M1001 .R8615 op.26" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London (Arlington Park House, London W4 4HD)" + ], + "titleAlt": [ + "Symphony, op. 26" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000049" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-80" + ], + "identifierV2": [ + { + "value": "JMG 83-80", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" + } + ], + "physicalLocation": [ + "JMG 83-80" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842241" + ], + "idBarcode": [ + "33433032842241" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000080" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000050", + "_score": null, + "_source": { + "extent": [ + "[188] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas", + "Bkaʼ-brgyud-pa lamas -- Tibet", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", + "Spiritual life", + "Spiritual life -- Buddhism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Urgyan Dorje" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" + }, + { + "type": "nypl:Bnumber", + "value": "10000050" + }, + { + "type": "bf:Lccn", + "value": "76901747" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100024" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200049" + } + ], + "idOclc": [ + "NYPG001000024-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "New Delhi : Urgyan Dorje, 1976." + ], + "identifier": [ + "urn:bnum:10000050", + "urn:lccn:76901747", + "urn:oclc:NYPG001000024-B", + "urn:undefined:NNSZ00100024", + "urn:undefined:(WaOLN)nyp0200049" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", + "Spiritual life -- Buddhism." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000050", + "lccClassification": [ + "BQ942.A187 A35 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000014", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2381", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080421" + } + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080421" + ], + "idBarcode": [ + "33433015080421" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002381" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000051", + "_score": null, + "_source": { + "extent": [ + "score (64 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Samfundet til udgivelse af dansk musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" + ], + "shelfMark": [ + "JMG 83-75" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Christiansen, Henning." + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78770955" + ], + "seriesStatement": [ + "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-75" + }, + { + "type": "nypl:Bnumber", + "value": "10000051" + }, + { + "type": "bf:Lccn", + "value": "78770955" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100574" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200050" + } + ], + "idOclc": [ + "NYPG001000024-C" + ], + "uniformTitle": [ + "Symphony, no. 2, op. 69c", + "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "København : Samfundet til udgivelse af dansk musik, 1977." + ], + "identifier": [ + "urn:bnum:10000051", + "urn:lccn:78770955", + "urn:oclc:NYPG001000024-C", + "urn:undefined:NNSZ00100574", + "urn:undefined:(WaOLN)nyp0200050" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." + ], + "uri": "b10000051", + "lccClassification": [ + "M1001 .C533 op.69c" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "København" + ], + "titleAlt": [ + "Symphony, no. 2, op. 69c", + "Den forsvundne." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "37 cm." + ] + }, + "sort": [ + "b10000051" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942046", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-75" + ], + "identifierV2": [ + { + "value": "JMG 83-75", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842191" + } + ], + "physicalLocation": [ + "JMG 83-75" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842191" + ], + "idBarcode": [ + "33433032842191" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000075" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:03 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "170288", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"lte\":2000}}},{\"range\":{\"dateEndYear\":{\"lte\":2000}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 46 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-1db82abdf32d18268de7b647ec615b8d.json b/test/fixtures/query-1db82abdf32d18268de7b647ec615b8d.json deleted file mode 100644 index 657982ec..00000000 --- a/test/fixtures/query-1db82abdf32d18268de7b647ec615b8d.json +++ /dev/null @@ -1,1217 +0,0 @@ -{ - "took": 456, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 32914, - "max_score": 0, - "hits": [] - }, - "aggregations": { - "owner": { - "doc_count": 44149, - "_nested": { - "doc_count_error_upper_bound": 6, - "sum_other_doc_count": 1879, - "buckets": [ - { - "key": "orgs:1000||Stephen A. Schwarzman Building", - "doc_count": 8021 - }, - { - "key": "orgs:0002||Columbia University Libraries", - "doc_count": 5879 - }, - { - "key": "orgs:0004||Harvard Library", - "doc_count": 4620 - }, - { - "key": "orgs:0003||Princeton University Library", - "doc_count": 4558 - }, - { - "key": "orgs:1101||General Research Division", - "doc_count": 3522 - }, - { - "key": "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center", - "doc_count": 1261 - }, - { - "key": "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy", - "doc_count": 1086 - }, - { - "key": "orgs:1119||Billy Rose Theatre Division", - "doc_count": 828 - }, - { - "key": "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division", - "doc_count": 746 - }, - { - "key": "orgs:1108||Rare Book Division", - "doc_count": 373 - } - ] - } - }, - "contributorLiteral": { - "doc_count_error_upper_bound": 19, - "sum_other_doc_count": 38997, - "buckets": [ - { - "key": "Gale (Firm)", - "doc_count": 439 - }, - { - "key": "New York Genealogical and Biographical Society Collection.", - "doc_count": 246 - }, - { - "key": "Sinclair Hamilton Collection of American Illustrated Books. NjP http://id.loc.gov/authorities/names/no2003086490", - "doc_count": 225 - }, - { - "key": "Hamilton, Alexander, 1757-1804.", - "doc_count": 170 - }, - { - "key": "OverDrive, Inc.", - "doc_count": 165 - }, - { - "key": "Ford Collection.", - "doc_count": 133 - }, - { - "key": "Alexander Hamilton Institute (U.S.)", - "doc_count": 126 - }, - { - "key": "HistoryMakers (Video oral history collection), production company.", - "doc_count": 116 - }, - { - "key": "Jay, John, 1745-1829.", - "doc_count": 112 - }, - { - "key": "Hamilton, Racine Tucker", - "doc_count": 101 - }, - { - "key": "Madison, James, 1751-1836.", - "doc_count": 98 - }, - { - "key": "Harty, Hamilton, 1879-1941.", - "doc_count": 81 - }, - { - "key": "Metropolitan Opera (New York, N.Y.)", - "doc_count": 68 - }, - { - "key": "Booz, Allen & Hamilton.", - "doc_count": 62 - }, - { - "key": "Worcester Dramatic Museum.", - "doc_count": 52 - }, - { - "key": "Art Gallery of Hamilton (Ont.)", - "doc_count": 51 - }, - { - "key": "Metropolitan Opera Radio Broadcast collection.", - "doc_count": 51 - }, - { - "key": "Handel, George Frideric, 1685-1759.", - "doc_count": 50 - }, - { - "key": "Hickey, Matthew", - "doc_count": 49 - }, - { - "key": "Lane, Edgar Carey", - "doc_count": 49 - }, - { - "key": "Milton, John, 1608-1674.", - "doc_count": 48 - }, - { - "key": "Philip Hamilton McMillan Memorial Publication Fund.", - "doc_count": 47 - }, - { - "key": "Hamilton, Newburgh, 1691-1761.", - "doc_count": 46 - }, - { - "key": "New York Public Library for the Performing Arts. Billy Rose Theatre Division. Theatre on Film and Tape Archive.", - "doc_count": 46 - }, - { - "key": "Bibliotheca (Firm)", - "doc_count": 40 - }, - { - "key": "Hamilton, Ian, 1938-2001.", - "doc_count": 40 - }, - { - "key": "Wild Hawthorn Press. pbl", - "doc_count": 40 - }, - { - "key": "Geological Survey (U.S.)", - "doc_count": 39 - }, - { - "key": "Hamilton, Chico, 1921-", - "doc_count": 38 - }, - { - "key": "American Antiquarian Society.", - "doc_count": 37 - }, - { - "key": "Mabie, Hamilton Wright, 1846-1916.", - "doc_count": 37 - }, - { - "key": "Schomburg Children's Collection.", - "doc_count": 36 - }, - { - "key": "Worcester Theatre (Front Street, Worcester, Mass.)", - "doc_count": 36 - }, - { - "key": "Barr, Alfred Hamilton, 1902-", - "doc_count": 35 - }, - { - "key": "Drexel Collection.", - "doc_count": 35 - }, - { - "key": "Hamilton, Iain, 1922-2000.", - "doc_count": 35 - }, - { - "key": "Kirk-Greene, A. H. M. (Anthony Hamilton Millard)", - "doc_count": 35 - }, - { - "key": "Allen, Peter, 1920-2016.", - "doc_count": 34 - }, - { - "key": "Baker, John H. (John Hamilton)", - "doc_count": 34 - }, - { - "key": "Madison, James, 1751-1836", - "doc_count": 34 - }, - { - "key": "Hamilton, Alexander, 1757-1804", - "doc_count": 33 - }, - { - "key": "Sinclair Hamilton Collection of American Illustrated Books. NjP", - "doc_count": 33 - }, - { - "key": "OverDrive, Inc., distributor", - "doc_count": 32 - }, - { - "key": "Children's Room Collection.", - "doc_count": 31 - }, - { - "key": "Darley, Felix Octavius Carr, 1822-1888,", - "doc_count": 31 - }, - { - "key": "Mozart, Wolfgang Amadeus, 1756-1791.", - "doc_count": 31 - }, - { - "key": "DHCA.", - "doc_count": 30 - }, - { - "key": "Long, John Hamilton.", - "doc_count": 30 - }, - { - "key": "Hamilton, Susan (Soprano)", - "doc_count": 26 - }, - { - "key": "Bach, Johann Sebastian, 1685-1750.", - "doc_count": 24 - } - ] - }, - "materialType": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "resourcetypes:txt||Text", - "doc_count": 30471 - }, - { - "key": "resourcetypes:aud||Audio", - "doc_count": 1096 - }, - { - "key": "resourcetypes:mov||Moving image", - "doc_count": 514 - }, - { - "key": "resourcetypes:car||Cartographic", - "doc_count": 249 - }, - { - "key": "resourcetypes:not||Notated music", - "doc_count": 208 - }, - { - "key": "resourcetypes:img||Still image", - "doc_count": 201 - }, - { - "key": "resourcetypes:mix||Mixed material", - "doc_count": 133 - }, - { - "key": "resourcetypes:mul||Multimedia", - "doc_count": 3 - } - ] - }, - "issuance": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "urn:biblevel:m||monograph/item", - "doc_count": 31887 - }, - { - "key": "urn:biblevel:s||serial", - "doc_count": 460 - }, - { - "key": "urn:biblevel:c||collection", - "doc_count": 278 - }, - { - "key": "urn:biblevel:b||serial component part", - "doc_count": 73 - }, - { - "key": "urn:biblevel:d||subunit", - "doc_count": 60 - }, - { - "key": "urn:biblevel:i||integrating resource", - "doc_count": 1 - } - ] - }, - "publisher": { - "doc_count_error_upper_bound": 24, - "sum_other_doc_count": 23800, - "buckets": [ - { - "key": "H. Hamilton", - "doc_count": 964 - }, - { - "key": "Hamilton", - "doc_count": 582 - }, - { - "key": "Hamish Hamilton", - "doc_count": 560 - }, - { - "key": "H. Hamilton,", - "doc_count": 538 - }, - { - "key": "Hamish Hamilton,", - "doc_count": 415 - }, - { - "key": "Hamilton,", - "doc_count": 401 - }, - { - "key": "Hamilton Books", - "doc_count": 226 - }, - { - "key": "Hamilton Books,", - "doc_count": 191 - }, - { - "key": "s.n.,", - "doc_count": 162 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent,", - "doc_count": 127 - }, - { - "key": "s.n.", - "doc_count": 127 - }, - { - "key": "The HistoryMakers", - "doc_count": 116 - }, - { - "key": "Oxford University Press", - "doc_count": 104 - }, - { - "key": "Printed by Chas. Hamilton, Palladium Office, Worcester.,", - "doc_count": 93 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent", - "doc_count": 88 - }, - { - "key": "Alexander Hamilton Institute", - "doc_count": 87 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent & Co., Ltd.", - "doc_count": 86 - }, - { - "key": "Alexander Hamilton Institute,", - "doc_count": 83 - }, - { - "key": "Oxford University Press,", - "doc_count": 83 - }, - { - "key": "Hamilton, Adams,", - "doc_count": 81 - }, - { - "key": "[publisher not identified]", - "doc_count": 81 - }, - { - "key": "Macmillan,", - "doc_count": 68 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent & Co.", - "doc_count": 66 - }, - { - "key": "Macmillan", - "doc_count": 65 - }, - { - "key": "Wiley", - "doc_count": 64 - }, - { - "key": "[s.n.]", - "doc_count": 63 - }, - { - "key": "Press of C. Hamilton,", - "doc_count": 62 - }, - { - "key": "Doubleday,", - "doc_count": 58 - }, - { - "key": "Wild Hawthorn Press", - "doc_count": 53 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent & Co.,", - "doc_count": 52 - }, - { - "key": "Hamilton, Adams", - "doc_count": 50 - }, - { - "key": "Press of C. Hamilton", - "doc_count": 47 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent & Co., Ltd.,", - "doc_count": 47 - }, - { - "key": "Cambridge University Press", - "doc_count": 46 - }, - { - "key": "C. Hamilton,", - "doc_count": 44 - }, - { - "key": "McGraw-Hill", - "doc_count": 43 - }, - { - "key": "Alexander Hamilton institute", - "doc_count": 42 - }, - { - "key": "Harper & Brothers,", - "doc_count": 42 - }, - { - "key": "Charles Hamilton", - "doc_count": 38 - }, - { - "key": "[s.n.],", - "doc_count": 38 - }, - { - "key": "s.n.],", - "doc_count": 38 - }, - { - "key": "Simpkin, Marshall, Hamilton, Kent & co., ltd.", - "doc_count": 36 - }, - { - "key": "Wiley,", - "doc_count": 36 - }, - { - "key": "J. Murray,", - "doc_count": 34 - }, - { - "key": "Hamilton & Co.,", - "doc_count": 33 - }, - { - "key": "Harper & brothers,", - "doc_count": 33 - }, - { - "key": "Harvard University Press", - "doc_count": 33 - }, - { - "key": "J. Hamilton", - "doc_count": 33 - }, - { - "key": "Random House", - "doc_count": 33 - }, - { - "key": "Ticknor and Fields", - "doc_count": 33 - } - ] - }, - "language": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 11, - "buckets": [ - { - "key": "lang:eng||English", - "doc_count": 30397 - }, - { - "key": "lang:fre||French", - "doc_count": 302 - }, - { - "key": "lang:zxx||No linguistic content", - "doc_count": 296 - }, - { - "key": "lang:ger||German", - "doc_count": 254 - }, - { - "key": "lang:por||Portuguese", - "doc_count": 162 - }, - { - "key": "lang:spa||Spanish", - "doc_count": 159 - }, - { - "key": "lang:ita||Italian", - "doc_count": 152 - }, - { - "key": "lang:lat||Latin", - "doc_count": 130 - }, - { - "key": "lang:swe||Swedish", - "doc_count": 68 - }, - { - "key": "lang:heb||Hebrew", - "doc_count": 31 - }, - { - "key": "lang:rus||Russian", - "doc_count": 26 - }, - { - "key": "lang:und||Undetermined", - "doc_count": 22 - }, - { - "key": "lang:mul||Multiple languages", - "doc_count": 19 - }, - { - "key": "lang:dut||Dutch", - "doc_count": 17 - }, - { - "key": "lang:ara||Arabic", - "doc_count": 12 - }, - { - "key": "lang:dan||Danish", - "doc_count": 12 - }, - { - "key": "lang:chi||Chinese", - "doc_count": 10 - }, - { - "key": "lang:grc||Greek, Ancient (to 1453)", - "doc_count": 10 - }, - { - "key": "lang:jpn||Japanese", - "doc_count": 9 - }, - { - "key": "lang:nor||Norwegian", - "doc_count": 8 - }, - { - "key": "lang:cze||Czech", - "doc_count": 7 - }, - { - "key": "lang:pol||Polish", - "doc_count": 7 - }, - { - "key": "lang:gre||Greek, Modern (1453- )", - "doc_count": 6 - }, - { - "key": "lang:gle||Irish", - "doc_count": 5 - }, - { - "key": "lang:kor||Korean", - "doc_count": 5 - }, - { - "key": "lang:per||Persian", - "doc_count": 5 - }, - { - "key": "lang:lav||Latvian", - "doc_count": 4 - }, - { - "key": "lang:tur||Turkish", - "doc_count": 4 - }, - { - "key": "lang:cat||Catalan", - "doc_count": 3 - }, - { - "key": "lang:nai||North American Indian (Other)", - "doc_count": 3 - }, - { - "key": "lang:ukr||Ukrainian", - "doc_count": 3 - }, - { - "key": "lang:afr||Afrikaans", - "doc_count": 2 - }, - { - "key": "lang:asm||Assamese", - "doc_count": 2 - }, - { - "key": "lang:bnt||Bantu (Other)", - "doc_count": 2 - }, - { - "key": "lang:bul||Bulgarian", - "doc_count": 2 - }, - { - "key": "lang:frm||French, Middle (ca. 1300-1600)", - "doc_count": 2 - }, - { - "key": "lang:fro||French, Old (ca. 842-1300)", - "doc_count": 2 - }, - { - "key": "lang:gla||Scottish Gaelic", - "doc_count": 2 - }, - { - "key": "lang:hun||Hungarian", - "doc_count": 2 - }, - { - "key": "lang:wel||Welsh", - "doc_count": 2 - }, - { - "key": "lang:afa||Afroasiatic (Other)", - "doc_count": 1 - }, - { - "key": "lang:ang||English, Old (ca. 450-1100)", - "doc_count": 1 - }, - { - "key": "lang:arm||Armenian", - "doc_count": 1 - }, - { - "key": "lang:ben||Bengali", - "doc_count": 1 - }, - { - "key": "lang:enm||English, Middle (1100-1500)", - "doc_count": 1 - }, - { - "key": "lang:epo||Esperanto", - "doc_count": 1 - }, - { - "key": "lang:gem||Germanic (Other)", - "doc_count": 1 - }, - { - "key": "lang:hau||Hausa", - "doc_count": 1 - }, - { - "key": "lang:hin||Hindi", - "doc_count": 1 - }, - { - "key": "lang:hrv||Croatian", - "doc_count": 1 - } - ] - }, - "mediaType": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "mediatypes:n||unmediated", - "doc_count": 31347 - }, - { - "key": "mediatypes:undefined||unmediated", - "doc_count": 1322 - }, - { - "key": "mediatypes:s||audio", - "doc_count": 177 - }, - { - "key": "mediatypes:v||video", - "doc_count": 17 - }, - { - "key": "mediatypes:h||microform", - "doc_count": 14 - }, - { - "key": "mediatypes:undefined||microform", - "doc_count": 10 - }, - { - "key": "mediatypes:c||computer", - "doc_count": 8 - }, - { - "key": "mediatypes:undefined||audio", - "doc_count": 8 - }, - { - "key": "mediatypes:g||projected", - "doc_count": 1 - }, - { - "key": "mediatypes:n||computer", - "doc_count": 1 - }, - { - "key": "mediatypes:undefined||computer", - "doc_count": 1 - }, - { - "key": "mediatypes:undefined||text", - "doc_count": 1 - } - ] - }, - "subjectLiteral": { - "doc_count_error_upper_bound": 33, - "sum_other_doc_count": 76694, - "buckets": [ - { - "key": "Hamilton, Alexander, 1757-1804.", - "doc_count": 458 - }, - { - "key": "United States.", - "doc_count": 314 - }, - { - "key": "African Americans.", - "doc_count": 155 - }, - { - "key": "Hamilton, Emma, Lady, 1765-1815.", - "doc_count": 126 - }, - { - "key": "African Americans -- Interviews.", - "doc_count": 117 - }, - { - "key": "Theater programs.", - "doc_count": 116 - }, - { - "key": "Artists' books.", - "doc_count": 97 - }, - { - "key": "1900-1999", - "doc_count": 96 - }, - { - "key": "Operas.", - "doc_count": 94 - }, - { - "key": "English fiction.", - "doc_count": 93 - }, - { - "key": "Hamilton family.", - "doc_count": 93 - }, - { - "key": "Drama -- 19th century.", - "doc_count": 86 - }, - { - "key": "Drama.", - "doc_count": 86 - }, - { - "key": "Theater -- Worcester.", - "doc_count": 85 - }, - { - "key": "Tariff -- United States.", - "doc_count": 78 - }, - { - "key": "Jefferson, Thomas, 1743-1826.", - "doc_count": 75 - }, - { - "key": "Great Britain -- Court and courtiers.", - "doc_count": 73 - }, - { - "key": "Jazz.", - "doc_count": 73 - }, - { - "key": "Theater -- New York.", - "doc_count": 64 - }, - { - "key": "United States -- Politics and government -- 1783-1809.", - "doc_count": 64 - }, - { - "key": "Authors, English -- 20th century -- Biography.", - "doc_count": 63 - }, - { - "key": "Constitutional law -- United States.", - "doc_count": 63 - }, - { - "key": "Statesmen -- United States -- Biography.", - "doc_count": 63 - }, - { - "key": "Politics and government.", - "doc_count": 62 - }, - { - "key": "Comedy.", - "doc_count": 61 - }, - { - "key": "Farce.", - "doc_count": 60 - }, - { - "key": "Great Britain.", - "doc_count": 60 - }, - { - "key": "United States -- Politics and government -- 1775-1783.", - "doc_count": 60 - }, - { - "key": "Gramont, Philibert, comte de, 1621-1707.", - "doc_count": 58 - }, - { - "key": "English poetry.", - "doc_count": 57 - }, - { - "key": "United States", - "doc_count": 57 - }, - { - "key": "Piano music.", - "doc_count": 55 - }, - { - "key": "English drama.", - "doc_count": 54 - }, - { - "key": "Man-woman relationships -- Fiction.", - "doc_count": 54 - }, - { - "key": "Burr, Aaron, 1756-1836.", - "doc_count": 53 - }, - { - "key": "Music.", - "doc_count": 53 - }, - { - "key": "Concrete poetry.", - "doc_count": 52 - }, - { - "key": "Nelson, Horatio Nelson, Viscount, 1758-1805.", - "doc_count": 52 - }, - { - "key": "Hamilton, Alexander, 1757-1804", - "doc_count": 50 - }, - { - "key": "Economics.", - "doc_count": 49 - }, - { - "key": "Bible. -- Criticism, interpretation, etc.", - "doc_count": 48 - }, - { - "key": "United States -- Description and travel.", - "doc_count": 48 - }, - { - "key": "Fiction in English, 1945- - Texts", - "doc_count": 47 - }, - { - "key": "Adams, John, 1735-1826.", - "doc_count": 46 - }, - { - "key": "Hamilton County (Ohio) -- Genealogy.", - "doc_count": 44 - }, - { - "key": "States' rights (American politics)", - "doc_count": 44 - }, - { - "key": "Voyages and travels.", - "doc_count": 43 - }, - { - "key": "1800-1899", - "doc_count": 42 - }, - { - "key": "Hamilton, Peter.", - "doc_count": 40 - }, - { - "key": "Washington, George, 1732-1799.", - "doc_count": 40 - } - ] - }, - "creatorLiteral": { - "doc_count_error_upper_bound": 24, - "sum_other_doc_count": 25508, - "buckets": [ - { - "key": "Finlay, Ian Hamilton.", - "doc_count": 163 - }, - { - "key": "Mabie, Hamilton Wright, 1846-1916.", - "doc_count": 152 - }, - { - "key": "Hamilton, Alexander, 1757-1804.", - "doc_count": 115 - }, - { - "key": "Hamilton, Virginia, 1936-2002.", - "doc_count": 86 - }, - { - "key": "Carey, Mathew, 1760-1839.", - "doc_count": 82 - }, - { - "key": "Maxwell, W. H. (William Hamilton), 1792-1850.", - "doc_count": 82 - }, - { - "key": "Hamilton, Gail, 1833-1896.", - "doc_count": 81 - }, - { - "key": "Child, Hamilton, 1836-", - "doc_count": 75 - }, - { - "key": "Hamilton, Iain, 1922-2000.", - "doc_count": 67 - }, - { - "key": "Handel, George Frideric, 1685-1759.", - "doc_count": 66 - }, - { - "key": "Hamilton, Mary Agnes, 1884-1966.", - "doc_count": 61 - }, - { - "key": "Worcester Dramatic Museum.", - "doc_count": 59 - }, - { - "key": "Lockhart, Robert Hamilton Bruce, 1887-1970.", - "doc_count": 53 - }, - { - "key": "Fyfe, Hamilton, 1869-1951.", - "doc_count": 52 - }, - { - "key": "Moore, John Hamilton, -1807.", - "doc_count": 51 - }, - { - "key": "Hamilton, Anthony, Count, approximately 1646-1720.", - "doc_count": 50 - }, - { - "key": "Hamilton, James, 1814-1867.", - "doc_count": 50 - }, - { - "key": "Eaton, Arthur Wentworth Hamilton, 1849-1937.", - "doc_count": 48 - }, - { - "key": "Sears, Edmund H. (Edmund Hamilton), 1810-1876.", - "doc_count": 47 - }, - { - "key": "Worcester Theatre (Front Street, Worcester, Mass.)", - "doc_count": 47 - }, - { - "key": "Hamilton, Cicely, 1872-1952.", - "doc_count": 43 - }, - { - "key": "Hamilton, Patrick, 1904 March 17-1962.", - "doc_count": 43 - }, - { - "key": "West, Jerry, 1910-1975.", - "doc_count": 43 - }, - { - "key": "Hamilton, Clayton Meeker, 1881-1946.", - "doc_count": 42 - }, - { - "key": "Hamilton-Paterson, James.", - "doc_count": 41 - }, - { - "key": "Booz, Allen & Hamilton.", - "doc_count": 40 - }, - { - "key": "Hamilton, Cosmo, 1872?-1942.", - "doc_count": 40 - }, - { - "key": "Thompson, A. Hamilton (Alexander Hamilton), 1873-1952.", - "doc_count": 40 - }, - { - "key": "Basso, Hamilton, 1904-1964.", - "doc_count": 39 - }, - { - "key": "Hamilton, Ian, 1938-2001.", - "doc_count": 39 - }, - { - "key": "Stephens, Alexander H. (Alexander Hamilton), 1812-1883.", - "doc_count": 39 - }, - { - "key": "Cushing, Frank Hamilton, 1857-1900.", - "doc_count": 38 - }, - { - "key": "Kirk-Greene, A. H. M. (Anthony Hamilton Millard)", - "doc_count": 38 - }, - { - "key": "Hamilton, Edith, 1867-1963.", - "doc_count": 35 - }, - { - "key": "Hartley, L. P. (Leslie Poles), 1895-1972.", - "doc_count": 35 - }, - { - "key": "Gibson, W. Hamilton (William Hamilton), 1850-1896.", - "doc_count": 34 - }, - { - "key": "Hamilton College (Clinton, N.Y.)", - "doc_count": 34 - }, - { - "key": "Moorehead, Alan, 1910-1983.", - "doc_count": 34 - }, - { - "key": "Hamilton, Laurell K.", - "doc_count": 33 - }, - { - "key": "Hamilton, Ian, 1853-1947.", - "doc_count": 32 - }, - { - "key": "United States. Department of the Treasury.", - "doc_count": 32 - }, - { - "key": "Baldwin-Lima-Hamilton Corporation.", - "doc_count": 30 - }, - { - "key": "Gibbs, A. Hamilton (Arthur Hamilton), 1888-1964.", - "doc_count": 30 - }, - { - "key": "Hill, Hamilton Andrews, 1827-1895.", - "doc_count": 30 - }, - { - "key": "Hurd, D. Hamilton (Duane Hamilton)", - "doc_count": 30 - }, - { - "key": "Ellis, Cuthbert Hamilton, 1909-", - "doc_count": 29 - }, - { - "key": "Brogan, D. W. (Denis William), 1900-1974.", - "doc_count": 28 - }, - { - "key": "Hamilton, William, Sir, 1788-1856.", - "doc_count": 28 - }, - { - "key": "Hamilton, Peter F.", - "doc_count": 25 - }, - { - "key": "Hamilton, Thomas, 1789-1842.", - "doc_count": 25 - } - ] - } - } -} \ No newline at end of file diff --git a/test/fixtures/query-2169f11a58545261999f3895ac55b21a.json b/test/fixtures/query-2169f11a58545261999f3895ac55b21a.json new file mode 100644 index 00000000..0f7d2910 --- /dev/null +++ b/test/fixtures/query-2169f11a58545261999f3895ac55b21a.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 163, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:12 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19778", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Publisher no. \\\\-\\\\- 028 02 \\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"Publisher no. \\\\-\\\\- 028 02 \\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"Publisher no. \\\\-\\\\- 028 02 \\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1105" + }, + "timeout": 30000 + }, + "options": {}, + "id": 69 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-242ac555d052117964fb4bd1f94d5db7.json b/test/fixtures/query-242ac555d052117964fb4bd1f94d5db7.json new file mode 100644 index 00000000..9ad5c719 --- /dev/null +++ b/test/fixtures/query-242ac555d052117964fb4bd1f94d5db7.json @@ -0,0 +1,28871 @@ +{ + "body": { + "took": 1100, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 6250343, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000109", + "_score": null, + "_source": { + "extent": [ + "xxii, 321 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [305]-321).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Americans", + "Americans -- Travel", + "Americans -- Travel -- History", + "Americans -- Travel -- History -- China", + "Americans -- Travel -- History -- China -- 19th century", + "Public opinion", + "Public opinion -- United States", + "Public opinion -- United States -- History", + "Public opinion -- United States -- History -- 19th century", + "United States", + "United States -- Civilization", + "United States -- Civilization -- Chinese influences", + "United States -- Intellectual life", + "United States -- Intellectual life -- 19th century", + "China", + "China -- Foreign public opinion, American", + "China -- Foreign public opinion, American -- History", + "China -- Foreign public opinion, American -- History -- 19th century", + "China -- Civilization", + "China -- Civilization -- Public opinion", + "China -- Civilization -- Public opinion -- History", + "China -- Civilization -- Public opinion -- History -- 19th century", + "China -- Description and travel", + "China -- In popular culture", + "United States -- Relations", + "United States -- Relations -- China", + "China -- Relations", + "China -- Relations -- United States" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Columbia University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 2008 + ], + "title": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 09-1362" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2008" + ], + "creatorLiteral": [ + "Haddad, John Rogers." + ], + "idLccn": [ + "2008037637" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2008 + ], + "idOclc": [ + "184821618" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 09-1362" + }, + { + "type": "nypl:Bnumber", + "value": "10000109" + }, + { + "type": "bf:Isbn", + "value": "9780231130943 (cloth : alk. paper)" + }, + { + "type": "bf:Isbn", + "value": "0231130945 (cloth : alk. paper)" + }, + { + "type": "nypl:Oclc", + "value": "184821618" + }, + { + "type": "bf:Lccn", + "value": "2008037637" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)184821618" + } + ], + "updatedAt": 1709334898828, + "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", + "urn:isbn:9780231130943 (cloth : alk. paper)", + "urn:isbn:0231130945 (cloth : alk. paper)", + "urn:oclc:184821618", + "urn:lccn:2008037637", + "urn:identifier:(OCoLC)184821618" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2008" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Americans -- Travel -- History -- China -- 19th century.", + "Public opinion -- United States -- History -- 19th century.", + "United States -- Civilization -- Chinese influences.", + "United States -- Intellectual life -- 19th century.", + "China -- Foreign public opinion, American -- History -- 19th century.", + "China -- Civilization -- Public opinion -- History -- 19th century.", + "China -- Description and travel.", + "China -- In popular culture.", + "United States -- Relations -- China.", + "China -- Relations -- United States." + ], + "titleDisplay": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." + ], + "uri": "b10000109", + "lccClassification": [ + "E183.8.C5 H175 2008" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "9780231130943", + "0231130945" + ] + }, + "sort": [ + "b10000109" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dueDate": [ + "2024-05-30" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061318089" + ], + "identifier": [ + "urn:shelfmark:*OLF 82-5145", + "urn:barcode:33433061318089" + ], + "identifierV2": [ + { + "value": "*OLF 82-5145", + "type": "bf:ShelfMark" + }, + { + "value": "33433061318089", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLF 82-5145" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*OLF 82-5145" + ], + "shelfMark_sort": "a*OLF 82-005145", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783799" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "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": [ + "33433084847221" + ], + "identifier": [ + "urn:shelfmark:JFE 09-1362", + "urn:barcode:33433084847221" + ], + "identifierV2": [ + { + "value": "JFE 09-1362", + "type": "bf:ShelfMark" + }, + { + "value": "33433084847221", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "JFE 09-1362" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 09-1362" + ], + "shelfMark_sort": "aJFE 09-001362", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i23117386" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001333", + "_score": null, + "_source": { + "extent": [ + "v. : ill., folded maps ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Geomorphology", + "Geomorphology -- Libya" + ], + "publisherLiteral": [ + "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" + ], + "shelfMark": [ + "*OFO 82-5116" + ], + "creatorLiteral": [ + "Jawdah, Jawdah Ḥasanayn." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75960642" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFO 82-5116" + }, + { + "type": "nypl:Bnumber", + "value": "10001333" + }, + { + "type": "bf:Lccn", + "value": "75960642" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201348" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201331" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636070536203, + "publicationStatement": [ + "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" + ], + "identifier": [ + "urn:bnum:10001333", + "urn:lccn:75960642", + "urn:undefined:NNSZ00201348", + "urn:undefined:(WaOLN)nyp0201331" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Geomorphology -- Libya." + ], + "titleDisplay": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." + ], + "uri": "b10001333", + "lccClassification": [ + "GB440.L5 J38" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Binghāzī] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24cm." + ] + }, + "sort": [ + "b10001333" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000872", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode: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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000871", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001377", + "_score": null, + "_source": { + "extent": [ + "71 p. : ill., music ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 69).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Silbermann, Gottfried, 1683-1753", + "Organ (Musical instrument)", + "Organ (Musical instrument) -- Instruction and study", + "Improvisation (Music)", + "Improvisation (Music) -- Instruction and study", + "Organ music", + "Organ music -- Interpretation (Phrasing, dynamics, etc.)", + "Organ builders", + "Organ builders -- Germany" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Klaus-Jürgen Kamprad" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 2007 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Choralimprovisation auf Orgeln Gottfried Silbermanns" + ], + "shelfMark": [ + "JMG 09-710" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wagler, Dietrich, 1940-" + ], + "createdString": [ + "2007" + ], + "seriesStatement": [ + "Freiberger Studien zur Orgel ; 10" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gottfried-Silbermann-Gesellschaft." + ], + "dateStartYear": [ + 2007 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 09-710" + }, + { + "type": "nypl:Bnumber", + "value": "10001377" + }, + { + "type": "bf:Isbn", + "value": "9783930550494 (pbk.)" + }, + { + "type": "bf:Isbn", + "value": "3930550490 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "439765611" + }, + { + "type": "nypl:Oclc", + "value": "439765611" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)439765611" + } + ], + "idOclc": [ + "439765611" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "[Altenburg] : Verlag Klaus-Jürgen Kamprad, c2007." + ], + "identifier": [ + "urn:bnum:10001377", + "urn:isbn:9783930550494 (pbk.)", + "urn:isbn:3930550490 (pbk.)", + "urn:oclc:439765611", + "urn:undefined:(OCoLC)439765611" + ], + "idIsbn": [ + "9783930550494 (pbk.)", + "3930550490 (pbk.)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2007" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Silbermann, Gottfried, 1683-1753.", + "Organ (Musical instrument) -- Instruction and study.", + "Improvisation (Music) -- Instruction and study.", + "Organ music -- Interpretation (Phrasing, dynamics, etc.)", + "Organ builders -- Germany." + ], + "titleDisplay": [ + "Choralimprovisation auf Orgeln Gottfried Silbermanns / Dietrich Wagler ; [Hrsg.: Gottfried-Silbermann-Gesellschaft]." + ], + "uri": "b10001377", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Altenburg]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "9783930550494", + "3930550490" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10001377" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i24299761", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 09-710" + ], + "identifierV2": [ + { + "value": "JMG 09-710", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433089337251" + } + ], + "physicalLocation": [ + "JMG 09-710" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433089337251" + ], + "idBarcode": [ + "33433089337251" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMG 09-000710" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001657", + "_score": null, + "_source": { + "extent": [ + "v. : ill., maps ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on p. [4] of cover: Village gazetteer.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "English and Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Gazetteers", + "Villages", + "Villages -- Iran", + "Villages -- Iran -- Statistics" + ], + "publisherLiteral": [ + "Markaz-i Āmār-i Īrān," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "shelfMark": [ + "Map Div. 84-146" + ], + "creatorLiteral": [ + "Markaz-i Āmār-i Īrān." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "81464564" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146" + }, + { + "type": "nypl:Bnumber", + "value": "10001657" + }, + { + "type": "bf:Lccn", + "value": "81464564" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201692" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201655" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636095534719, + "publicationStatement": [ + "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" + ], + "identifier": [ + "urn:bnum:10001657", + "urn:lccn:81464564", + "urn:undefined:NNSZ00201692", + "urn:undefined:(WaOLN)nyp0201655" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Gazetteers.", + "Villages -- Iran -- Statistics." + ], + "titleDisplay": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "uri": "b10001657", + "lccClassification": [ + "DS253 .M37" + ], + "numItems": [ + 11 + ], + "numAvailable": [ + 11 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Village gazetteer." + ], + "tableOfContents": [ + "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." + ], + "dimensions": [ + "42x54 cm." + ] + }, + "sort": [ + "b10001657" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 11, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030870" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000017", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784147", + "shelfMark": [ + "Map Div. 84-146 v. 17" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030862" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000015", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784146", + "shelfMark": [ + "Map Div. 84-146 v. 15" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030854" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000014", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784145", + "shelfMark": [ + "Map Div. 84-146 v. 14" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030847" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000010", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784144", + "shelfMark": [ + "Map Div. 84-146 v. 10" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 10" + }, + { + "type": "bf:Barcode", + "value": "33433057030847" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 10" + ], + "idBarcode": [ + "33433057030847" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030839" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000009", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784143", + "shelfMark": [ + "Map Div. 84-146 v. 9" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 9" + }, + { + "type": "bf:Barcode", + "value": "33433057030839" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 9" + ], + "idBarcode": [ + "33433057030839" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030821" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000006", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784142", + "shelfMark": [ + "Map Div. 84-146 v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433057030821" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433057030821" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030813" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784141", + "shelfMark": [ + "Map Div. 84-146 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433057030813" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433057030813" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030805" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784140", + "shelfMark": [ + "Map Div. 84-146 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433057030805" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433057030805" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030797" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784139", + "shelfMark": [ + "Map Div. 84-146 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057030797" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057030797" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030789" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784138", + "shelfMark": [ + "Map Div. 84-146 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057030789" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057030789" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030771" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784137", + "shelfMark": [ + "Map Div. 84-146 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057030771" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057030771" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001844", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu philosophy", + "Vedanta" + ], + "publisherLiteral": [ + "Chaukhambā Vidyābhavana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." + ], + "shelfMark": [ + "*OKN 82-2276" + ], + "creatorLiteral": [ + "Bādarāyaṇa." + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 65007118" + ], + "seriesStatement": [ + "Vidyābhavara Saṃskrta granthamālā, 124" + ], + "contributorLiteral": [ + "Sastri, Hanumanadas, Swami.", + "Śaṅkarācārya." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "nypl:Bnumber", + "value": "10001844" + }, + { + "type": "bf:Lccn", + "value": "sa 65007118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201882" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201842" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636079011965, + "publicationStatement": [ + "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" + ], + "identifier": [ + "urn:bnum:10001844", + "urn:lccn:sa 65007118", + "urn:undefined:NNSZ00201882", + "urn:undefined:(WaOLN)nyp0201842" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu philosophy.", + "Vedanta." + ], + "titleDisplay": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." + ], + "uri": "b10001844", + "lccClassification": [ + "B132.V3 B22" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasī," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Brahmasūtra Śaṅkarbhāṣya." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10001844" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058617816" + ], + "physicalLocation": [ + "*OKN 82-2276" + ], + "shelfMark_sort": "a*OKN 82-002276", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784177", + "shelfMark": [ + "*OKN 82-2276" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "bf:Barcode", + "value": "33433058617816" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058617816" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003410", + "_score": null, + "_source": { + "extent": [ + "v. facsims." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Introd. in Arabic and English ; text in Arabic.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: v. 1, p. [313]-314.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic law" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ikhtilāf al-fuqahāʼ," + ], + "shelfMark": [ + "*OGM 84-702" + ], + "creatorLiteral": [ + "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72930954" + ], + "seriesStatement": [ + "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" + ], + "contributorLiteral": [ + "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "nypl:Bnumber", + "value": "10003410" + }, + { + "type": "bf:Lccn", + "value": "72930954" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303765" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203402" + } + ], + "uniformTitle": [ + "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636104747880, + "publicationStatement": [ + "Islām Ābād [1971-" + ], + "identifier": [ + "urn:bnum:10003410", + "urn:lccn:72930954", + "urn:undefined:NNSZ00303765", + "urn:undefined:(WaOLN)nyp0203402" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic law." + ], + "titleDisplay": [ + "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." + ], + "uri": "b10003410", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Islām Ābād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003410" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001944960" + ], + "physicalLocation": [ + "*OGM 84-702" + ], + "shelfMark_sort": "a*OGM 84-000702", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002358", + "shelfMark": [ + "*OGM 84-702" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "bf:Barcode", + "value": "33433001944960" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001944960" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003414", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Skandamahāpurāṇam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added t.p. in English or Hindi.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Manasukharāya Mora," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Skandamahāpurāṇam" + ], + "shelfMark": [ + "*OKOK 84-641" + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "73902099" + ], + "seriesStatement": [ + "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641" + }, + { + "type": "nypl:Bnumber", + "value": "10003414" + }, + { + "type": "bf:Lccn", + "value": "73902099" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303769" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203406" + } + ], + "uniformTitle": [ + "Puranas Skanda Purāṇa." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636124303127, + "publicationStatement": [ + "Kalakattā : Manasukharāya Mora, 1960-" + ], + "identifier": [ + "urn:bnum:10003414", + "urn:lccn:73902099", + "urn:undefined:NNSZ00303769", + "urn:undefined:(WaOLN)nyp0203406" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." + ], + "uri": "b10003414", + "lccClassification": [ + "PK3621 .S5 1960" + ], + "numItems": [ + 6 + ], + "numAvailable": [ + 6 + ], + "placeOfPublication": [ + "Kalakattā :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Skanda-Purāṇam." + ], + "tableOfContents": [ + "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10003414" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 6, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002364", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002363", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221407" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002362", + "shelfMark": [ + "*OKOK 84-641 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013221407" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013221407" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221399" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002365", + "shelfMark": [ + "*OKOK 84-641 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013221399" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433013221399" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221381" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002361", + "shelfMark": [ + "*OKOK 84-641 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433013221381" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433013221381" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221373" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002360", + "shelfMark": [ + "*OKOK 84-641 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013221373" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013221373" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003502", + "_score": null, + "_source": { + "extent": [ + "v. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Partly translations from German poetry (with German texts included).", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Liesma," + ], + "language": [ + { + "id": "lang:lav", + "label": "Latvian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dziesmiņas" + ], + "shelfMark": [ + "*QYN 82-2046" + ], + "creatorLiteral": [ + "Alunāns, Juris, 1832-1864." + ], + "createdString": [ + "1981" + ], + "seriesStatement": [ + "Literārā mantojuma mazā bibliotēka" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046" + }, + { + "type": "nypl:Bnumber", + "value": "10003502" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303857" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203494" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636091475285, + "publicationStatement": [ + "Riga : Liesma, 1981-" + ], + "identifier": [ + "urn:bnum:10003502", + "urn:undefined:NNSZ00303857", + "urn:undefined:(WaOLN)nyp0203494" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dziesmiņas / Juris Alunāns." + ], + "uri": "b10003502", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Riga :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "17 cm." + ] + }, + "sort": [ + "b10003502" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002421", + "shelfMark": [ + "*QYN 82-2046 Dala 1." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046 Dala 1." + }, + { + "type": "bf:Barcode", + "value": "33433013501782" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013501782" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003671", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- Politics and government", + "Egypt -- Politics and government -- 640-1882" + ], + "publisherLiteral": [ + "Maktabat al-Anjlū al-Miṣrīyah," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." + ], + "shelfMark": [ + "*OFP 82-1931" + ], + "creatorLiteral": [ + "Mājid, ʻAbd al-Munʻim." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "73960873" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10003671" + }, + { + "type": "bf:Lccn", + "value": "73960873" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304029" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203663" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636119319155, + "publicationStatement": [ + "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" + ], + "identifier": [ + "urn:bnum:10003671", + "urn:lccn:73960873", + "urn:undefined:NNSZ00304029", + "urn:undefined:(WaOLN)nyp0203663" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- Politics and government -- 640-1882." + ], + "titleDisplay": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." + ], + "uri": "b10003671", + "lccClassification": [ + "JQ3824 .M34 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Institutions et cérémonial des Fatimides en Égypte." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003671" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001937121" + ], + "physicalLocation": [ + "*OFP 82-1931" + ], + "shelfMark_sort": "a*OFP 82-001931", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002566", + "shelfMark": [ + "*OFP 82-1931" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "bf:Barcode", + "value": "33433001937121" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937121" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003719", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 2 & 4: pariṣkarta Puripanda.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Telugu literature", + "Telugu literature -- History and criticism" + ], + "publisherLiteral": [ + "Āndhrapradēś Sāhitya Akāḍami" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." + ], + "shelfMark": [ + "*OLC 83-35" + ], + "creatorLiteral": [ + "Subrahmanyam, G. V., 1935-" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "71912553" + ], + "contributorLiteral": [ + "Appalaswamy, Puripanda, 1904-", + "Āndhra Pradēśa Sāhitya Akāḍami." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35" + }, + { + "type": "nypl:Bnumber", + "value": "10003719" + }, + { + "type": "bf:Lccn", + "value": "71912553" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304078" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203711" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132209400, + "publicationStatement": [ + "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" + ], + "identifier": [ + "urn:bnum:10003719", + "urn:lccn:71912553", + "urn:undefined:NNSZ00304078", + "urn:undefined:(WaOLN)nyp0203711" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Telugu literature -- History and criticism." + ], + "titleDisplay": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." + ], + "uri": "b10003719", + "lccClassification": [ + "PL4780.05 S79" + ], + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Haidrābādu," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003719" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197476" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002605", + "shelfMark": [ + "*OLC 83-35 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433011197476" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433011197476" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197468" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002604", + "shelfMark": [ + "*OLC 83-35 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433011197468" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433011197468" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197450" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002603", + "shelfMark": [ + "*OLC 83-35 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433011197450" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433011197450" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197443" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002602", + "shelfMark": [ + "*OLC 83-35 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011197443" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433011197443" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197435" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002601", + "shelfMark": [ + "*OLC 83-35 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011197435" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433011197435" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004373", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994" + ], + "publisherLiteral": [ + "Karnāṭaka Sahakārī Prakāśana Mandira" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu." + ], + "shelfMark": [ + "*OLA 83-3417" + ], + "creatorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902119" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417" + }, + { + "type": "nypl:Bnumber", + "value": "10004373" + }, + { + "type": "bf:Lccn", + "value": "72902119" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304738" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204365" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636109940889, + "publicationStatement": [ + "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" + ], + "identifier": [ + "urn:bnum:10004373", + "urn:lccn:72902119", + "urn:undefined:NNSZ00304738", + "urn:undefined:(WaOLN)nyp0204365" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994." + ], + "titleDisplay": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." + ], + "uri": "b10004373", + "lccClassification": [ + "PL4659.P797 S7934" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004373" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003188", + "shelfMark": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417 Library has: Vol. 1, 3." + }, + { + "type": "bf:Barcode", + "value": "33433001707623" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001707623" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057523718" + ], + "physicalLocation": [ + "*OLA 83-341" + ], + "shelfMark_sort": "a*OLA 83-341 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858227", + "shelfMark": [ + "*OLA 83-341 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-341 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057523718" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057523718" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004816", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Martins Livreiro-Editor," + ], + "language": [ + { + "id": "lang:por", + "label": "Portuguese" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A outra face de J. Simões Lopes Neto" + ], + "shelfMark": [ + "JFK 84-291" + ], + "creatorLiteral": [ + "Lopes Neto, J. Simões (João Simões), 1865-1916." + ], + "createdString": [ + "1983" + ], + "idLccn": [ + "84227211" + ], + "contributorLiteral": [ + "Moreira, Angelo Pires." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291" + }, + { + "type": "nypl:Bnumber", + "value": "10004816" + }, + { + "type": "bf:Lccn", + "value": "84227211" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204806" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636069640817, + "publicationStatement": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" + ], + "identifier": [ + "urn:bnum:10004816", + "urn:lccn:84227211", + "urn:undefined:(WaOLN)nyp0204806" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." + ], + "uri": "b10004816", + "lccClassification": [ + "PQ9697.L7223 A6 1983" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004816" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003418559" + ], + "physicalLocation": [ + "JFK 84-291" + ], + "shelfMark_sort": "aJFK 84-291 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003383", + "shelfMark": [ + "JFK 84-291 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433003418559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433003418559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004947", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Geografi︠i︡a.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 170.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1926 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-221 no. 8" + ], + "creatorLiteral": [ + "Räshad, Gafyr." + ], + "createdString": [ + "1926" + ], + "dateStartYear": [ + 1926 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-221 no. 8" + }, + { + "type": "nypl:Bnumber", + "value": "10004947" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406058" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204937" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403668, + "publicationStatement": [ + "Baqï : Azärnäshr, 1926-" + ], + "identifier": [ + "urn:bnum:10004947", + "urn:undefined:NNSZ00406058", + "urn:undefined:(WaOLN)nyp0204937" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1926" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Gafyr Räshad." + ], + "uri": "b10004947", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Geografi︠i︡a." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10004947" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105673499" + ], + "physicalLocation": [ + "*ZO-221" + ], + "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30081242", + "shelfMark": [ + "*ZO-221 11 Azerbaijani monographs" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005127", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 151.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1928 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-216 no. 15" + ], + "creatorLiteral": [ + "Ivanov, G." + ], + "createdString": [ + "1928" + ], + "dateStartYear": [ + 1928 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-216 no. 15" + }, + { + "type": "nypl:Bnumber", + "value": "10005127" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406243" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205116" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403606, + "publicationStatement": [ + "Baqï : Azärnäshr, 1928-" + ], + "identifier": [ + "urn:bnum:10005127", + "urn:undefined:NNSZ00406243", + "urn:undefined:(WaOLN)nyp0205116" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1928" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." + ], + "uri": "b10005127", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Nachalʹnyĭ kurs geografii." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005127" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005211", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Khaos.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 586.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1929 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Xaos [microform]" + ], + "shelfMark": [ + "*ZO-220 no. 9" + ], + "creatorLiteral": [ + "Shirvanzade, 1858-1935." + ], + "createdString": [ + "1929" + ], + "dateStartYear": [ + 1929 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10005211" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406328" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205200" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636144501921, + "publicationStatement": [ + "Bagï : Azärnäshr, 1929" + ], + "identifier": [ + "urn:bnum:10005211", + "urn:undefined:NNSZ00406328", + "urn:undefined:(WaOLN)nyp0205200" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1929" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts." + ], + "titleDisplay": [ + "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." + ], + "uri": "b10005211", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bagï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Khaos." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005211" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105674059" + ], + "physicalLocation": [ + "*ZO-220" + ], + "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30087469", + "shelfMark": [ + "*ZO-220 collection of 10 titles (monographs)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 collection of 10 titles (monographs)" + }, + { + "type": "bf:Barcode", + "value": "33433105674059" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "enumerationChronology": [ + "collection of 10 titles (monographs)" + ], + "idBarcode": [ + "33433105674059" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005860", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Swahili.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Swahili language", + "Swahili language -- Texts" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:swa", + "label": "Swahili" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "shelfMark": [ + "Sc Ser.-N .Z288" + ], + "creatorLiteral": [ + "Zanzibar." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-N .Z288" + }, + { + "type": "nypl:Bnumber", + "value": "10005860" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507074" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205850" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636116169694, + "publicationStatement": [ + "[Zanzibar : s.n., 1980- ]" + ], + "identifier": [ + "urn:bnum:10005860", + "urn:undefined:NNSZ00507074", + "urn:undefined:(WaOLN)nyp0205850" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Swahili language -- Texts." + ], + "titleDisplay": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "uri": "b10005860", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Zanzibar :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Kitabu cha 1-9." + ], + "dimensions": [ + "13-31 cm." + ] + }, + "sort": [ + "b10005860" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942241", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-N .Z288 Kituba cha 1-9" + ], + "identifierV2": [ + { + "value": "Sc Ser.-N .Z288 Kituba cha 1-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030859007" + } + ], + "physicalLocation": [ + "Sc Ser.-N .Z288" + ], + "enumerationChronology": [ + "Kituba cha 1-9" + ], + "identifier": [ + "urn:barcode:33433030859007" + ], + "idBarcode": [ + "33433030859007" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005862", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editor: Gerald A. McWorter.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "African Americans", + "African Americans -- Study and teaching", + "African Americans -- Study and teaching -- Congresses", + "Black people", + "Black people -- Study and teaching", + "Black people -- Study and teaching -- Congresses" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Afro-American Studies and Research Program, University of Illinois" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1983 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Proceedings" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1983" + ], + "creatorLiteral": [ + "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "McWorter, Gerald A." + ], + "dateStartYear": [ + 1983 + ], + "idOclc": [ + "NYPG005000004-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .N3674" + }, + { + "type": "nypl:Bnumber", + "value": "10005862" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507076" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205852" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "identifier": [ + { + "type": "bf:shelfMark", + "value": "Sc Ser.-M .N3674" + } + ], + "physicalLocation": [ + "Sc Ser.-M .N3674" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "uri": "h1144093" + } + ], + "updatedAt": 1709752718868, + "publicationStatement": [ + "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .N3674", + "urn:bnum:10005862", + "urn:oclc:NYPG005000004-B", + "urn:identifier:NNSZ00507076", + "urn:identifier:(WaOLN)nyp0205852" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "African Americans -- Study and teaching -- Congresses.", + "Black people -- Study and teaching -- Congresses." + ], + "titleDisplay": [ + "Proceedings / National Council for Black Studies, 6th annual national conference." + ], + "uri": "b10005862", + "placeOfPublication": [ + "Urbana, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005862" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "no. 3-5" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "no. 1-2" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005898", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Creole dialects, French", + "Creole dialects, French -- Haiti", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" + ], + "publisherLiteral": [ + "I.L.A. de Port-au-Prince," + ], + "language": [ + { + "id": "lang:crp", + "label": "Creoles and Pidgins (Other)" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Leson kreyòl pou etranje ki pale franse \\" + ], + "shelfMark": [ + "Sc Ser.-M .M468" + ], + "creatorLiteral": [ + "Mirville, Ernst." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "Collection Coucoville", + "Siwolin; \\t.2" + ], + "contributorLiteral": [ + "Institut de linguistique appliquée de Port-au-Prince." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .M468" + }, + { + "type": "nypl:Bnumber", + "value": "10005898" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507113" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205888" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1144290", + "shelfMark": [ + "Sc Ser.-M .M468" + ] + } + ], + "updatedAt": 1636113236627, + "publicationStatement": [ + "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" + ], + "identifier": [ + "urn:bnum:10005898", + "urn:undefined:NNSZ00507113", + "urn:undefined:(WaOLN)nyp0205888" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." + ], + "titleDisplay": [ + "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." + ], + "uri": "b10005898", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Port-au-Prince :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005898" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900486", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .M468 t. 2, ptie 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .M468 t. 2, ptie 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017863220" + } + ], + "physicalLocation": [ + "Sc Ser.-M .M468" + ], + "enumerationChronology": [ + "t. 2, ptie 1" + ], + "identifier": [ + "urn:barcode:33433017863220" + ], + "idBarcode": [ + "33433017863220" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005907", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Discography: p. 115-122.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- History and criticism" + ], + "publisherLiteral": [ + "Producciones Don Pedro," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "En torno al jazz" + ], + "shelfMark": [ + "Sc Ser.-L .V354" + ], + "creatorLiteral": [ + "Vélez, Ana." + ], + "createdString": [ + "1978" + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V354" + }, + { + "type": "nypl:Bnumber", + "value": "10005907" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507122" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205897" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636093384929, + "publicationStatement": [ + "San Juan, P.R. : Producciones Don Pedro, 1978-" + ], + "identifier": [ + "urn:bnum:10005907", + "urn:undefined:NNSZ00507122", + "urn:undefined:(WaOLN)nyp0205897" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jazz -- History and criticism." + ], + "titleDisplay": [ + "En torno al jazz / Ana Vélez." + ], + "uri": "b10005907", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "San Juan, P.R. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10005907" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900496", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 2" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017895651" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 2" + ], + "identifier": [ + "urn:barcode:33433017895651" + ], + "idBarcode": [ + "33433017895651" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900495", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030890481" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 1" + ], + "identifier": [ + "urn:barcode:33433030890481" + ], + "idBarcode": [ + "33433030890481" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006011", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tem language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tem" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Der-Houssikian, Haig." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .T425" + }, + { + "type": "nypl:Bnumber", + "value": "10006011" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507231" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206003" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132578775, + "publicationStatement": [ + "Brattleboro, vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006011", + "urn:undefined:NNSZ00507231", + "urn:undefined:(WaOLN)nyp0206003" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tem language." + ], + "titleDisplay": [ + "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Communication and culture handbook/by Haig Der-Houssikian.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i23169346", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .T425", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076233265" + } + ], + "physicalLocation": [ + "Sc Ser.-M .T425" + ], + "identifier": [ + "urn:barcode:33433076233265" + ], + "idBarcode": [ + "33433076233265" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .T000425" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006012", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kabre language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kabiye" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Experiment in International Living.", + "Jassor, Essogoye.", + "Sedlak, Philip Alan Stephen, 1939-" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc F 84-135" + }, + { + "type": "nypl:Bnumber", + "value": "10006012" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507232" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206004" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108841395, + "publicationStatement": [ + "Brattleboro, Vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006012", + "urn:undefined:NNSZ00507232", + "urn:undefined:(WaOLN)nyp0206004" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kabre language." + ], + "titleDisplay": [ + "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, Vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900585", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "identifierV2": [ + { + "value": "Sc F 84-135", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036872368" + } + ], + "physicalLocation": [ + "Sc F 84-135" + ], + "identifier": [ + "urn:barcode:33433036872368" + ], + "idBarcode": [ + "33433036872368" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 84-000135" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006018", + "_score": null, + "_source": { + "extent": [ + "v. : ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Corrections to volume I\": v. 2, p. 69.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iota Phi Lambda" + ], + "publisherLiteral": [ + "The Sorority," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1959 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A History of Iota Phi Lambda Sorority." + ], + "shelfMark": [ + "Sc Ser.-M .H592" + ], + "createdString": [ + "1959" + ], + "contributorLiteral": [ + "Greene, Ethel K.", + "Sims, Sarah B." + ], + "dateStartYear": [ + 1959 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .H592" + }, + { + "type": "nypl:Bnumber", + "value": "10006018" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507238" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206010" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1142937", + "shelfMark": [ + "Sc Ser.-M .H592" + ] + } + ], + "updatedAt": 1636069378411, + "publicationStatement": [ + "Washington : The Sorority, 1959-" + ], + "identifier": [ + "urn:bnum:10006018", + "urn:undefined:NNSZ00507238", + "urn:undefined:(WaOLN)nyp0206010" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iota Phi Lambda." + ], + "titleDisplay": [ + "A History of Iota Phi Lambda Sorority." + ], + "uri": "b10006018", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Washington :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746595", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061038323" + } + ], + "physicalLocation": [ + "Sc Ser.-M .H592" + ], + "enumerationChronology": [ + "v. 1, 2 (1928-19, 1959-69)" + ], + "identifier": [ + "urn:barcode:33433061038323" + ], + "idBarcode": [ + "33433061038323" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006159", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Civil rights", + "Civil rights -- United States", + "Violence", + "Violence -- United States", + "African Americans", + "African Americans -- Civil rights" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Foundation for Negro Affairs" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Law and disorder a research position paper" + ], + "shelfMark": [ + "Sc Micro R-4202, no. 16" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro R-4202, no. 16" + }, + { + "type": "nypl:Bnumber", + "value": "10006159" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000311-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507384" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206150" + } + ], + "idOclc": [ + "NYPG005000311-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689883301321, + "publicationStatement": [ + "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" + ], + "identifier": [ + "urn:bnum:10006159", + "urn:oclc:NYPG005000311-B", + "urn:undefined:NNSZ00507384", + "urn:undefined:(WaOLN)nyp0206150" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Civil rights -- United States.", + "Violence -- United States.", + "African Americans -- Civil rights." + ], + "titleDisplay": [ + "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." + ], + "uri": "b10006159", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Philadelphia, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 x 28 cm." + ] + }, + "sort": [ + "b10006159" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i24023455", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4202" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4202", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433059035760" + } + ], + "physicalLocation": [ + "Sc Micro R-4202" + ], + "identifier": [ + "urn:barcode:33433059035760" + ], + "idBarcode": [ + "33433059035760" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-004202" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006540", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 issued without edition statement has imprint date 1972.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Germany", + "Germany -- History", + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945", + "World War, 1939-1945 -- Germany" + ], + "publisherLiteral": [ + "Selbstverlag," + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Was geschah nach 1945?" + ], + "shelfMark": [ + "JFK 84-184" + ], + "creatorLiteral": [ + "Roth, Heinz." + ], + "createdString": [ + "1970" + ], + "seriesStatement": [ + "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", + "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184" + }, + { + "type": "nypl:Bnumber", + "value": "10006540" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507771" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206529" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636143161690, + "publicationStatement": [ + "Odenhausen/Lumda : Selbstverlag, [197-?-" + ], + "identifier": [ + "urn:bnum:10006540", + "urn:undefined:NNSZ00507771", + "urn:undefined:(WaOLN)nyp0206529" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945 -- Germany." + ], + "titleDisplay": [ + "Was geschah nach 1945? / Heinz Roth." + ], + "uri": "b10006540", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Odenhausen/Lumda :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Was geschah nach neunzehnhundertfünfundvierzig." + ], + "tableOfContents": [ + "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006540" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003841073" + ], + "physicalLocation": [ + "JFK 84-184" + ], + "shelfMark_sort": "aJFK 84-184 v. 000001-2", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003927", + "shelfMark": [ + "JFK 84-184 v. 1-2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184 v. 1-2" + }, + { + "type": "bf:Barcode", + "value": "33433003841073" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1-2" + ], + "idBarcode": [ + "33433003841073" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006622", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Caldas (Colombia : Department)", + "Caldas (Colombia : Department) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Biblioteca de Escritores Caldenses" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Historia del Gran Caldas" + ], + "shelfMark": [ + "HDK 84-1693" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Ríos Tobón, Ricardo de los." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693" + }, + { + "type": "nypl:Bnumber", + "value": "10006622" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000779-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507853" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206611" + } + ], + "idOclc": [ + "NYPG005000779-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1682562721628, + "publicationStatement": [ + "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" + ], + "identifier": [ + "urn:bnum:10006622", + "urn:oclc:NYPG005000779-B", + "urn:undefined:NNSZ00507853", + "urn:undefined:(WaOLN)nyp0206611" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Caldas (Colombia : Department) -- History." + ], + "titleDisplay": [ + "Historia del Gran Caldas / Ricardo de los Ríos Tobón." + ], + "uri": "b10006622", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Manizales, Colombia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Origenes y colonización hasta 1850." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006622" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097665214" + ], + "physicalLocation": [ + "HDK 84-1693" + ], + "m2CustomerCode": [ + "XA" + ], + "shelfMark_sort": "aHDK 84-1693 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746647", + "shelfMark": [ + "HDK 84-1693 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433097665214" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433097665214" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006687", + "_score": null, + "_source": { + "extent": [ + "v. : ill., ports, ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "publisherLiteral": [ + "Bókaútgáfan Skjaldborg," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-217" + ], + "creatorLiteral": [ + "Eiður Guðmundsson, 1888-1984." + ], + "createdString": [ + "1982" + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217" + }, + { + "type": "nypl:Bnumber", + "value": "10006687" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507920" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206676" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Akureyri : Bókaútgáfan Skjaldborg, 1982-" + ], + "identifier": [ + "urn:bnum:10006687", + "urn:undefined:NNSZ00507920", + "urn:undefined:(WaOLN)nyp0206676" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "titleDisplay": [ + "Ritsafn / Eidur Gudmundsson Púfnav;ollum." + ], + "uri": "b10006687", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Akureyri :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10006687" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069567" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003946", + "shelfMark": [ + "JFL 84-217 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069567" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069567" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069559" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003945", + "shelfMark": [ + "JFL 84-217 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006688", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iceland", + "Iceland -- Economic conditions", + "Iceland -- History", + "Iceland -- Social conditions" + ], + "publisherLiteral": [ + "Mál og Menning," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-216" + ], + "creatorLiteral": [ + "Sverrir Kristjánsson, 1908-" + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216" + }, + { + "type": "nypl:Bnumber", + "value": "10006688" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206677" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Reykjavík : Mál og Menning, 1981-" + ], + "identifier": [ + "urn:bnum:10006688", + "urn:undefined:NNSZ00507921", + "urn:undefined:(WaOLN)nyp0206677" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iceland -- Economic conditions.", + "Iceland -- History.", + "Iceland -- Social conditions." + ], + "titleDisplay": [ + "Ritsafn / Sverrir Kristjánsson." + ], + "uri": "b10006688", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Reykjavík :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10006688" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069542" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003948", + "shelfMark": [ + "JFL 84-216 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069542" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069542" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069534" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003947", + "shelfMark": [ + "JFL 84-216 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069534" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069534" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006705", + "_score": null, + "_source": { + "extent": [ + "v. : ill. (some col.);" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vernacular architecture", + "Vernacular architecture -- Greece", + "Architecture, Domestic", + "Architecture, Domestic -- Greece" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ekdot. Oikos \"Melissa,\"" + ], + "language": [ + { + "id": "lang:gre", + "label": "Greek, Modern (1453- )" + } + ], + "numItemsTotal": [ + 7 + ], + "createdYear": [ + 1982 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hellēnikē paradosiakē architektonikē" + ], + "shelfMark": [ + "3-MQW+ 84-2551" + ], + "numItemVolumesParsed": [ + 7 + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83177376" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Philippidēs, Dēmētrēs." + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551" + }, + { + "type": "nypl:Bnumber", + "value": "10006705" + }, + { + "type": "bf:Lccn", + "value": "83177376" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000864-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206694" + } + ], + "idOclc": [ + "NYPG005000864-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1683688426081, + "publicationStatement": [ + "Athēna : Ekdot. Oikos \"Melissa,\" c1982-" + ], + "identifier": [ + "urn:bnum:10006705", + "urn:lccn:83177376", + "urn:oclc:NYPG005000864-B", + "urn:undefined:(WaOLN)nyp0206694" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vernacular architecture -- Greece.", + "Architecture, Domestic -- Greece." + ], + "titleDisplay": [ + "Hellēnikē paradosiakē architektonikē / symvoulos kai syntonistēs tēs ekdosēs, Dēmētrēs Philippidēs ; [phōtographies, V. Voutsas]." + ], + "uri": "b10006705", + "lccClassification": [ + "NA1091 .H44 1982" + ], + "numItems": [ + 7 + ], + "numAvailable": [ + 7 + ], + "placeOfPublication": [ + "Athēna" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "t. 1. Anatoliko Aigaio. Sporades. Heptanēsa -- t. 2. Kyklades -- t. 3. Dōdekanēsa-Krētē -- t. 4. Peloponnēsos I -- t. 5 Peloponnesos II, Sterea Hellada -- t. 6. Thessalia-Ēpeiros -- t. 7. Makedonia I." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10006705" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 7, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160679" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 7-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746675", + "shelfMark": [ + "3-MQW+ 84-2551 v. 7" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 7-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160661" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746674", + "shelfMark": [ + "3-MQW+ 84-2551 v. 6" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160653" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746673", + "shelfMark": [ + "3-MQW+ 84-2551 v. 5" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160646" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000004", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746672", + "shelfMark": [ + "3-MQW+ 84-2551 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433105160646" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433105160646" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160638" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000003", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746671", + "shelfMark": [ + "3-MQW+ 84-2551 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433105160638" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433105160638" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160620" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000002", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746670", + "shelfMark": [ + "3-MQW+ 84-2551 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433105160620" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433105160620" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160612" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000001", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746669", + "shelfMark": [ + "3-MQW+ 84-2551 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433105160612" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433105160612" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006715", + "_score": null, + "_source": { + "extent": [ + "v. : ill. (some ed.);" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on spine: 2222.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Austria", + "Austria -- Relations", + "Austria -- Relations -- United States", + "United States", + "United States -- Relations", + "United States -- Relations -- Austria" + ], + "publisherLiteral": [ + "The author," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Quadruple 2" + ], + "shelfMark": [ + "ICM (Austria) 85-584" + ], + "creatorLiteral": [ + "Humes, John P." + ], + "createdString": [ + "1970" + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "ICM (Austria) 85-584" + }, + { + "type": "nypl:Bnumber", + "value": "10006715" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507948" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206704" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636124417162, + "publicationStatement": [ + "[S.l. : The author, 197-]" + ], + "identifier": [ + "urn:bnum:10006715", + "urn:undefined:NNSZ00507948", + "urn:undefined:(WaOLN)nyp0206704" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Austria -- Relations -- United States.", + "United States -- Relations -- Austria." + ], + "titleDisplay": [ + "Quadruple 2 / by John P. Humes." + ], + "uri": "b10006715", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "2222.", + "Quadruple two." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006715" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433090390752" + ], + "physicalLocation": [ + "ICM (Austria) 85-584" + ], + "shelfMark_sort": "aICM (Austria) 85-584 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14746681", + "shelfMark": [ + "ICM (Austria) 85-584 v. 2" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10007240", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Imprint on cover: Tañcāvūr Mahārājā Carapōjiyiṉ Caracuvati Makāl Nūl Nilaiyam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Glossaries, vocabularies, etc" + ], + "publisherLiteral": [ + "Tañcai Caracuvati Makāl Nūl Nilaiya Nirvākak Kuḻu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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ṉ" + ], + "shelfMark": [ + "*OLB 84-3259" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "77902870" + ], + "seriesStatement": [ + "Tañcai Caracuvati Makāl veḷiyīṭu; 156" + ], + "contributorLiteral": [ + "Chokkalingam." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-3259" + }, + { + "type": "nypl:Bnumber", + "value": "10007240" + }, + { + "type": "bf:Lccn", + "value": "77902870" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00508482" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0207225" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1653404639464, + "publicationStatement": [ + "[Tañcāvūr] : Tañcai Caracuvati Makāl Nūl Nilaiya Nirvākak Kuḻu, 1975." + ], + "identifier": [ + "urn:bnum:10007240", + "urn:lccn:77902870", + "urn:undefined:NNSZ00508482", + "urn:undefined:(WaOLN)nyp0207225" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Glossaries, vocabularies, etc." + ], + "titleDisplay": [ + "Āciriya nikaṇṭu : cēntaṉ tivākaram, piṅkala nikaṇṭu, cūṭāmaṇi, kayātaram ākiya nikaṇṭukaḷiṉ oppumaip pakutikaḷuṭaṉ / patippāciriyar Vī. Cokkaliṅkam." + ], + "uri": "b10007240", + "lccClassification": [ + "PL4757 .A5" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Tañcāvūr]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10007240" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061354662" + ], + "shelfMark_sort": "a*OLB 84-003259", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785014", + "shelfMark": [ + "*OLB 84-3259" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433061354662" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061354662" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061303693" + ], + "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" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785013", + "shelfMark": [ + "*OLB 84-3259" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-3259" + }, + { + "type": "bf:Barcode", + "value": "33433061303693" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061303693" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10007516", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- History", + "Egypt -- History -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Mu'assasah al-Àrabīyah lil-Dirāsāt wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 5 + ], + "createdYear": [ + 1974 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Qiṣṣat thawrat 23 Yūliyū" + ], + "shelfMark": [ + "*OFP 84-3195" + ], + "numItemVolumesParsed": [ + 5 + ], + "creatorLiteral": [ + "Ḥamrūsh, Aḥmad." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "76960179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 84-3195" + }, + { + "type": "nypl:Bnumber", + "value": "10007516" + }, + { + "type": "bf:Lccn", + "value": "76960179" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005001687-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00508761" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0207500" + } + ], + "idOclc": [ + "NYPG005001687-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675263928305, + "publicationStatement": [ + "Bayrūt : al-Mu'assasah al-Àrabīyah lil-Dirāsāt wa-al-Nashr, 1974-" + ], + "identifier": [ + "urn:bnum:10007516", + "urn:lccn:76960179", + "urn:oclc:NYPG005001687-B", + "urn:undefined:NNSZ00508761", + "urn:undefined:(WaOLN)nyp0207500" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- History -- 20th century." + ], + "titleDisplay": [ + "Qiṣṣat thawrat 23 Yūliyū / Aḥmad Ḥamrūsh." + ], + "uri": "b10007516", + "lccClassification": [ + "DT107.825 .H35" + ], + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Juz' 1. Miṣr wa-al-Àskarīyūn. -- Juz' 2. Mujtamà Jamāl Àbd al-Nāṣir. -- Juz' 3. Àbd al-Nāṣir wa-al-Àrab. -- Juz' 4. Shuhūd thawrat Yūliyū.--Juz' 5. Kharīf Àbd al-Nāṣir." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10007516" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i10004361", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 84-3195 v. 5" + ], + "identifierV2": [ + { + "value": "*OFP 84-3195 v. 5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005566249" + } + ], + "enumerationChronology": [ + "v. 5" + ], + "physicalLocation": [ + "*OFP 84-3195" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005566249" + ], + "idBarcode": [ + "33433005566249" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 84-3195 v. 000005" + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10004360", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 84-3195 v. 4" + ], + "identifierV2": [ + { + "value": "*OFP 84-3195 v. 4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005566231" + } + ], + "enumerationChronology": [ + "v. 4" + ], + "physicalLocation": [ + "*OFP 84-3195" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005566231" + ], + "idBarcode": [ + "33433005566231" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 84-3195 v. 000004" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10004359", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 84-3195 v. 3" + ], + "identifierV2": [ + { + "value": "*OFP 84-3195 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005566223" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OFP 84-3195" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005566223" + ], + "idBarcode": [ + "33433005566223" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 84-3195 v. 000003" + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10004358", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 84-3195 v. 2" + ], + "identifierV2": [ + { + "value": "*OFP 84-3195 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005566215" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OFP 84-3195" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005566215" + ], + "idBarcode": [ + "33433005566215" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 84-3195 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10004357", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 84-3195 v. 1" + ], + "identifierV2": [ + { + "value": "*OFP 84-3195 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005566207" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OFP 84-3195" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005566207" + ], + "idBarcode": [ + "33433005566207" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 84-3195 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10007874", + "_score": null, + "_source": { + "extent": [ + "v. : ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of: Towards one Nigeria.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nigeria", + "Nigeria -- History", + "Nigeria -- History -- Civil War, 1967-1970", + "Nigeria -- History -- Civil War, 1967-1970 -- Sources" + ], + "publisherLiteral": [ + "Federal Ministry of Information," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vers l'unité du Nigèria." + ], + "shelfMark": [ + "Sc Ser.-L .V377" + ], + "createdString": [ + "1967" + ], + "contributorLiteral": [ + "Nigeria. Federal Ministry of Information." + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V377" + }, + { + "type": "nypl:Bnumber", + "value": "10007874" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0207856" + } + ], + "uniformTitle": [ + "Towards one Nigeria. French" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636140076962, + "publicationStatement": [ + "[Lagos : Federal Ministry of Information, [1967?-]" + ], + "identifier": [ + "urn:bnum:10007874", + "urn:undefined:(WaOLN)nyp0207856" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nigeria -- History -- Civil War, 1967-1970 -- Sources." + ], + "titleDisplay": [ + "Vers l'unité du Nigèria." + ], + "uri": "b10007874", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Lagos :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Towards one Nigeria." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10007874" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900848", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V377 v. 3" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V377 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433034815294" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V377" + ], + "enumerationChronology": [ + "v. 3" + ], + "identifier": [ + "urn:barcode:33433034815294" + ], + "idBarcode": [ + "33433034815294" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V377 v. 000003" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008327", + "_score": null, + "_source": { + "extent": [ + "v. : ill ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editors vary.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Folk literature, Kannada", + "Folk literature, Kannada -- History and criticism" + ], + "publisherLiteral": [ + "Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jānapada sāhityadarśana" + ], + "shelfMark": [ + "*OLA 83-2636" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75904046" + ], + "seriesStatement": [ + "Jānapada sammēḷana smaraṇe ; 1-2, 4" + ], + "contributorLiteral": [ + "Hiremath, Rudrayya Chandrayya, 1922-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636" + }, + { + "type": "nypl:Bnumber", + "value": "10008327" + }, + { + "type": "bf:Lccn", + "value": "75904046" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00609733" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208308" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108824394, + "publicationStatement": [ + "Dhāravāḍa : Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya, 1974-" + ], + "identifier": [ + "urn:bnum:10008327", + "urn:lccn:75904046", + "urn:undefined:NNSZ00609733", + "urn:undefined:(WaOLN)nyp0208308" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Folk literature, Kannada -- History and criticism." + ], + "titleDisplay": [ + "Jānapada sāhityadarśana / sampādakaru Ār. Si. Hirēmaṭha." + ], + "uri": "b10008327", + "lccClassification": [ + "PL4654 .J3" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Dhāravāḍa :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10008327" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013119130" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004641", + "shelfMark": [ + "*OLA 83-2636 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013119130" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013119130" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005544246" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004640", + "shelfMark": [ + "*OLA 83-2636 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433005544246" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433005544246" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005544238" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004639", + "shelfMark": [ + "*OLA 83-2636 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005544238" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433005544238" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008347", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: v.2, p. 375.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Qurʼan", + "Qurʼan -- Commentaries" + ], + "publisherLiteral": [ + "[s. n.]," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aḍwāʼ ʻalá mutashābihāt al-Qurʼān ; yaḥtawī ʻalá 1600 suʼāl wa-jawāb" + ], + "shelfMark": [ + "*OGDM 82-3193" + ], + "creatorLiteral": [ + "Yāsīn, Khalīl." + ], + "createdString": [ + "1969" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGDM 82-3193" + }, + { + "type": "nypl:Bnumber", + "value": "10008347" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00609754" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208328" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636071205334, + "publicationStatement": [ + "Bayrūt : [s. n.], 1969-" + ], + "identifier": [ + "urn:bnum:10008347", + "urn:undefined:NNSZ00609754", + "urn:undefined:(WaOLN)nyp0208328" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Qurʼan -- Commentaries." + ], + "titleDisplay": [ + "Aḍwāʼ ʻalá mutashābihāt al-Qurʼān ; yaḥtawī ʻalá 1600 suʼāl wa-jawāb / bi-qalam Khalīl Yāsīn." + ], + "uri": "b10008347", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10008347" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005577105" + ], + "physicalLocation": [ + "*OGDM 82-3193" + ], + "shelfMark_sort": "a*OGDM 82-003193", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004653", + "shelfMark": [ + "*OGDM 82-3193" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGDM 82-3193" + }, + { + "type": "bf:Barcode", + "value": "33433005577105" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005577105" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008408", + "_score": null, + "_source": { + "extent": [ + "v. 1-5 : ill., maps ;" + ], + "note": [ + { + "noteType": "Note", + "label": "One folded map inserted in v. 1; 3 folded maps inserted in v. 3; one folded map inserted in v. 4.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "10 folded maps accompany atlas; issued together in a case.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Errata slip inserted in v. 3.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Excavations (Archaeology)", + "Excavations (Archaeology) -- Ingal", + "Niger", + "Niger -- Antiquities", + "Niger -- Antiquities -- Maps", + "Ingal (Niger)", + "Ingal (Niger) -- Antiquities", + "Ingal (Niger) -- Antiquities -- Maps", + "Teguidda-n-Tessoumt (Niger)", + "Teguidda-n-Tessoumt (Niger) -- Antiquities", + "Teguidda-n-Tessoumt (Niger) -- Antiquities -- Maps", + "Ingal Region (Niger)", + "Ingal Region (Niger) -- Antiquities" + ], + "publisherLiteral": [ + "Institut de recherches en sciences humaines" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "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" + ], + "createdString": [ + "1983" + ], + "idLccn": [ + "84121246" + ], + "seriesStatement": [ + "Etudes nigériennes ; no 47-52" + ], + "contributorLiteral": [ + "Grébénart, Danilo.", + "Paris, François, 1946-", + "Poncet, Yveline.", + "Université de Niamey. Institut de recherches en sciences humaines." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc F 87-35" + }, + { + "type": "nypl:Bnumber", + "value": "10008408" + }, + { + "type": "bf:Isbn", + "value": "2859210601 (v. 4)" + }, + { + "type": "bf:Isbn", + "value": "9782859210601 (v. 4)" + }, + { + "type": "bf:Lccn", + "value": "84121246" + }, + { + "type": "nypl:Oclc", + "value": "12840091" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)12840091" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "285920482 (v. 1)" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "285920490 (v. 2)" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "285920504 (v. 3)" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "285921061X (v. 5)" + } + ], + "idOclc": [ + "12840091" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1652373102187, + "publicationStatement": [ + "Niamey : Institut de recherches en sciences humaines, 1983-<1992>" + ], + "identifier": [ + "urn:bnum:10008408", + "urn:isbn:2859210601 (v. 4)", + "urn:isbn:9782859210601 (v. 4)", + "urn:lccn:84121246", + "urn:oclc:12840091", + "urn:undefined:(OCoLC)12840091", + "b10008408#1.0004", + "b10008408#1.0005", + "b10008408#1.0006", + "b10008408#1.0007", + "urn:isbn:285920482 (v. 1)", + "urn:isbn:285920490 (v. 2)", + "urn:isbn:285920504 (v. 3)", + "urn:isbn:285921061X (v. 5)" + ], + "idIsbn": [ + "2859210601 (v. 4)", + "9782859210601 (v. 4)" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Excavations (Archaeology) -- Ingal.", + "Niger -- Antiquities -- Maps.", + "Ingal (Niger) -- Antiquities.", + "Ingal (Niger) -- Antiquities -- Maps.", + "Teguidda-n-Tessoumt (Niger) -- Antiquities.", + "Teguidda-n-Tessoumt (Niger) -- Antiquities -- Maps.", + "Ingal Region (Niger) -- Antiquities." + ], + "titleDisplay": [ + "La Région d'In Gall--Tegidda n Tesemt (Niger) : programme archéologique d'urgence, 1977-1981." + ], + "uri": "b10008408", + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Niamey" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "no. 47. Atlas / conçu et réalisé par Yveline Poncet -- 1. (no. 48) Introduction : méthodologie, environnements -- 2. (no. 49) Le Néolithique final et les débuts de la métallurgie / Danilo Grébénart -- 3. (no. 50) Les sépultures, du Néolithique final à l'islam / François Paris -- 4. (no. 51) Azelik-Takadda et l'implantation sédentaire Médiévale -- 5. (no. 52) Les populations actuelles." + ], + "idIsbn_clean": [ + "28592106014", + "97828592106014" + ], + "dimensions": [ + "24 cm. +" + ] + }, + "sort": [ + "b10008408" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i12540453", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 87-35 t. 4-5" + ], + "identifierV2": [ + { + "value": "Sc F 87-35 t. 4-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057875258" + } + ], + "physicalLocation": [ + "Sc F 87-35" + ], + "enumerationChronology": [ + "t. 4-5" + ], + "identifier": [ + "urn:barcode:33433057875258" + ], + "idBarcode": [ + "33433057875258" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 87-35 t. 4-000005" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i12540452", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 87-35 t. 3" + ], + "identifierV2": [ + { + "value": "Sc F 87-35 t. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057875068" + } + ], + "physicalLocation": [ + "Sc F 87-35" + ], + "enumerationChronology": [ + "t. 3" + ], + "identifier": [ + "urn:barcode:33433057875068" + ], + "idBarcode": [ + "33433057875068" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 87-35 t. 000003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i12540451", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 87-35 t. 2" + ], + "identifierV2": [ + { + "value": "Sc F 87-35 t. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057875050" + } + ], + "physicalLocation": [ + "Sc F 87-35" + ], + "enumerationChronology": [ + "t. 2" + ], + "identifier": [ + "urn:barcode:33433057875050" + ], + "idBarcode": [ + "33433057875050" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 87-35 t. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900890", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 87-35 t. 1" + ], + "identifierV2": [ + { + "value": "Sc F 87-35 t. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057875217" + } + ], + "physicalLocation": [ + "Sc F 87-35" + ], + "enumerationChronology": [ + "t. 1" + ], + "identifier": [ + "urn:barcode:33433057875217" + ], + "idBarcode": [ + "33433057875217" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 87-35 t. 000001" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i17447322", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 87-35 Atlas" + ], + "identifierV2": [ + { + "value": "Sc F 87-35 Atlas", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036872814" + } + ], + "physicalLocation": [ + "Sc F 87-35" + ], + "enumerationChronology": [ + "Atlas" + ], + "identifier": [ + "urn:barcode:33433036872814" + ], + "idBarcode": [ + "33433036872814" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 87-35 Atlas" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008416", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"No 71.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: t. 1, p. 288.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "French language", + "French language -- Study and teaching", + "French language -- Study and teaching -- Senegal" + ], + "publisherLiteral": [ + "Centre de linguistique appliquée de Dakar," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "La grammaire en question" + ], + "shelfMark": [ + "Sc Ser.-M .B575" + ], + "creatorLiteral": [ + "Blondé, Jacques." + ], + "createdString": [ + "1978" + ], + "seriesStatement": [ + "L'Enseignement du français au Sénégal" + ], + "contributorLiteral": [ + "Centre de linguistique appliquée de Dakar." + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .B575" + }, + { + "type": "nypl:Bnumber", + "value": "10008416" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00709824" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208396" + } + ], + "uniformTitle": [ + "Enseignement du français au Sénégal." + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1141798", + "shelfMark": [ + "Sc Ser.-M .B575" + ] + } + ], + "updatedAt": 1636111100976, + "publicationStatement": [ + "[Dakar] : Centre de linguistique appliquée de Dakar, 1978-" + ], + "identifier": [ + "urn:bnum:10008416", + "urn:undefined:NNSZ00709824", + "urn:undefined:(WaOLN)nyp0208396" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "French language -- Study and teaching -- Senegal." + ], + "titleDisplay": [ + "La grammaire en question / par Jacques Blondé." + ], + "uri": "b10008416", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Dakar] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10008416" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13785304", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .B575 t. 1 (1978)" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .B575 t. 1 (1978)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433021653690" + } + ], + "physicalLocation": [ + "Sc Ser.-M .B575" + ], + "enumerationChronology": [ + "t. 1 (1978)" + ], + "identifier": [ + "urn:barcode:33433021653690" + ], + "idBarcode": [ + "33433021653690" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .B575 t. 1 (1978)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008989", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of title: Florentina Studiorum Universitas.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Novellae constitutiones" + ], + "publisherLiteral": [ + "Cisalpino-Goliardica" + ], + "language": [ + { + "id": "lang:grc", + "label": "Greek, Ancient (to 1453)" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1986 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Novellae : pars graeca" + ], + "shelfMark": [ + "JLN 88-42" + ], + "creatorLiteral": [ + "Bartoletti Colombo, Anna Maria." + ], + "createdString": [ + "1986" + ], + "seriesStatement": [ + "Legum Iustiniani imperatoris vocabularium" + ], + "contributorLiteral": [ + "Archi, Gian Gualberto." + ], + "dateStartYear": [ + 1986 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42" + }, + { + "type": "nypl:Bnumber", + "value": "10008989" + }, + { + "type": "bf:Isbn", + "value": "8820505517 (v. 1)" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208964" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1652373994811, + "publicationStatement": [ + "Milano : Cisalpino-Goliardica, c1986-" + ], + "identifier": [ + "urn:bnum:10008989", + "urn:isbn:8820505517 (v. 1)", + "urn:undefined:(WaOLN)nyp0208964" + ], + "idIsbn": [ + "8820505517 (v. 1)" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1986" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Novellae constitutiones." + ], + "titleDisplay": [ + "Novellae : pars graeca / Iohanne Gualberto Archi moderante, curavit Anna Maria Bartoletti Colombo." + ], + "uri": "b10008989", + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Milano" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "88205055171" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10008989" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433079237768" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17447326", + "shelfMark": [ + "JLN 88-42 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433079237768" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433079237768" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433079237776" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17447327", + "shelfMark": [ + "JLN 88-42 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433079237776" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433079237776" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433079237784" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17447328", + "shelfMark": [ + "JLN 88-42 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433079237784" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433079237784" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433079237792" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17447325", + "shelfMark": [ + "JLN 88-42 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433079237792" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433079237792" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433033482716" + ], + "physicalLocation": [ + "JLN 88-42 Library has: t. 1-6." + ], + "shelfMark_sort": "aJLN 88-42 Library has: t. 1-6. T. 000006", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12540484", + "shelfMark": [ + "JLN 88-42 Library has: t. 1-6. T. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLN 88-42 Library has: t. 1-6. T. 6" + }, + { + "type": "bf:Barcode", + "value": "33433033482716" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "T. 6" + ], + "idBarcode": [ + "33433033482716" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009049", + "_score": null, + "_source": { + "extent": [ + "3 v. (loose-leaf) : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Loose-leaves for updating.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Computer industry", + "Computer industry -- Technological innovations", + "Computers", + "Computers -- Catalogs" + ], + "publisherLiteral": [ + "Datapro Research Corp. ;" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Datapro reports on minicomputers" + ], + "shelfMark": [ + "JSF 85-437" + ], + "createdString": [ + "1985" + ], + "contributorLiteral": [ + "Datapro Research Corporation.", + "Heminway, Mary C." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-437" + }, + { + "type": "nypl:Bnumber", + "value": "10009049" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00810570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209024" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1644359525726, + "publicationStatement": [ + "Delran, N.J. : Datapro Research Corp. ; c1985-" + ], + "identifier": [ + "urn:bnum:10009049", + "urn:undefined:NNSZ00810570", + "urn:undefined:(WaOLN)nyp0209024" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Computer industry -- Technological innovations.", + "Computers -- Catalogs." + ], + "titleDisplay": [ + "Datapro reports on minicomputers / group managing editor, Mary C. Heminway." + ], + "uri": "b10009049", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Delran, N.J. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Reports on minicomputers." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10009049" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433059486757" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785402", + "shelfMark": [ + "JSF 85-437 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433059486757" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433059486757" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433059486500" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785401", + "shelfMark": [ + "JSF 85-437 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433059486500" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433059486500" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433037693862" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12540492", + "shelfMark": [ + "JSF 85-437 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433037693862" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433037693862" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009050", + "_score": null, + "_source": { + "extent": [ + "3 v. (loose-leaf) : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Loose-leaves for updating.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Computer programs", + "Computer programs -- Directories", + "Microcomputers", + "Microcomputers -- Programming", + "Microcomputers -- Programming -- Directories", + "Programming languages (Electronic computers)", + "Programming languages (Electronic computers) -- Directories" + ], + "publisherLiteral": [ + "Datapro Research Corp.," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Datapro directory of microcomputer software" + ], + "shelfMark": [ + "JSF 85-438" + ], + "createdString": [ + "1985" + ], + "contributorLiteral": [ + "Datapro Research Corporation.", + "Muldowney, William J." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-438" + }, + { + "type": "nypl:Bnumber", + "value": "10009050" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00810571" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209025" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636086399858, + "publicationStatement": [ + "Delran, N.J. : Datapro Research Corp., c1985-" + ], + "identifier": [ + "urn:bnum:10009050", + "urn:undefined:NNSZ00810571", + "urn:undefined:(WaOLN)nyp0209025" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Computer programs -- Directories.", + "Microcomputers -- Programming -- Directories.", + "Programming languages (Electronic computers) -- Directories." + ], + "titleDisplay": [ + "Datapro directory of microcomputer software / managing editor, William J. Muldowney." + ], + "uri": "b10009050", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Delran, N.J. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Directory of microcomputer software.", + "Microcomputer software." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10009050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433059486724" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785404", + "shelfMark": [ + "JSF 85-438 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433059486724" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433059486724" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433059486450" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785403", + "shelfMark": [ + "JSF 85-438 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433059486450" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433059486450" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433037693870" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12540493", + "shelfMark": [ + "JSF 85-438 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433037693870" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433037693870" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009141", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "publisherLiteral": [ + "viṟpaṉai urimai: Pāri Nilaiyam," + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ilakkaṇat tokai." + ], + "shelfMark": [ + "*OLB 85-879" + ], + "creatorLiteral": [ + "Subramanian, S. V." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "75910470" + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 85-879" + }, + { + "type": "nypl:Bnumber", + "value": "10009141" + }, + { + "type": "bf:Lccn", + "value": "75910470" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00810664" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209116" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636105084628, + "publicationStatement": [ + "Ceṉṉai, viṟpaṉai urimai: Pāri Nilaiyam, 1967-" + ], + "identifier": [ + "urn:bnum:10009141", + "urn:lccn:75910470", + "urn:undefined:NNSZ00810664", + "urn:undefined:(WaOLN)nyp0209116" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Ilakkaṇat tokai. [Tokuppāciriyar] Ca. Vē. Cuppiramaṇiyaṉ." + ], + "uri": "b10009141", + "lccClassification": [ + "PL4754 .S78" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Ceṉṉai," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Eḻuttu. -- 2. Col." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10009141" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061304865" + ], + "physicalLocation": [ + "*OLB 85-879" + ], + "shelfMark_sort": "a*OLB 85-879 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785411", + "shelfMark": [ + "*OLB 85-879 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 85-879 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433061304865" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433061304865" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061304857" + ], + "physicalLocation": [ + "*OLB 85-879" + ], + "shelfMark_sort": "a*OLB 85-879 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13785410", + "shelfMark": [ + "*OLB 85-879 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 85-879 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061304857" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433061304857" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009318", + "_score": null, + "_source": { + "extent": [ + "10 v. in 7." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 7 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1960 + ], + "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" + ], + "numItemVolumesParsed": [ + 7 + ], + "creatorLiteral": [ + "Kōpāla Kiruṣṇamācāryar, Vai. Mu., 1882-1956." + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "76909632" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Kiruṣṇamācāriyar, C.", + "Villiputtūrāḻvār." + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294" + }, + { + "type": "nypl:Bnumber", + "value": "10009318" + }, + { + "type": "bf:Lccn", + "value": "76909632" + }, + { + "type": "nypl:Oclc", + "value": "NYPG009000066-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00910847" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209293" + } + ], + "idOclc": [ + "NYPG009000066-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675264547472, + "publicationStatement": [ + "Ceṉṉai, 1960-1968 [v.1. 1963]" + ], + "identifier": [ + "urn:bnum:10009318", + "urn:lccn:76909632", + "urn:oclc:NYPG009000066-B", + "urn:undefined:NNSZ00910847", + "urn:undefined:(WaOLN)nyp0209293" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Villiputtūrār iyaṟṟiya Makāpāratam; Vai. Mu. Kōpālakiruṣṇamācāriyar iyaṟṟiya uraiyuṭaṉ." + ], + "uri": "b10009318", + "lccClassification": [ + "PL4758.9.V492 V534 1960" + ], + "numItems": [ + 7 + ], + "numAvailable": [ + 7 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10009318" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 7, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585376" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000009-10", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 9-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785440", + "shelfMark": [ + "*OLY 87-5294 v. 9-10" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 9-10" + }, + { + "type": "bf:Barcode", + "value": "33433059585376" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 9-10" + ], + "idBarcode": [ + "33433059585376" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 9-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585368" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000006-8", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785439", + "shelfMark": [ + "*OLY 87-5294 v. 6-8" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 6-8" + }, + { + "type": "bf:Barcode", + "value": "33433059585368" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 6-8" + ], + "idBarcode": [ + "33433059585368" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 8 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585350" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000005", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785438", + "shelfMark": [ + "*OLY 87-5294 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433059585350" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433059585350" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585343" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000004", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785437", + "shelfMark": [ + "*OLY 87-5294 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433059585343" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433059585343" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585335" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000003", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785436", + "shelfMark": [ + "*OLY 87-5294 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433059585335" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433059585335" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585327" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785435", + "shelfMark": [ + "*OLY 87-5294 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433059585327" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433059585327" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059585319" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000001", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785434", + "shelfMark": [ + "*OLY 87-5294 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433059585319" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433059585319" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009600", + "_score": null, + "_source": { + "extent": [ + "v. : ill." + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Uchebnik Kir. ︠i︡azyka dl︠i︡a trudovykh shkol.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 1685.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kirghiz.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kyrgyz language", + "Kyrgyz language -- Texts", + "Kyrgyz language -- Textbooks for foreign speakers", + "Kyrgyz language -- Textbooks for foreign speakers -- Russian" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Qïrghïzïstan Memleket Basmasï" + ], + "language": [ + { + "id": "lang:kir", + "label": "Kyrgyz" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1930 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Orus emgek mektebteri ycyn qïrghïz tilinin oquu kitebi" + ], + "shelfMark": [ + "*ZO-258 no. 1" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Çangïbajuluu, M." + ], + "createdString": [ + "1930" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1930 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-258 no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "10009600" + }, + { + "type": "nypl:Oclc", + "value": "NYPG009000291-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00911072" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209576" + } + ], + "idOclc": [ + "NYPG009000291-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689280548142, + "publicationStatement": [ + "Prunza : Qïrghïzïstan Memleket Basmasï, 1930-" + ], + "identifier": [ + "urn:bnum:10009600", + "urn:oclc:NYPG009000291-B", + "urn:undefined:NNSZ00911072", + "urn:undefined:(WaOLN)nyp0209576" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1930" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kyrgyz language -- Texts.", + "Kyrgyz language -- Textbooks for foreign speakers -- Russian." + ], + "titleDisplay": [ + "Orus emgek mektebteri ycyn qïrghïz tilinin oquu kitebi [microform] / M. Çangïbaj uluu." + ], + "uri": "b10009600", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prunza" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Uchebnik kirgizskogo ︠i︡azyka dl︠i︡a trudovykh shkol." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10009600" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30068355", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZO-258, no. 1 no. 1-22" + ], + "identifierV2": [ + { + "value": "*ZO-258, no. 1 no. 1-22", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433105667400" + } + ], + "enumerationChronology": [ + "no. 1-22" + ], + "physicalLocation": [ + "*ZO-258, no. 1" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433105667400" + ], + "idBarcode": [ + "33433105667400" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 22 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZO-258, no. 000001 no. 1-22" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009763", + "_score": null, + "_source": { + "extent": [ + "v. : ill., facsims., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Suppl. 2 has title: Book of Jared; vol. 3 (the second supplement), continuing the record of descedants of John Jared (1837 [sic]-1805) and his wives Hannah Whitacre and Rachel Palmer.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jared family", + "Jared, John, 1737-1805", + "Jared, John, 1737-1805 -- Family" + ], + "publisherLiteral": [ + "E. M. Hall," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The book of Jared supplement[s] : a family record showing descendants of John Jared, 1737-1805, Hannah Whitacre, Rachel Palmer" + ], + "shelfMark": [ + "APV (Jared) 85-2860 Suppl." + ], + "creatorLiteral": [ + "Hall, Eleanor McAllister, 1910-" + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl." + }, + { + "type": "nypl:Bnumber", + "value": "10009763" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00911239" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209739" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636133579155, + "publicationStatement": [ + "Salt Lake City, Utah (7234 So. 2825 East, Salt Lake City 84121) : E. M. Hall, c1981-" + ], + "identifier": [ + "urn:bnum:10009763", + "urn:undefined:NNSZ00911239", + "urn:undefined:(WaOLN)nyp0209739" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jared family.", + "Jared, John, 1737-1805 -- Family." + ], + "titleDisplay": [ + "The book of Jared supplement[s] : a family record showing descendants of John Jared, 1737-1805, Hannah Whitacre, Rachel Palmer / [compiled by Eleanor M. Hall]." + ], + "uri": "b10009763", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Salt Lake City, Utah (7234 So. 2825 East, Salt Lake City 84121) :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10009763" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433093160152" + ], + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2." + ], + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i27564651", + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" + }, + { + "type": "bf:Barcode", + "value": "33433093160152" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "enumerationChronology": [ + "Suppl. 2" + ], + "idBarcode": [ + "33433093160152" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433093160145" + ], + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2." + ], + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000001", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i27564640", + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433093160137" + ], + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2" + ], + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14747026", + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " + }, + { + "type": "bf:Barcode", + "value": "33433093160137" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "enumerationChronology": [ + "Suppl. " + ], + "idBarcode": [ + "33433093160137" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009901", + "_score": null, + "_source": { + "extent": [ + "v. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Paging in reverse.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ansaru Allah Community]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The holy Qur'an : the last testament" + ], + "shelfMark": [ + "Sc Ser.-M .K786" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1977" + ], + "seriesStatement": [ + "Edition; 41-", + "Nubian Islamic Hebrews. Edition 41-" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "ʻIsá Abd Allāh Muḥammad al-Mahdī, 1945-" + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .K786" + }, + { + "type": "nypl:Bnumber", + "value": "10009901" + }, + { + "type": "nypl:Oclc", + "value": "NYPG009000597-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209877" + } + ], + "idOclc": [ + "NYPG009000597-B" + ], + "uniformTitle": [ + "Qurʼan. English & Arabic." + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1143677", + "shelfMark": [ + "Sc Ser.-M .K786" + ] + } + ], + "updatedAt": 1669058699563, + "publicationStatement": [ + "[Brooklyn, N.Y.] : Ansaru Allah Community], 1977-" + ], + "identifier": [ + "urn:bnum:10009901", + "urn:oclc:NYPG009000597-B", + "urn:undefined:(WaOLN)nyp0209877" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The holy Qur'an : the last testament / English translation and commentary by Al Hajj Al Imam Isa Abd'Allah Muhammad al Mahdi." + ], + "uri": "b10009901", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Brooklyn, N.Y.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10009901" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14747080", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .K786 v. 1-3" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .K786 v. 1-3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433070348341" + } + ], + "enumerationChronology": [ + "v. 1-3" + ], + "physicalLocation": [ + "Sc Ser.-M .K786" + ], + "identifier": [ + "urn:barcode:33433070348341" + ], + "idBarcode": [ + "33433070348341" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Ser.-M .K786 v. 000001-3" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010070", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Supplement", + "label": "Issues for 1968-69 include supplement: Quality.", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by the institute in collaboration with the General Confederation of Italian Industry.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Fall 1958-" + ], + "subjectLiteral_exploded": [ + "Industries", + "Industries -- Italy", + "Industries -- Italy -- Periodicals", + "Italy", + "Italy -- Commerce", + "Italy -- Commerce -- Periodicals" + ], + "numItemDatesParsed": [ + 2 + ], + "publisherLiteral": [ + "Istituto Nazionale per il Commercio Estero" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1958 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Italy presents." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JLM 81-304" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1958" + ], + "idLccn": [ + "63053813" + ], + "idIssn": [ + "0021-3160" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Istituto nazionale per il commercio estero (Italy)", + "Confederazione generale dell'industria italiana." + ], + "dateStartYear": [ + 1958 + ], + "idOclc": [ + "1754066", + "NYPG010-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLM 81-304" + }, + { + "type": "nypl:Bnumber", + "value": "10010070" + }, + { + "type": "nypl:Oclc", + "value": "1754066" + }, + { + "type": "nypl:Oclc", + "value": "NYPG010-S" + }, + { + "type": "bf:Lccn", + "value": "63053813" + }, + { + "type": "bf:Issn", + "value": "0021-3160" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210046" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1754066" + } + ], + "uniformTitle": [ + "Quality." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1707236702090, + "publicationStatement": [ + "Rome : Istituto Nazionale per il Commercio Estero, 1958-" + ], + "identifier": [ + "urn:shelfmark:JLM 81-304", + "urn:bnum:10010070", + "urn:oclc:1754066", + "urn:oclc:NYPG010-S", + "urn:lccn:63053813", + "urn:issn:0021-3160", + "urn:identifier:(WaOLN)nyp0210046", + "urn:identifier:(OCoLC)1754066" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1958" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Industries -- Italy -- Periodicals.", + "Italy -- Commerce -- Periodicals." + ], + "titleDisplay": [ + "Italy presents." + ], + "uri": "b10010070", + "placeOfPublication": [ + "Rome" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Italian trade magazine." + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10010070" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1970", + "lte": "1972" + } + ], + "enumerationChronology": [ + "1970-1972" + ], + "enumerationChronology_sort": [ + " -1970" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017526959" + ], + "identifier": [ + "urn:shelfmark:JLM 81-304 1970-1972", + "urn:barcode:33433017526959" + ], + "identifierV2": [ + { + "value": "JLM 81-304 1970-1972", + "type": "bf:ShelfMark" + }, + { + "value": "33433017526959", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLM 81-304" + ], + "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" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1967", + "lte": "1969" + } + ], + "dueDate": [ + "2024-11-02" + ], + "enumerationChronology": [ + "1967-1969" + ], + "enumerationChronology_sort": [ + " -1967" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017526942" + ], + "identifier": [ + "urn:shelfmark:JLM 81-304 1967-1969", + "urn:barcode:33433017526942" + ], + "identifierV2": [ + { + "value": "JLM 81-304 1967-1969", + "type": "bf:ShelfMark" + }, + { + "value": "33433017526942", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLM 81-304" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JLM 81-304 1967-1969" + ], + "shelfMark_sort": "aJLM 81-304 1967-001969", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i12540519" + }, + "sort": [ + " -1967" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010482", + "_score": null, + "_source": { + "extent": [ + "v. : ill., facsims., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "K.A.R.D.: Karow, Adamson, Rubidoux, Dye--V. 2, Pref.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 12 published in Kent, Washington.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 12: \"John A. & Judy K. Dye.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Adams family" + ], + "numItemDatesParsed": [ + 1 + ], + "publisherLiteral": [ + "J. Dye" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 15 + ], + "createdYear": [ + 1982 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The K.A.R.D. files--Adamson ancestry" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "APV (Adamson) 85-544" + ], + "numItemVolumesParsed": [ + 4 + ], + "createdString": [ + "1982" + ], + "creatorLiteral": [ + "Dye, John." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Dye, Judy." + ], + "dateStartYear": [ + 1982 + ], + "idOclc": [ + "NYPG010000400-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Adamson) 85-544" + }, + { + "type": "nypl:Bnumber", + "value": "10010482" + }, + { + "type": "nypl:Oclc", + "value": "NYPG010000400-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210458" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 13", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Arrived" + }, + { + "coverage": "", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "1-12-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13." + } + ], + "physicalLocation": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "location": [ + { + "code": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "uri": "h1031668" + } + ], + "updatedAt": 1699475310335, + "publicationStatement": [ + "Spokane, Wash. : J. Dye, [1982]-" + ], + "identifier": [ + "urn:shelfmark:APV (Adamson) 85-544", + "urn:bnum:10010482", + "urn:oclc:NYPG010000400-B", + "urn:identifier:(WaOLN)nyp0210458" + ], + "numCheckinCardItems": [ + 12 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Adams family." + ], + "titleDisplay": [ + "The K.A.R.D. files--Adamson ancestry / John and Judy Dye." + ], + "uri": "b10010482", + "placeOfPublication": [ + "Spokane, Wash." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "KARD files--Adamson ancestry." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10010482" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 15, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "No. 13" + ], + "enumerationChronology_sort": [ + " 13-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-0", + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "volumeRaw": [ + "No. 13" + ] + }, + "sort": [ + " 13-" + ] + }, + { + "_nested": { + "field": "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" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 10-13 (Mar. 1989-Sept. 1996)" + ], + "enumerationChronology_sort": [ + " 10-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091335061" + ], + "identifier": [ + "urn:shelfmark:APV (Adamson) 85-544 v. 10-13 (Mar. 1989-Sept. 1996)", + "urn:barcode:33433091335061" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 v. 10-13 (Mar. 1989-Sept. 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433091335061", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Adamson) 85-544" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Adamson) 85-544 v. 10-13 (Mar. 1989-Sept. 1996)" + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000010-13 (Mar. 1989-Sept. 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 13 + } + ], + "uri": "i26428980" + }, + "sort": [ + " 10-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v. 4-9" + ], + "enumerationChronology_sort": [ + " 4-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091335053" + ], + "identifier": [ + "urn:shelfmark:APV (Adamson) 85-544 v. 4-9", + "urn:barcode:33433091335053" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 v. 4-9", + "type": "bf:ShelfMark" + }, + { + "value": "33433091335053", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Adamson) 85-544 " + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Adamson) 85-544 v. 4-9" + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000004-9", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 9 + } + ], + "uri": "i26428927" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "enumerationChronology": [ + "v. 1-3" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091335046" + ], + "identifier": [ + "urn:shelfmark:APV (Adamson) 85-544 v. 1-3", + "urn:barcode:33433091335046" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 v. 1-3", + "type": "bf:ShelfMark" + }, + { + "value": "33433091335046", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Adamson) 85-544" + ], + "requestable": [ + true + ], + "shelfMark": [ + "APV (Adamson) 85-544 v. 1-3" + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 v. 000001-3", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "uri": "i14747104" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-1" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-2" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-3" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-4" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-5" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-6" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-7" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-8" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-9" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-10" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "enumerationChronology": [ + "" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APV (Adamson) 85-544 Library has: Vol. 1-13.", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "APV (Adamson) 85-544 Library has: Vol. 1-13." + ], + "shelfMark_sort": "aAPV (Adamson) 85-544 Library has: Vol. 1-13.", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1031668-11" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010483", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Photocopy.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "vol. 1-2: \"July 18, 1941.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Church records and registers", + "Church records and registers -- Herkimer", + "Church records and registers -- Herkimer -- Indexes", + "Herkimer (N.Y.)", + "Herkimer (N.Y.) -- Genealogy", + "Herkimer (N.Y.) -- Genealogy -- Indexes", + "Reformed Protestant Dutch Church (Herkimer, N.Y.)" + ], + "publisherLiteral": [ + "The Dept.]," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1941 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Index of records Reformed Protestant Dutch Church of Herkimer" + ], + "shelfMark": [ + "APR (Herkimer, N.Y.) 85-424 Index" + ], + "createdString": [ + "1941" + ], + "contributorLiteral": [ + "Montgomery County (N.Y.). Dept. of History and Archives.", + "Reformed Protestant Dutch Church (Herkimer, N.Y.). Records of the Reformed Protestant Dutch Church of Herkimer in the Town of Herkimer, Herkimer County, N.Y." + ], + "dateStartYear": [ + 1941 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APR (Herkimer, N.Y.) 85-424 Index" + }, + { + "type": "nypl:Bnumber", + "value": "10010483" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01012132" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210459" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636105431482, + "publicationStatement": [ + "[New York : The Dept.], 1941-" + ], + "identifier": [ + "urn:bnum:10010483", + "urn:undefined:NNSZ01012132", + "urn:undefined:(WaOLN)nyp0210459" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1941" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Church records and registers -- Herkimer -- Indexes.", + "Herkimer (N.Y.) -- Genealogy -- Indexes.", + "Reformed Protestant Dutch Church (Herkimer, N.Y.)" + ], + "titleDisplay": [ + "Index of records Reformed Protestant Dutch Church of Herkimer / compiled by the Montgomery Department of History and Archives." + ], + "uri": "b10010483", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[New York :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10010483" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433085274375" + ], + "physicalLocation": [ + "APR (Herkimer, N.Y.) 85-424 Index" + ], + "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000002", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i24831672", + "shelfMark": [ + "APR (Herkimer, N.Y.) 85-424 Index v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APR (Herkimer, N.Y.) 85-424 Index v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433085274375" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433085274375" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1105", + "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i11901094", + "shelfMark": [ + "APR (Herkimer, N.Y.) 85-424 Index v. 1-2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010674", + "_score": null, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Language", + "label": "In Italian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "anno 1- magg./giugno 1977-" + ], + "subjectLiteral_exploded": [ + "Music", + "Music -- Periodicals", + "Music -- Discography", + "Music -- Discography -- Periodicals", + "Sound recordings", + "Sound recordings -- Reviews" + ], + "numItemDatesParsed": [ + 92 + ], + "publisherLiteral": [ + "Ed. Diapason Milano]" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "numItemsTotal": [ + 92 + ], + "createdYear": [ + 1977 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Musica." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*LA 81-296" + ], + "numItemVolumesParsed": [ + 57 + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "79649506 /MN" + ], + "idIssn": [ + "0392-5544" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "idOclc": [ + "5909505", + "NYPG011-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*LA 81-296" + }, + { + "type": "nypl:Bnumber", + "value": "10010674" + }, + { + "type": "nypl:Oclc", + "value": "5909505" + }, + { + "type": "nypl:Oclc", + "value": "NYPG011-S" + }, + { + "type": "bf:Lccn", + "value": "79649506 /MN" + }, + { + "type": "bf:Issn", + "value": "0392-5544" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000035" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5909505" + } + ], + "uniformTitle": [ + "Musica (Milan, Italy)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 45 No. 344 (Mar. 2023)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 45 No. 345 (Apr. 2023)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 346 (May. 2023)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 347 (Jun. 2023)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 348 (Jul. 2023)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 349 (Sep. 2023)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 350 (Oct. 2023)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 351 (Nov. 2023)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 46 No. 352 (Dec. 2023)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 353 (Jan. 2024)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 354 (Feb. 2024)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 355 (Mar. 2024)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 356 (Apr. 2024)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 357 (May. 2024)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 358 (Jun. 2024)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 359 (Jul. 2024)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 46 No. 360 (Aug. 2024)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*LA 81-296" + ], + "status": "Expected" + } + ], + "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. 351 (2023-11)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*LA 81-296" + } + ], + "notes": [ + "CURRENT ISSUES IN R&H ARCHIVES" + ], + "physicalLocation": [ + "*LA 81-296" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "uri": "h1036576" + } + ], + "updatedAt": 1706199645620, + "publicationStatement": [ + "[Milano, Ed. Diapason Milano]" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296", + "urn:bnum:10010674", + "urn:oclc:5909505", + "urn:oclc:NYPG011-S", + "urn:lccn:79649506 /MN", + "urn:issn:0392-5544", + "urn:identifier:(WaOLN)nyp0000035", + "urn:identifier:(OCoLC)5909505" + ], + "numCheckinCardItems": [ + 17 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Music -- Periodicals.", + "Music -- Discography -- Periodicals.", + "Sound recordings -- Reviews." + ], + "titleDisplay": [ + "Musica." + ], + "uri": "b10010674", + "lccClassification": [ + "ML5 .M713595" + ], + "placeOfPublication": [ + "[Milano" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10010674" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 92, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-08-01", + "lte": "2024-08-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 360 (Aug. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-08-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-1", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 360" + ] + }, + "sort": [ + " 46-2024-08-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-07-01", + "lte": "2024-07-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 359 (Jul. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-07-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-2", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 359" + ] + }, + "sort": [ + " 46-2024-07-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-06-01", + "lte": "2024-06-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 358 (Jun. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-06-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-3", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 358" + ] + }, + "sort": [ + " 46-2024-06-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-01", + "lte": "2024-05-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 357 (May. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-05-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-4", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 357" + ] + }, + "sort": [ + " 46-2024-05-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 356 (Apr. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-04-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-5", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 356" + ] + }, + "sort": [ + " 46-2024-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-01", + "lte": "2024-03-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 355 (Mar. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-03-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-7", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 355" + ] + }, + "sort": [ + " 46-2024-03-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-01", + "lte": "2024-02-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 354 (Feb. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-02-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-8", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 354" + ] + }, + "sort": [ + " 46-2024-02-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 353 (Jan. 2024)" + ], + "enumerationChronology_sort": [ + " 46-2024-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-0", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 353" + ] + }, + "sort": [ + " 46-2024-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-01", + "lte": "2023-12-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 352 (Dec. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-12-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-6", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 352" + ] + }, + "sort": [ + " 46-2023-12-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-01", + "lte": "2023-11-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 351 (Nov. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-11-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-14", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 351" + ] + }, + "sort": [ + " 46-2023-11-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-01", + "lte": "2023-10-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 350 (Oct. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-10-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-15", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 350" + ] + }, + "sort": [ + " 46-2023-10-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-01", + "lte": "2023-09-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 349 (Sep. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-09-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-16", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 349" + ] + }, + "sort": [ + " 46-2023-09-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-01", + "lte": "2023-07-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 348 (Jul. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-07-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-9", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 348" + ] + }, + "sort": [ + " 46-2023-07-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-01", + "lte": "2023-06-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 347 (Jun. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-06-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-10", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 347" + ] + }, + "sort": [ + " 46-2023-06-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-01", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 46 No. 346 (May. 2023)" + ], + "enumerationChronology_sort": [ + " 46-2023-05-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-13", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "Vol. 46 No. 346" + ] + }, + "sort": [ + " 46-2023-05-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-01", + "lte": "2023-04-01" + } + ], + "enumerationChronology": [ + "Vol. 45 No. 345 (Apr. 2023)" + ], + "enumerationChronology_sort": [ + " 45-2023-04-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-12", + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "volumeRaw": [ + "Vol. 45 No. 345" + ] + }, + "sort": [ + " 45-2023-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-01", + "lte": "2023-03-01" + } + ], + "enumerationChronology": [ + "Vol. 45 No. 344 (Mar. 2023)" + ], + "enumerationChronology_sort": [ + " 45-2023-03-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah||Performing Arts Research Collections - Recorded Sound" + ], + "identifierV2": [ + { + "value": "*LA 81-296", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*LA 81-296" + ], + "shelfMark_sort": "a*LA 81-000296", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1036576-11", + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "volumeRaw": [ + "Vol. 45 No. 344" + ] + }, + "sort": [ + " 45-2023-03-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2022", + "lte": "2023" + } + ], + "enumerationChronology": [ + "v. 45, nos. 339-343 (Sept. 2022-Feb. 2023)" + ], + "enumerationChronology_sort": [ + " 45-2022" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377063" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 45, nos. 339-343 (Sept. 2022-Feb. 2023)", + "urn:barcode:33433109377063" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 45, nos. 339-343 (Sept. 2022-Feb. 2023)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377063", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 45, nos. 339-343 (Sept. 2022-Feb. 2023)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000045, nos. 339-343 (Sept. 2022-Feb. 2023)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "uri": "i40724649" + }, + "sort": [ + " 45-2022" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2022", + "lte": "2022" + } + ], + "enumerationChronology": [ + "v. 44-45, nos. 334-338 (Mar.-Aug. 2022)" + ], + "enumerationChronology_sort": [ + " 44-2022" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377055" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 44-45, nos. 334-338 (Mar.-Aug. 2022)", + "urn:barcode:33433109377055" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 44-45, nos. 334-338 (Mar.-Aug. 2022)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377055", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 44-45, nos. 334-338 (Mar.-Aug. 2022)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000044-45, nos. 334-338 (Mar.-Aug. 2022)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 44, + "lte": 45 + } + ], + "uri": "i40724642" + }, + "sort": [ + " 44-2022" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2022" + } + ], + "enumerationChronology": [ + "v. 44, nos. 329-333 (Sept. 2021-Feb. 2022)" + ], + "enumerationChronology_sort": [ + " 44-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377048" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 44, nos. 329-333 (Sept. 2021-Feb. 2022)", + "urn:barcode:33433109377048" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 44, nos. 329-333 (Sept. 2021-Feb. 2022)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377048", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 44, nos. 329-333 (Sept. 2021-Feb. 2022)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000044, nos. 329-333 (Sept. 2021-Feb. 2022)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ], + "uri": "i40724640" + }, + "sort": [ + " 44-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 43-44, nos. 324-328 (Mar.-Aug. 2021)" + ], + "enumerationChronology_sort": [ + " 43-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377030" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 43-44, nos. 324-328 (Mar.-Aug. 2021)", + "urn:barcode:33433109377030" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 43-44, nos. 324-328 (Mar.-Aug. 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377030", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 43-44, nos. 324-328 (Mar.-Aug. 2021)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000043-44, nos. 324-328 (Mar.-Aug. 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 43, + "lte": 44 + } + ], + "uri": "i40724635" + }, + "sort": [ + " 43-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 43, nos. 319-323 (Sept. 2020-Feb.2021)" + ], + "enumerationChronology_sort": [ + " 43-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377022" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 43, nos. 319-323 (Sept. 2020-Feb.2021)", + "urn:barcode:33433109377022" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 43, nos. 319-323 (Sept. 2020-Feb.2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377022", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 43, nos. 319-323 (Sept. 2020-Feb.2021)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000043, nos. 319-323 (Sept. 2020-Feb.2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ], + "uri": "i40724619" + }, + "sort": [ + " 43-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 42-43, nos. 314-318 (Mar.-Aug 2020)" + ], + "enumerationChronology_sort": [ + " 42-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109377014" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 42-43, nos. 314-318 (Mar.-Aug 2020)", + "urn:barcode:33433109377014" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 42-43, nos. 314-318 (Mar.-Aug 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109377014", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 42-43, nos. 314-318 (Mar.-Aug 2020)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000042-43, nos. 314-318 (Mar.-Aug 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 42, + "lte": 43 + } + ], + "uri": "i40724609" + }, + "sort": [ + " 42-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 42, nos. 309-313 (Sept. 2019-Feb. 2020)" + ], + "enumerationChronology_sort": [ + " 42-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109375604" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 42, nos. 309-313 (Sept. 2019-Feb. 2020)", + "urn:barcode:33433109375604" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 42, nos. 309-313 (Sept. 2019-Feb. 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109375604", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 42, nos. 309-313 (Sept. 2019-Feb. 2020)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000042, nos. 309-313 (Sept. 2019-Feb. 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ], + "uri": "i40724601" + }, + "sort": [ + " 42-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 41-42, nos. 304-308 (Mar.-Aug. 2019)" + ], + "enumerationChronology_sort": [ + " 41-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433109375596" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 41-42, nos. 304-308 (Mar.-Aug. 2019)", + "urn:barcode:33433109375596" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 41-42, nos. 304-308 (Mar.-Aug. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433109375596", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 41-42, nos. 304-308 (Mar.-Aug. 2019)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000041-42, nos. 304-308 (Mar.-Aug. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 41, + "lte": 42 + } + ], + "uri": "i40724592" + }, + "sort": [ + " 41-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)" + ], + "enumerationChronology_sort": [ + " 41-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433108987573" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)", + "urn:barcode:33433108987573" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108987573", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 41, nos. 299-303 (Sept. 2018-Feb. 2019)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000041, nos. 299-303 (Sept. 2018-Feb. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ], + "uri": "i37372229" + }, + "sort": [ + " 41-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)" + ], + "enumerationChronology_sort": [ + " 40-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433108987565" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)", + "urn:barcode:33433108987565" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108987565", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 40, nos. 293-298, inc. (Feb.-Aug. 2018)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000040, nos. 293-298, inc. (Feb.-Aug. 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ], + "uri": "i37372228" + }, + "sort": [ + " 40-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 40, nos. 288-292 (July 2017-Jan. 2018)" + ], + "enumerationChronology_sort": [ + " 40-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433108987557" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 40, nos. 288-292 (July 2017-Jan. 2018)", + "urn:barcode:33433108987557" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 40, nos. 288-292 (July 2017-Jan. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108987557", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 40, nos. 288-292 (July 2017-Jan. 2018)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000040, nos. 288-292 (July 2017-Jan. 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ], + "uri": "i37369430" + }, + "sort": [ + " 40-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 39-40, nos. 283-287 (Feb.-June 2017)" + ], + "enumerationChronology_sort": [ + " 39-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433108987540" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 39-40, nos. 283-287 (Feb.-June 2017)", + "urn:barcode:33433108987540" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 39-40, nos. 283-287 (Feb.-June 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108987540", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 39-40, nos. 283-287 (Feb.-June 2017)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000039-40, nos. 283-287 (Feb.-June 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 39, + "lte": 40 + } + ], + "uri": "i37369426" + }, + "sort": [ + " 39-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 39, nos. 278-282 (July 2016-Jan. 2017)" + ], + "enumerationChronology_sort": [ + " 39-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433108987532" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 39, nos. 278-282 (July 2016-Jan. 2017)", + "urn:barcode:33433108987532" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 39, nos. 278-282 (July 2016-Jan. 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108987532", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 39, nos. 278-282 (July 2016-Jan. 2017)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000039, nos. 278-282 (July 2016-Jan. 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ], + "uri": "i37369420" + }, + "sort": [ + " 39-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 38-39, nos. 273-277 (Feb.-June 2016)" + ], + "enumerationChronology_sort": [ + " 38-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433104416387" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 38-39, nos. 273-277 (Feb.-June 2016)", + "urn:barcode:33433104416387" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 38-39, nos. 273-277 (Feb.-June 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433104416387", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 38-39, nos. 273-277 (Feb.-June 2016)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000038-39, nos. 273-277 (Feb.-June 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 38, + "lte": 39 + } + ], + "uri": "i34627481" + }, + "sort": [ + " 38-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)" + ], + "enumerationChronology_sort": [ + " 38-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433104416379" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)", + "urn:barcode:33433104416379" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433104416379", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 38, nos. 268-272 (July 2015-Jan. 2016) (inc.)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000038, nos. 268-272 (July 2015-Jan. 2016) (inc.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ], + "uri": "i34627460" + }, + "sort": [ + " 38-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 37-38, nos. 263-267 (Feb.-June 2015)" + ], + "enumerationChronology_sort": [ + " 37-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433104416361" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 37-38, nos. 263-267 (Feb.-June 2015)", + "urn:barcode:33433104416361" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 37-38, nos. 263-267 (Feb.-June 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433104416361", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 37-38, nos. 263-267 (Feb.-June 2015)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000037-38, nos. 263-267 (Feb.-June 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 37, + "lte": 38 + } + ], + "uri": "i34627409" + }, + "sort": [ + " 37-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:8", + "label": "Paperback" + } + ], + "accessMessage_packed": [ + "accessMessage:8||Paperback" + ], + "catalogItemType": [ + { + "id": "catalogItemType:102", + "label": "Book, paperback" + } + ], + "catalogItemType_packed": [ + "catalogItemType:102||Book, paperback" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 37, nos. 258-262 (July 2014-Jan. 2015)" + ], + "enumerationChronology_sort": [ + " 37-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064479821" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 37, nos. 258-262 (July 2014-Jan. 2015)", + "urn:barcode:33433064479821" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 37, nos. 258-262 (July 2014-Jan. 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064479821", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 37, nos. 258-262 (July 2014-Jan. 2015)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000037, nos. 258-262 (July 2014-Jan. 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ], + "uri": "i32547828", + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LA+81-296&Date=1977&Form=30&Genre=Book%2C+paperback&ItemInfo1=Paperback&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10010674&ItemISxN=i325478284&ItemNumber=33433064479821&ItemPlace=%5BMilano&ItemPublisher=Ed.+Diapason+Milano%5D&ItemVolume=v.+37%2C+nos.+258-262+%28July+2014-Jan.+2015%29&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100106742&Site=LPAMR&Title=Musica." + ] + }, + "sort": [ + " 37-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:8", + "label": "Paperback" + } + ], + "accessMessage_packed": [ + "accessMessage:8||Paperback" + ], + "catalogItemType": [ + { + "id": "catalogItemType:102", + "label": "Book, paperback" + } + ], + "catalogItemType_packed": [ + "catalogItemType:102||Book, paperback" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 36-37, nos. 253-257 (Feb.-June 2014)" + ], + "enumerationChronology_sort": [ + " 36-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064479813" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 36-37, nos. 253-257 (Feb.-June 2014)", + "urn:barcode:33433064479813" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 36-37, nos. 253-257 (Feb.-June 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064479813", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 36-37, nos. 253-257 (Feb.-June 2014)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000036-37, nos. 253-257 (Feb.-June 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 36, + "lte": 37 + } + ], + "uri": "i32547826", + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LA+81-296&Date=1977&Form=30&Genre=Book%2C+paperback&ItemInfo1=Paperback&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10010674&ItemISxN=i325478260&ItemNumber=33433064479813&ItemPlace=%5BMilano&ItemPublisher=Ed.+Diapason+Milano%5D&ItemVolume=v.+36-37%2C+nos.+253-257+%28Feb.-June+2014%29&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100106742&Site=LPAMR&Title=Musica." + ] + }, + "sort": [ + " 36-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:8", + "label": "Paperback" + } + ], + "accessMessage_packed": [ + "accessMessage:8||Paperback" + ], + "catalogItemType": [ + { + "id": "catalogItemType:102", + "label": "Book, paperback" + } + ], + "catalogItemType_packed": [ + "catalogItemType:102||Book, paperback" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 35, nos. 248-252 (July 2013-Jan. 2014)" + ], + "enumerationChronology_sort": [ + " 35-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064479805" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 35, nos. 248-252 (July 2013-Jan. 2014)", + "urn:barcode:33433064479805" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 35, nos. 248-252 (July 2013-Jan. 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064479805", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 35, nos. 248-252 (July 2013-Jan. 2014)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000035, nos. 248-252 (July 2013-Jan. 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ], + "uri": "i32547819", + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LA+81-296&Date=1977&Form=30&Genre=Book%2C+paperback&ItemInfo1=Paperback&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10010674&ItemISxN=i325478193&ItemNumber=33433064479805&ItemPlace=%5BMilano&ItemPublisher=Ed.+Diapason+Milano%5D&ItemVolume=v.+35%2C+nos.+248-252+%28July+2013-Jan.+2014%29&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100106742&Site=LPAMR&Title=Musica." + ] + }, + "sort": [ + " 35-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 35-36, nos. 243-247 (Feb.-June 2013)" + ], + "enumerationChronology_sort": [ + " 35-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064468642" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 35-36, nos. 243-247 (Feb.-June 2013)", + "urn:barcode:33433064468642" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 35-36, nos. 243-247 (Feb.-June 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064468642", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 35-36, nos. 243-247 (Feb.-June 2013)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000035-36, nos. 243-247 (Feb.-June 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 35, + "lte": 36 + } + ], + "uri": "i31163867" + }, + "sort": [ + " 35-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 35, nos. 238-242 (July 2012-Jan. 2013)" + ], + "enumerationChronology_sort": [ + " 35-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064468634" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 35, nos. 238-242 (July 2012-Jan. 2013)", + "urn:barcode:33433064468634" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 35, nos. 238-242 (July 2012-Jan. 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064468634", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 35, nos. 238-242 (July 2012-Jan. 2013)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000035, nos. 238-242 (July 2012-Jan. 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ], + "uri": "i31163863" + }, + "sort": [ + " 35-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 34-35, nos. 233-237 (Feb.-June 2012)" + ], + "enumerationChronology_sort": [ + " 34-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064468626" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 34-35, nos. 233-237 (Feb.-June 2012)", + "urn:barcode:33433064468626" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 34-35, nos. 233-237 (Feb.-June 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064468626", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 34-35, nos. 233-237 (Feb.-June 2012)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000034-35, nos. 233-237 (Feb.-June 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 34, + "lte": 35 + } + ], + "uri": "i31163859" + }, + "sort": [ + " 34-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 34, nos. 228-232 (July 2011-Jan. 2012)" + ], + "enumerationChronology_sort": [ + " 34-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064468618" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 34, nos. 228-232 (July 2011-Jan. 2012)", + "urn:barcode:33433064468618" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 34, nos. 228-232 (July 2011-Jan. 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064468618", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 34, nos. 228-232 (July 2011-Jan. 2012)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000034, nos. 228-232 (July 2011-Jan. 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ], + "uri": "i31163856" + }, + "sort": [ + " 34-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 33-34, nos. 223-227 (Feb.-June 2011)" + ], + "enumerationChronology_sort": [ + " 33-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073091195" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 33-34, nos. 223-227 (Feb.-June 2011)", + "urn:barcode:33433073091195" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 33-34, nos. 223-227 (Feb.-June 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073091195", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 33-34, nos. 223-227 (Feb.-June 2011)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000033-34, nos. 223-227 (Feb.-June 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 33, + "lte": 34 + } + ], + "uri": "i27799041" + }, + "sort": [ + " 33-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 33, nos. 218-222 (July 2010-Jan. 2011)" + ], + "enumerationChronology_sort": [ + " 33-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073091187" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 33, nos. 218-222 (July 2010-Jan. 2011)", + "urn:barcode:33433073091187" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 33, nos. 218-222 (July 2010-Jan. 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073091187", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 33, nos. 218-222 (July 2010-Jan. 2011)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000033, nos. 218-222 (July 2010-Jan. 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ], + "uri": "i27799039" + }, + "sort": [ + " 33-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 32-33, nos. 213-217 (Feb.-June 2010)" + ], + "enumerationChronology_sort": [ + " 32-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073091179" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 32-33, nos. 213-217 (Feb.-June 2010)", + "urn:barcode:33433073091179" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 32-33, nos. 213-217 (Feb.-June 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073091179", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 32-33, nos. 213-217 (Feb.-June 2010)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000032-33, nos. 213-217 (Feb.-June 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 32, + "lte": 33 + } + ], + "uri": "i27799032" + }, + "sort": [ + " 32-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 32, nos. 208-212 (July 2009-Jan. 2010)" + ], + "enumerationChronology_sort": [ + " 32-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073091161" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 32, nos. 208-212 (July 2009-Jan. 2010)", + "urn:barcode:33433073091161" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 32, nos. 208-212 (July 2009-Jan. 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073091161", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 32, nos. 208-212 (July 2009-Jan. 2010)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000032, nos. 208-212 (July 2009-Jan. 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ], + "uri": "i27799021" + }, + "sort": [ + " 32-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 31-32, nos. 203-207 (Feb.-June 2009)" + ], + "enumerationChronology_sort": [ + " 31-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073091153" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 31-32, nos. 203-207 (Feb.-June 2009)", + "urn:barcode:33433073091153" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 31-32, nos. 203-207 (Feb.-June 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073091153", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 31-32, nos. 203-207 (Feb.-June 2009)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000031-32, nos. 203-207 (Feb.-June 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 31, + "lte": 32 + } + ], + "uri": "i27799016" + }, + "sort": [ + " 31-2009" + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 31, nos. 198-202 (July 2008-Jan. 2009)" + ], + "enumerationChronology_sort": [ + " 31-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433060824954" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 31, nos. 198-202 (July 2008-Jan. 2009)", + "urn:barcode:33433060824954" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 31, nos. 198-202 (July 2008-Jan. 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433060824954", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 31, nos. 198-202 (July 2008-Jan. 2009)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000031, nos. 198-202 (July 2008-Jan. 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ], + "uri": "i23189798" + }, + "sort": [ + " 31-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 30-31, nos. 193-197 (Feb.-June 2008)" + ], + "enumerationChronology_sort": [ + " 30-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433060824947" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 30-31, nos. 193-197 (Feb.-June 2008)", + "urn:barcode:33433060824947" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 30-31, nos. 193-197 (Feb.-June 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433060824947", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 30-31, nos. 193-197 (Feb.-June 2008)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000030-31, nos. 193-197 (Feb.-June 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 30, + "lte": 31 + } + ], + "uri": "i23189797" + }, + "sort": [ + " 30-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 30, nos. 188-192 (July 2007-Jan. 2008)" + ], + "enumerationChronology_sort": [ + " 30-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433060824939" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 30, nos. 188-192 (July 2007-Jan. 2008)", + "urn:barcode:33433060824939" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 30, nos. 188-192 (July 2007-Jan. 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433060824939", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 30, nos. 188-192 (July 2007-Jan. 2008)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000030, nos. 188-192 (July 2007-Jan. 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "uri": "i23189796" + }, + "sort": [ + " 30-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 29-30, nos. 183-187 (Feb.-June 2007)" + ], + "enumerationChronology_sort": [ + " 29-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073125142" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 29-30, nos. 183-187 (Feb.-June 2007)", + "urn:barcode:33433073125142" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 29-30, nos. 183-187 (Feb.-June 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073125142", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 29-30, nos. 183-187 (Feb.-June 2007)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000029-30, nos. 183-187 (Feb.-June 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 29, + "lte": 30 + } + ], + "uri": "i17447363" + }, + "sort": [ + " 29-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 29, nos. 176-182 (May 2006-Jan. 2007)" + ], + "enumerationChronology_sort": [ + " 29-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433073125134" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 29, nos. 176-182 (May 2006-Jan. 2007)", + "urn:barcode:33433073125134" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 29, nos. 176-182 (May 2006-Jan. 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433073125134", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 29, nos. 176-182 (May 2006-Jan. 2007)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000029, nos. 176-182 (May 2006-Jan. 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "uri": "i17447362" + }, + "sort": [ + " 29-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 28, nos. 166-170 (Mar. - Oct. 2005)" + ], + "enumerationChronology_sort": [ + " 28-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433075624639" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 28, nos. 166-170 (Mar. - Oct. 2005)", + "urn:barcode:33433075624639" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 28, nos. 166-170 (Mar. - Oct. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433075624639", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 28, nos. 166-170 (Mar. - Oct. 2005)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000028, nos. 166-170 (Mar. - Oct. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "uri": "i16656930" + }, + "sort": [ + " 28-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:4", + "label": "serial, loose" + } + ], + "catalogItemType_packed": [ + "catalogItemType:4||serial, loose" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)" + ], + "enumerationChronology_sort": [ + " 28-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433075624647" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)", + "urn:barcode:33433075624647" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433075624647", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 28, nos. 171 - 175 (Nov. 2005 - Apr. 2006)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000028, nos. 171 - 175 (Nov. 2005 - Apr. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "uri": "i16656929" + }, + "sort": [ + " 28-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 27, nos. 156-160 (May-Oct. 2004)" + ], + "enumerationChronology_sort": [ + " 27-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064471521" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 27, nos. 156-160 (May-Oct. 2004)", + "urn:barcode:33433064471521" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 27, nos. 156-160 (May-Oct. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064471521", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 27, nos. 156-160 (May-Oct. 2004)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000027, nos. 156-160 (May-Oct. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "uri": "i16656927" + }, + "sort": [ + " 27-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)" + ], + "enumerationChronology_sort": [ + " 27-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064471539" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)", + "urn:barcode:33433064471539" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064471539", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 27, nos. 161-165 (Nov. 2004 - Apr. 2005)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000027, nos. 161-165 (Nov. 2004 - Apr. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "uri": "i16656928" + }, + "sort": [ + " 27-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 26, nos. 146-150 (May-Oct. 2003)" + ], + "enumerationChronology_sort": [ + " 26-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064470556" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 26, nos. 146-150 (May-Oct. 2003)", + "urn:barcode:33433064470556" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 26, nos. 146-150 (May-Oct. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064470556", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 26, nos. 146-150 (May-Oct. 2003)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000026, nos. 146-150 (May-Oct. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ], + "uri": "i14747164" + }, + "sort": [ + " 26-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)" + ], + "enumerationChronology_sort": [ + " 26-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064470564" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)", + "urn:barcode:33433064470564" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064470564", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 26, nos. 151-155 (Nov. 2003 - Apr. 2004)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000026, nos. 151-155 (Nov. 2003 - Apr. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ], + "uri": "i14747165" + }, + "sort": [ + " 26-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)" + ], + "enumerationChronology_sort": [ + " 25-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064470549" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)", + "urn:barcode:33433064470549" + ], + "identifierV2": [ + { + "value": "*LA 81-296 v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064470549", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 v. 25, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)" + ], + "shelfMark_sort": "a*LA 81-296 v. 000025, nos. 142-145 (Dec. 2002/Jan. 2003 - Apr. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ], + "uri": "i14747163" + }, + "sort": [ + " 25-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "Nos. 137-141 (June-Nov. 2002)" + ], + "enumerationChronology_sort": [ + " -2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064452521" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Nos. 137-141 (June-Nov. 2002)", + "urn:barcode:33433064452521" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Nos. 137-141 (June-Nov. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064452521", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Nos. 137-141 (June-Nov. 2002)" + ], + "shelfMark_sort": "a*LA 81-296 Nos. 137-141 (June-Nov. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747162" + }, + "sort": [ + " -2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "Nos. 127-131 (June-Nov. 2001)" + ], + "enumerationChronology_sort": [ + " -2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433022621332" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Nos. 127-131 (June-Nov. 2001)", + "urn:barcode:33433022621332" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Nos. 127-131 (June-Nov. 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433022621332", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Nos. 127-131 (June-Nov. 2001)" + ], + "shelfMark_sort": "a*LA 81-296 Nos. 127-131 (June-Nov. 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785677" + }, + "sort": [ + " -2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)" + ], + "enumerationChronology_sort": [ + " -2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433064452513" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)", + "urn:barcode:33433064452513" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433064452513", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)" + ], + "shelfMark_sort": "a*LA 81-296 Nos. 132-136 (Dec. 2001/Jan. 2002 - May 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747161" + }, + "sort": [ + " -2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "Nos. 116-121 (Feb.-Nov. 2000)" + ], + "enumerationChronology_sort": [ + " -2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433022619146" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)", + "urn:barcode:33433022619146" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433022619146", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)" + ], + "shelfMark_sort": "a*LA 81-296 Nos. 116-121 (Feb.-Nov. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785674" + }, + "sort": [ + " -2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "enumerationChronology": [ + "Nos. 122-126 (Dec. 2000 - May 2001)" + ], + "enumerationChronology_sort": [ + " -2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433022621456" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)", + "urn:barcode:33433022621456" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433022621456", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)" + ], + "shelfMark_sort": "a*LA 81-296 Nos. 122-126 (Dec. 2000 - May 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785676" + }, + "sort": [ + " -2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "2000" + } + ], + "enumerationChronology": [ + "Nos. 111-115 (Apr. 1999 - Jan. 2000)" + ], + "enumerationChronology_sort": [ + " -1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433022619021" + ], + "identifier": [ + "urn:shelfmark:*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)", + "urn:barcode:33433022619021" + ], + "identifierV2": [ + { + "value": "*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433022619021", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-298" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)" + ], + "shelfMark_sort": "a*LA 81-298 Nos. 111-115 (Apr. 1999 - Jan. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785675" + }, + "sort": [ + " -1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "1998" + ], + "enumerationChronology_sort": [ + " -1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433022582096" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1998", + "urn:barcode:33433022582096" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1998", + "type": "bf:ShelfMark" + }, + { + "value": "33433022582096", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1998" + ], + "shelfMark_sort": "a*LA 81-296 001998", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858884" + }, + "sort": [ + " -1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "Feb.-Dec. 1997" + ], + "enumerationChronology_sort": [ + " -1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654123" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-Dec. 1997", + "urn:barcode:33433018654123" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-Dec. 1997", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654123", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-Dec. 1997" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-Dec. 001997", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858883" + }, + "sort": [ + " -1997" + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1997" + } + ], + "enumerationChronology": [ + "Aug. 1996 - Jan. 1997" + ], + "enumerationChronology_sort": [ + " -1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654248" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1996 - Jan. 1997", + "urn:barcode:33433018654248" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1996 - Jan. 1997", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654248", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1996 - Jan. 1997" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1996 - Jan. 001997", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858882" + }, + "sort": [ + " -1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "Feb.-July 1996" + ], + "enumerationChronology_sort": [ + " -1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654362" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1996", + "urn:barcode:33433018654362" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1996", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654362", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1996" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001996", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858881" + }, + "sort": [ + " -1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1996" + } + ], + "enumerationChronology": [ + "Aug. 1995 - Jan. 1996" + ], + "enumerationChronology_sort": [ + " -1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654487" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1995 - Jan. 1996", + "urn:barcode:33433018654487" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1995 - Jan. 1996", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654487", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1995 - Jan. 1996" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1995 - Jan. 001996", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858880" + }, + "sort": [ + " -1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "Feb.-July 1995" + ], + "enumerationChronology_sort": [ + " -1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654602" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1995", + "urn:barcode:33433018654602" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1995", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654602", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1995" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001995", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858879" + }, + "sort": [ + " -1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1994", + "lte": "1995" + } + ], + "enumerationChronology": [ + "Aug. 1994 - Jan. 1995" + ], + "enumerationChronology_sort": [ + " -1994" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654115" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1994 - Jan. 1995", + "urn:barcode:33433018654115" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1994 - Jan. 1995", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654115", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1994 - Jan. 1995" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1994 - Jan. 001995", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858878" + }, + "sort": [ + " -1994" + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "enumerationChronology": [ + "Feb.-July 1994" + ], + "enumerationChronology_sort": [ + " -1994" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654230" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1994", + "urn:barcode:33433018654230" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1994", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654230", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1994" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001994", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858877" + }, + "sort": [ + " -1994" + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1994" + } + ], + "enumerationChronology": [ + "Aug. 1993 - Jan. 1994" + ], + "enumerationChronology_sort": [ + " -1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654354" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1993 - Jan. 1994", + "urn:barcode:33433018654354" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1993 - Jan. 1994", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654354", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1993 - Jan. 1994" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1993 - Jan. 001994", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858876" + }, + "sort": [ + " -1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "enumerationChronology": [ + "Feb.-July 1993" + ], + "enumerationChronology_sort": [ + " -1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654479" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1993", + "urn:barcode:33433018654479" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1993", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654479", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1993" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001993", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858875" + }, + "sort": [ + " -1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1992", + "lte": "1993" + } + ], + "enumerationChronology": [ + "Aug. 1992 - Jan. 1993" + ], + "enumerationChronology_sort": [ + " -1992" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654594" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1992 - Jan. 1993", + "urn:barcode:33433018654594" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1992 - Jan. 1993", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654594", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1992 - Jan. 1993" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1992 - Jan. 001993", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858874" + }, + "sort": [ + " -1992" + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "enumerationChronology": [ + "Feb.-July 1992" + ], + "enumerationChronology_sort": [ + " -1992" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654107" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1992", + "urn:barcode:33433018654107" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1992", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654107", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1992" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001992", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858873" + }, + "sort": [ + " -1992" + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1992" + } + ], + "enumerationChronology": [ + "Aug. 1991 - Jan. 1992" + ], + "enumerationChronology_sort": [ + " -1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654222" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1991 - Jan. 1992", + "urn:barcode:33433018654222" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1991 - Jan. 1992", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654222", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1991 - Jan. 1992" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1991 - Jan. 001992", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858872" + }, + "sort": [ + " -1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "enumerationChronology": [ + "Feb.-July 1991" + ], + "enumerationChronology_sort": [ + " -1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654347" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1991", + "urn:barcode:33433018654347" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1991", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654347", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1991" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001991", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858871" + }, + "sort": [ + " -1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1990", + "lte": "1991" + } + ], + "enumerationChronology": [ + "Aug. 1990 - Jan. 1991" + ], + "enumerationChronology_sort": [ + " -1990" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654461" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1990 - Jan. 1991", + "urn:barcode:33433018654461" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1990 - Jan. 1991", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654461", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1990 - Jan. 1991" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1990 - Jan. 001991", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858870" + }, + "sort": [ + " -1990" + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "enumerationChronology": [ + "Feb.-July 1990" + ], + "enumerationChronology_sort": [ + " -1990" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654586" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1990", + "urn:barcode:33433018654586" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1990", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654586", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1990" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001990", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858869" + }, + "sort": [ + " -1990" + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1990" + } + ], + "enumerationChronology": [ + "Apr. 1989 - Jan. 1990" + ], + "enumerationChronology_sort": [ + " -1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654099" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Apr. 1989 - Jan. 1990", + "urn:barcode:33433018654099" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Apr. 1989 - Jan. 1990", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654099", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Apr. 1989 - Jan. 1990" + ], + "shelfMark_sort": "a*LA 81-296 Apr. 1989 - Jan. 001990", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858868" + }, + "sort": [ + " -1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1989" + } + ], + "enumerationChronology": [ + "Aug. 1988 - Jan. 1989" + ], + "enumerationChronology_sort": [ + " -1988" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654214" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Aug. 1988 - Jan. 1989", + "urn:barcode:33433018654214" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Aug. 1988 - Jan. 1989", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654214", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Aug. 1988 - Jan. 1989" + ], + "shelfMark_sort": "a*LA 81-296 Aug. 1988 - Jan. 001989", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858867" + }, + "sort": [ + " -1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "enumerationChronology": [ + "Feb.-July 1988" + ], + "enumerationChronology_sort": [ + " -1988" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654339" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Feb.-July 1988", + "urn:barcode:33433018654339" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Feb.-July 1988", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654339", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Feb.-July 1988" + ], + "shelfMark_sort": "a*LA 81-296 Feb.-July 001988", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858866" + }, + "sort": [ + " -1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1987" + } + ], + "enumerationChronology": [ + "Mar.-Dec. 1987" + ], + "enumerationChronology_sort": [ + " -1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654453" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Mar.-Dec. 1987", + "urn:barcode:33433018654453" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Mar.-Dec. 1987", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654453", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Mar.-Dec. 1987" + ], + "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001987", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858865" + }, + "sort": [ + " -1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1986", + "lte": "1986" + } + ], + "enumerationChronology": [ + "Mar.-Dec. 1986" + ], + "enumerationChronology_sort": [ + " -1986" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654578" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Mar.-Dec. 1986", + "urn:barcode:33433018654578" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Mar.-Dec. 1986", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654578", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Mar.-Dec. 1986" + ], + "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001986", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858864" + }, + "sort": [ + " -1986" + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "enumerationChronology": [ + "Mar.-Dec. 1985" + ], + "enumerationChronology_sort": [ + " -1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654081" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Mar.-Dec. 1985", + "urn:barcode:33433018654081" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Mar.-Dec. 1985", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654081", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Mar.-Dec. 1985" + ], + "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001985", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858863" + }, + "sort": [ + " -1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1984", + "lte": "1984" + } + ], + "enumerationChronology": [ + "Mar.-Dec. 1984" + ], + "enumerationChronology_sort": [ + " -1984" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654206" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Mar.-Dec. 1984", + "urn:barcode:33433018654206" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Mar.-Dec. 1984", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654206", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Mar.-Dec. 1984" + ], + "shelfMark_sort": "a*LA 81-296 Mar.-Dec. 001984", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858862" + }, + "sort": [ + " -1984" + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1983", + "lte": "1983" + } + ], + "enumerationChronology": [ + "1983" + ], + "enumerationChronology_sort": [ + " -1983" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654446" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1983", + "urn:barcode:33433018654446" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1983", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654446", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1983" + ], + "shelfMark_sort": "a*LA 81-296 001983", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858860" + }, + "sort": [ + " -1983" + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "enumerationChronology": [ + "1982" + ], + "enumerationChronology_sort": [ + " -1982" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654560" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1982", + "urn:barcode:33433018654560" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1982", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654560", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1982" + ], + "shelfMark_sort": "a*LA 81-296 001982", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858859" + }, + "sort": [ + " -1982" + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1981", + "lte": "1981" + } + ], + "enumerationChronology": [ + "1981" + ], + "enumerationChronology_sort": [ + " -1981" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654073" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1981", + "urn:barcode:33433018654073" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1981", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654073", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1981" + ], + "shelfMark_sort": "a*LA 81-296 001981", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858858" + }, + "sort": [ + " -1981" + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1980", + "lte": "1980" + } + ], + "enumerationChronology": [ + "1980" + ], + "enumerationChronology_sort": [ + " -1980" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654198" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1980", + "urn:barcode:33433018654198" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1980", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654198", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1980" + ], + "shelfMark_sort": "a*LA 81-296 001980", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858857" + }, + "sort": [ + " -1980" + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1977", + "lte": "1979" + } + ], + "enumerationChronology": [ + "1977-1979" + ], + "enumerationChronology_sort": [ + " -1977" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654313" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 1977-1979", + "urn:barcode:33433018654313" + ], + "identifierV2": [ + { + "value": "*LA 81-296 1977-1979", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654313", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 1977-1979" + ], + "shelfMark_sort": "a*LA 81-296 1977-001979", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858856" + }, + "sort": [ + " -1977" + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1977", + "lte": "1983" + } + ], + "enumerationChronology": [ + "Index (1977-1983)" + ], + "enumerationChronology_sort": [ + " -1977" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433018654321" + ], + "identifier": [ + "urn:shelfmark:*LA 81-296 Index (1977-1983)", + "urn:barcode:33433018654321" + ], + "identifierV2": [ + { + "value": "*LA 81-296 Index (1977-1983)", + "type": "bf:ShelfMark" + }, + { + "value": "33433018654321", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*LA 81-296" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*LA 81-296 Index (1977-1983)" + ], + "shelfMark_sort": "a*LA 81-296 Index (1977-1983)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12858861" + }, + "sort": [ + " -1977" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010676", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title from cover.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At head of title: No 704. Sénat. Année 1919. Session ordinaire ...", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "World War, 1914-1918" + ], + "publisherLiteral": [ + "Impr. du Sénat," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1919 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rapport de la Commission d'enquête sur les faits de la guerre [microform]." + ], + "shelfMark": [ + "*Z-3990 no. 9" + ], + "creatorLiteral": [ + "France. Commission d'enquête sur les faits de la guerre." + ], + "createdString": [ + "1919" + ], + "dateStartYear": [ + 1919 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3990 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10010676" + }, + { + "type": "bf:Identifier", + "value": "WWIa" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01112568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210652" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636125262067, + "publicationStatement": [ + "Paris : Impr. du Sénat, 1919-" + ], + "identifier": [ + "urn:bnum:10010676", + "urn:undefined:WWIa", + "urn:undefined:NNSZ01112568", + "urn:undefined:(WaOLN)nyp0210652" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1919" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "World War, 1914-1918." + ], + "titleDisplay": [ + "Rapport de la Commission d'enquête sur les faits de la guerre [microform]." + ], + "uri": "b10010676", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v.1. Mémoire sur les responsabilités de la guerre/établi ... par Émile Bourgeois et Georges Pagès." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10010676" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433106577558" + ], + "physicalLocation": [ + "*Z-3990" + ], + "shelfMark_sort": "a*Z-3990 no. 000001-9", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i24076474", + "shelfMark": [ + "*Z-3990 no. 1-9" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010704", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "World War, 1914-1918", + "World War, 1914-1918 -- Schools", + "World War, 1914-1918 -- Women" + ], + "publisherLiteral": [ + "Govt. Print. Off.," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1918 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "War work of women in colleges [microform]" + ], + "shelfMark": [ + "*Z-4016 no. 7" + ], + "creatorLiteral": [ + "United States. Committee on Public Information." + ], + "createdString": [ + "1918" + ], + "idLccn": [ + "18026236" + ], + "dateStartYear": [ + 1918 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-4016 no. 7" + }, + { + "type": "nypl:Bnumber", + "value": "10010704" + }, + { + "type": "bf:Lccn", + "value": "18026236" + }, + { + "type": "bf:Identifier", + "value": "WWIa" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01112597" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210680" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636143142429, + "publicationStatement": [ + "Washington, Govt. Print. Off., 1918-" + ], + "identifier": [ + "urn:bnum:10010704", + "urn:lccn:18026236", + "urn:undefined:WWIa", + "urn:undefined:NNSZ01112597", + "urn:undefined:(WaOLN)nyp0210680" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1918" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "World War, 1914-1918 -- Schools.", + "World War, 1914-1918 -- Women." + ], + "titleDisplay": [ + "War work of women in colleges [microform] issued by the Committee on Public Information ..." + ], + "uri": "b10010704", + "lccClassification": [ + "D639.W7 U5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Washington," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10010704" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433106577871" + ], + "physicalLocation": [ + "*Z-4016" + ], + "shelfMark_sort": "a*Z-4016 no. 000001-14", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30102337", + "shelfMark": [ + "*Z-4016 no. 1-14" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-4016 no. 1-14" + }, + { + "type": "bf:Barcode", + "value": "33433106577871" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "enumerationChronology": [ + "no. 1-14" + ], + "idBarcode": [ + "33433106577871" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:04 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "373335", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":2000}}},{\"range\":{\"dateEndYear\":{\"gte\":2000}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 49 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 2, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json b/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json index ad7f3538..5eecc6d6 100644 --- a/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json +++ b/test/fixtures/query-2520e3b1f978b51c5cd28cc72e15f1ef.json @@ -1,278 +1,326 @@ { - "took": 35, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.496055, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "cb4032259", - "_score": 15.496055, - "_source": { - "extent": [ - "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliographical footnotes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "recap-cul" - ], - "subjectLiteral_exploded": [ - "Diet", - "Diet -- Great Britain", - "Food consumption", - "Food consumption -- Great Britain" - ], - "publisherLiteral": [ - "Nelson," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Plenty and want ; a social history of diet in England from 1815 to the present day." - ], - "creatorLiteral": [ - "Burnett, John, 1925-2006." - ], - "createdString": [ - "1966" - ], - "idLccn": [ - " 66070181 " - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "4032259" - }, - { - "type": "bf:Lccn", - "value": " 66070181 " - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm01650294" - }, - { - "type": "bf:Identifier", - "value": "(NNC)4032259" + "body": { + "took": 11, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.530983, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "cb4032259", + "_score": 15.530983, + "_source": { + "extent": [ + "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliographical footnotes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "recap-cul" + ], + "subjectLiteral_exploded": [ + "Diet", + "Diet -- Great Britain", + "Food consumption", + "Food consumption -- Great Britain" + ], + "publisherLiteral": [ + "Nelson," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "creatorLiteral": [ + "Burnett, John, 1925-2006." + ], + "createdString": [ + "1966" + ], + "idLccn": [ + " 66070181 " + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "4032259" + }, + { + "type": "bf:Lccn", + "value": " 66070181 " + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)ocm01650294" + }, + { + "type": "bf:Identifier", + "value": "(NNC)4032259" + }, + { + "type": "bf:Identifier", + "value": "4032259" + } + ], + "updatedAt": 1631229286701, + "publicationStatement": [ + "[London] : Nelson, 1966." + ], + "identifier": [ + "urn:bnum:4032259", + "urn:lccn: 66070181 ", + "urn:undefined:(OCoLC)ocm01650294", + "urn:undefined:(NNC)4032259", + "urn:undefined:4032259" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:undefined", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:undefined", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Diet -- Great Britain.", + "Food consumption -- Great Britain." + ], + "titleDisplay": [ + "Plenty and want ; a social history of diet in England from 1815 to the present day." + ], + "uri": "cb4032259", + "lccClassification": [ + "TX360.G7 B8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[London] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "bf:Identifier", - "value": "4032259" - } - ], - "updatedAt": 1631229286701, - "publicationStatement": [ - "[London] : Nelson, 1966." - ], - "identifier": [ - "urn:bnum:4032259", - "urn:lccn: 66070181 ", - "urn:undefined:(OCoLC)ocm01650294", - "urn:undefined:(NNC)4032259", - "urn:undefined:4032259" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:undefined", - "label": "volume" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "ci4087955", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:0002", + "label": "Columbia University Libraries" + } + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "shelfMark": [ + "TX360.G79 B93 1966" + ], + "identifierV2": [ + { + "value": "TX360.G79 B93 1966", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "HS65164695" + } + ], + "physicalLocation": [ + "TX360.G79 B93 1966" + ], + "identifier": [ + "urn:barcode:HS65164695" + ], + "idBarcode": [ + "HS65164695" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "aTX360.G79 B93 001966" + }, + "sort": [ + null + ] + } + ] + } } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:undefined", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Diet -- Great Britain.", - "Food consumption -- Great Britain." - ], - "titleDisplay": [ - "Plenty and want ; a social history of diet in England from 1815 to the present day." - ], - "uri": "cb4032259", - "lccClassification": [ - "TX360.G7 B8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[London] :" - ], - "issuance": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 1 } - ], - "dimensions": [ - "23 cm" ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci4087955", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "shelfMark": [ - "TX360.G79 B93 1966" - ], - "identifierV2": [ - { - "value": "TX360.G79 B93 1966", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "HS65164695" - } - ], - "physicalLocation": [ - "TX360.G79 B93 1966" - ], - "identifier": [ - "urn:barcode:HS65164695" - ], - "idBarcode": [ - "HS65164695" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aTX360.G79 B93 001966" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "3384", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"cb4032259\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 23 }, - "item_format": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-26f75cdf5ce8aeaf285ef0a8860332d1.json b/test/fixtures/query-26f75cdf5ce8aeaf285ef0a8860332d1.json new file mode 100644 index 00000000..41b49931 --- /dev/null +++ b/test/fixtures/query-26f75cdf5ce8aeaf285ef0a8860332d1.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 84, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"LCCN \\\\-\\\\- 010\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"LCCN \\\\-\\\\- 010\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"LCCN \\\\-\\\\- 010\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1063" + }, + "timeout": 30000 + }, + "options": {}, + "id": 64 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-286be314fe931d66b3330db990eaff90.json b/test/fixtures/query-286be314fe931d66b3330db990eaff90.json new file mode 100644 index 00000000..226e64f9 --- /dev/null +++ b/test/fixtures/query-286be314fe931d66b3330db990eaff90.json @@ -0,0 +1,367 @@ +{ + "body": { + "took": 259, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 93.21536, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b13565153", + "_score": 93.21536, + "_source": { + "extent": [ + "430 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on spine: Ladies companion to the flower garden.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Ladies' companion to the flower-garden (p. [97]-340), has half- title page.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Monthly calendar of work to be done in the flower-garden: p. [425]-430.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Gardening", + "Flower gardening" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "John Wiley" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1854 + ], + "dateEndString": [ + "1853" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Gardening for ladies : and, Companion to the flower-garden" + ], + "shelfMark": [ + "VQG (Loudon, J. W. Gardening for ladies. 1854)" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Loudon, Mrs. (Jane), 1807-1858." + ], + "createdString": [ + "1854" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Downing, A. J. (Andrew Jackson), 1815-1852." + ], + "dateStartYear": [ + 1854 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)" + }, + { + "type": "nypl:Bnumber", + "value": "13565153" + }, + { + "type": "nypl:Oclc", + "value": "31237346" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp3539974" + } + ], + "idOclc": [ + "31237346" + ], + "dateEndYear": [ + 1853 + ], + "updatedAt": 1671727849446, + "publicationStatement": [ + "New York : John Wiley, 1854, c1853." + ], + "identifier": [ + "urn:bnum:13565153", + "urn:oclc:31237346", + "urn:undefined:(WaOLN)nyp3539974" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1854" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Gardening.", + "Flower gardening." + ], + "titleDisplay": [ + "Gardening for ladies : and, Companion to the flower-garden / by Mrs. Loudon." + ], + "uri": "b13565153", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "titleAlt": [ + "Companion to the flower-garden.", + "Ladies' companion to the flower garden." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i13565153-e", + "electronicLocator": [ + { + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006564110", + "label": "Full text available via HathiTrust" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi13565153-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10708577", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "shelfMark": [ + "VQG (Loudon, J. W. Gardening for ladies. 1854)" + ], + "identifierV2": [ + { + "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433006564110" + } + ], + "physicalLocation": [ + "VQG (Loudon, J. W. Gardening for ladies. 1854)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433006564110" + ], + "idBarcode": [ + "33433006564110" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1854)" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:14 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "3993", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"VQG \\\\(Loudon, J. W. Gardening for ladies. 1854\\\\)\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"VQG \\\\(Loudon, J. W. Gardening for ladies. 1854\\\\)\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"VQG \\\\(Loudon, J. W. Gardening for ladies. 1854\\\\)\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1156" + }, + "timeout": 30000 + }, + "options": {}, + "id": 75 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-2d9d9b8b2275d60bed361ae2f96c4e29.json b/test/fixtures/query-2d9d9b8b2275d60bed361ae2f96c4e29.json deleted file mode 100644 index e1110f52..00000000 --- a/test/fixtures/query-2d9d9b8b2275d60bed361ae2f96c4e29.json +++ /dev/null @@ -1,22697 +0,0 @@ -{ - "took": 721, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 5, - "max_score": 55.693737, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b11826883", - "_score": 55.693737, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Indexed In", - "label": "Applied science & technology index", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Art index", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "R]pertoire international de la littérature de l'art", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Art and archaeology technical abstracts", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Artbibliographies modern", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Avery index to architectural periodicals", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Vols. 1 (1965)-10 (1974). 1 v.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 1 (1965)-" - ], - "subjectLiteral_exploded": [ - "Furniture", - "Furniture -- England", - "Furniture -- England -- History", - "Furniture -- England -- History -- Periodicals" - ], - "numItemDatesParsed": [ - 69 - ], - "publisherLiteral": [ - "The Society" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 69 - ], - "createdYear": [ - 1965 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Furniture history : the journal of the Furniture History Society." - ], - "shelfMark": [ - "JQL 08-18" - ], - "numItemVolumesParsed": [ - 69 - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "66053650 //r89" - ], - "idIssn": [ - "0016-3058" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Furniture History Society (London, England)" - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-18" - }, - { - "type": "nypl:Bnumber", - "value": "11826883" - }, - { - "type": "bf:Issn", - "value": "0016-3058" - }, - { - "type": "bf:Lccn", - "value": "66053650 //r89" - }, - { - "type": "nypl:Oclc", - "value": "1570335" - }, - { - "type": "bf:Identifier", - "value": "0280126" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1832956" - } - ], - "idOclc": [ - "1570335" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1965)-44(2008)-", - "v. 3636 (2000) - v. 45 (2000); v. 44 (2008); v. 45 (2009); v. 46 (2010); v. 47 (2011); v. 48 (2012); v. 49 (2013); v. 50 (2014); v. 55 (2019)" - ], - "checkInBoxes": [ - { - "coverage": "No. 30 (1994)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 31 (1995)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 32 (1996)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 33 (1997)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 34 (1998)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 35 (1999)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 26-35 (1990 - 1999)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 36 (2000)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 37 (2001)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 38 (2002)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 39 (2003)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 40 (2004)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 41 (2005)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 42 (2006)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 43 (2007)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 44 (2008)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 45 (2009)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 46 (2010)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 47 (2011)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 48 (2012)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 36-45 (2000 - 2009)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 49 (2013)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 50 (2014)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 51 (2015)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 52 (2016)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 53 (2017)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 54 (2018)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 55 (2019)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 56 (2020)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Arrived" - }, - { - "coverage": "No. 57 (2021)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - }, - { - "coverage": "No. 58 (2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-18" - ], - "status": "Expected" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-18" - } - ], - "physicalLocation": [ - "JQL 08-18" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "uri": "h1066822", - "shelfMark": [ - "JQL 08-18" - ] - } - ], - "updatedAt": 1678048106848, - "publicationStatement": [ - "[London] : The Society" - ], - "identifier": [ - "urn:bnum:11826883", - "urn:issn:0016-3058", - "urn:lccn:66053650 //r89", - "urn:oclc:1570335", - "urn:undefined:0280126", - "urn:undefined:(WaOLN)nyp1832956" - ], - "numCheckinCardItems": [ - 31 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Furniture -- England -- History -- Periodicals." - ], - "titleDisplay": [ - "Furniture history : the journal of the Furniture History Society." - ], - "uri": "b11826883", - "lccClassification": [ - "NK2528 .F8" - ], - "numItems": [ - 38 - ], - "numAvailable": [ - 63 - ], - "placeOfPublication": [ - "[London]" - ], - "titleAlt": [ - "Furnit. hist.", - "Furniture history" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 69, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-0", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 58 (2022)" - ], - "volumeRaw": [ - "No. 58" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology_sort": [ - " 58-2022-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 58-2022-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 68 - }, - "_score": null, - "_source": { - "uri": "i39962833", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 58 (2022)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 58 (2022)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076543143" - } - ], - "enumerationChronology": [ - "v. 58 (2022)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433076543143" - ], - "idBarcode": [ - "33433076543143" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "dateRange": [ - { - "gte": "2022", - "lte": "2022" - } - ], - "enumerationChronology_sort": [ - " 58-2022" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000058 (2022)" - }, - "sort": [ - " 58-2022" - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-1", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 57 (2021)" - ], - "volumeRaw": [ - "No. 57" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 57, - "lte": 57 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 57-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 57-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 67 - }, - "_score": null, - "_source": { - "uri": "i39175596", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 57 (2021)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 57 (2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072299997" - } - ], - "enumerationChronology": [ - "v. 57 (2021)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433072299997" - ], - "idBarcode": [ - "33433072299997" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 57, - "lte": 57 - } - ], - "dateRange": [ - { - "gte": "2021", - "lte": "2021" - } - ], - "enumerationChronology_sort": [ - " 57-2021" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000057 (2021)" - }, - "sort": [ - " 57-2021" - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-2", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 56 (2020)" - ], - "volumeRaw": [ - "No. 56" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 56, - "lte": 56 - } - ], - "dateRange": [ - { - "gte": "2020-01-01", - "lte": "2020-01-01" - } - ], - "enumerationChronology_sort": [ - " 56-2020-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 56-2020-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 66 - }, - "_score": null, - "_source": { - "uri": "i38877467", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 56 (2020)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 56 (2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076529019" - } - ], - "enumerationChronology": [ - "v. 56 (2020)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433076529019" - ], - "idBarcode": [ - "33433076529019" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 56, - "lte": 56 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 56-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000056 (2020)" - }, - "sort": [ - " 56-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 27 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-3", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 55 (2019)" - ], - "volumeRaw": [ - "No. 55" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 55, - "lte": 55 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 55-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 55-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 65 - }, - "_score": null, - "_source": { - "uri": "i38877461", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 55 (2019)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 55 (2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076528763" - } - ], - "enumerationChronology": [ - "v. 55 (2019)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433076528763" - ], - "idBarcode": [ - "33433076528763" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 55, - "lte": 55 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 55-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000055 (2019)" - }, - "sort": [ - " 55-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 26 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-4", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 54 (2018)" - ], - "volumeRaw": [ - "No. 54" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 54, - "lte": 54 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 54-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 54-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 64 - }, - "_score": null, - "_source": { - "uri": "i16753906", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 54 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 54 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433083531677" - } - ], - "enumerationChronology": [ - "v. 54 (2018)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433083531677" - ], - "idBarcode": [ - "33433083531677" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 54, - "lte": 54 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 54-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000054 (2018)" - }, - "sort": [ - " 54-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 25 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-5", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 53 (2017)" - ], - "volumeRaw": [ - "No. 53" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 53, - "lte": 53 - } - ], - "dateRange": [ - { - "gte": "2017-01-01", - "lte": "2017-01-01" - } - ], - "enumerationChronology_sort": [ - " 53-2017-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 53-2017-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 63 - }, - "_score": null, - "_source": { - "uri": "i36041027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 53 (2017)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 53 (2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433086720046" - } - ], - "enumerationChronology": [ - "v. 53 (2017)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433086720046" - ], - "idBarcode": [ - "33433086720046" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 53, - "lte": 53 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 53-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000053 (2017)" - }, - "sort": [ - " 53-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-29", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 52 (2016)" - ], - "volumeRaw": [ - "No. 52" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 52, - "lte": 52 - } - ], - "dateRange": [ - { - "gte": "2016-01-01", - "lte": "2016-01-01" - } - ], - "enumerationChronology_sort": [ - " 52-2016-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 52-2016-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-30", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 51 (2015)" - ], - "volumeRaw": [ - "No. 51" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - } - ], - "dateRange": [ - { - "gte": "2015-01-01", - "lte": "2015-01-01" - } - ], - "enumerationChronology_sort": [ - " 51-2015-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 51-2015-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 62 - }, - "_score": null, - "_source": { - "uri": "i33587281", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 51 (2015)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 51 (2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433069825366" - } - ], - "enumerationChronology": [ - "v. 51 (2015)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433069825366" - ], - "idBarcode": [ - "33433069825366" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 51-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000051 (2015)" - }, - "sort": [ - " 51-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-28", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 50 (2014)" - ], - "volumeRaw": [ - "No. 50" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - } - ], - "dateRange": [ - { - "gte": "2014-01-01", - "lte": "2014-01-01" - } - ], - "enumerationChronology_sort": [ - " 50-2014-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 50-2014-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 61 - }, - "_score": null, - "_source": { - "uri": "i32204255", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 50 (2014)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 50 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433112607373" - } - ], - "enumerationChronology": [ - "v. 50 (2014)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433112607373" - ], - "idBarcode": [ - "33433112607373" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 50-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000050 (2014)" - }, - "sort": [ - " 50-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-27", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 49 (2013)" - ], - "volumeRaw": [ - "No. 49" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 49, - "lte": 49 - } - ], - "dateRange": [ - { - "gte": "2013-01-01", - "lte": "2013-01-01" - } - ], - "enumerationChronology_sort": [ - " 49-2013-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 49-2013-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 60 - }, - "_score": null, - "_source": { - "uri": "i31146937", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 49 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 49 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433101062549" - } - ], - "enumerationChronology": [ - "v. 49 (2013)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433101062549" - ], - "idBarcode": [ - "33433101062549" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 49, - "lte": 49 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 49-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000049 (2013)" - }, - "sort": [ - " 49-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-25", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 48 (2012)" - ], - "volumeRaw": [ - "No. 48" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 48, - "lte": 48 - } - ], - "dateRange": [ - { - "gte": "2012-01-01", - "lte": "2012-01-01" - } - ], - "enumerationChronology_sort": [ - " 48-2012-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 48-2012-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 59 - }, - "_score": null, - "_source": { - "uri": "i30011841", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 48 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 48 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433101084204" - } - ], - "enumerationChronology": [ - "v. 48 (2012)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433101084204" - ], - "idBarcode": [ - "33433101084204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 48, - "lte": 48 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 48-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000048 (2012)" - }, - "sort": [ - " 48-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-24", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 47 (2011)" - ], - "volumeRaw": [ - "No. 47" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 47, - "lte": 47 - } - ], - "dateRange": [ - { - "gte": "2011-01-01", - "lte": "2011-01-01" - } - ], - "enumerationChronology_sort": [ - " 47-2011-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 47-2011-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 58 - }, - "_score": null, - "_source": { - "uri": "i28878768", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 47 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 47 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433101072555" - } - ], - "enumerationChronology": [ - "v. 47 (2011)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433101072555" - ], - "idBarcode": [ - "33433101072555" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 47, - "lte": 47 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 47-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000047 (2011)" - }, - "sort": [ - " 47-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-23", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 46 (2010)" - ], - "volumeRaw": [ - "No. 46" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 46, - "lte": 46 - } - ], - "dateRange": [ - { - "gte": "2010-01-01", - "lte": "2010-01-01" - } - ], - "enumerationChronology_sort": [ - " 46-2010-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 46-2010-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 57 - }, - "_score": null, - "_source": { - "uri": "i26216680", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 46 (2010)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 46 (2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433088832484" - } - ], - "enumerationChronology": [ - "v. 46 (2010)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433088832484" - ], - "idBarcode": [ - "33433088832484" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 46, - "lte": 46 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ - " 46-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000046 (2010)" - }, - "sort": [ - " 46-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-22", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 45 (2009)" - ], - "volumeRaw": [ - "No. 45" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 45, - "lte": 45 - } - ], - "dateRange": [ - { - "gte": "2009-01-01", - "lte": "2009-01-01" - } - ], - "enumerationChronology_sort": [ - " 45-2009-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 45-2009-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-21", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 44 (2008)" - ], - "volumeRaw": [ - "No. 44" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 44, - "lte": 44 - } - ], - "dateRange": [ - { - "gte": "2008-01-01", - "lte": "2008-01-01" - } - ], - "enumerationChronology_sort": [ - " 44-2008-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 44-2008-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 56 - }, - "_score": null, - "_source": { - "uri": "i29627803", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 44-45 (2008-2009)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 44-45 (2008-2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084525736" - } - ], - "enumerationChronology": [ - "v. 44-45 (2008-2009)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433084525736" - ], - "idBarcode": [ - "33433084525736" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 44, - "lte": 45 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ - " 44-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000044-45 (2008-2009)" - }, - "sort": [ - " 44-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-20", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 43 (2007)" - ], - "volumeRaw": [ - "No. 43" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 43, - "lte": 43 - } - ], - "dateRange": [ - { - "gte": "2007-01-01", - "lte": "2007-01-01" - } - ], - "enumerationChronology_sort": [ - " 43-2007-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 43-2007-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-19", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 42 (2006)" - ], - "volumeRaw": [ - "No. 42" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "2006-01-01", - "lte": "2006-01-01" - } - ], - "enumerationChronology_sort": [ - " 42-2006-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 42-2006-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 55 - }, - "_score": null, - "_source": { - "uri": "i29627528", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 42-43 (2006-2007)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 42-43 (2006-2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102440397" - } - ], - "enumerationChronology": [ - "v. 42-43 (2006-2007)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433102440397" - ], - "idBarcode": [ - "33433102440397" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 43 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 42-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000042-43 (2006-2007)" - }, - "sort": [ - " 42-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-18", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 41 (2005)" - ], - "volumeRaw": [ - "No. 41" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2005-01-01", - "lte": "2005-01-01" - } - ], - "enumerationChronology_sort": [ - " 41-2005-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 41-2005-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-17", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 40 (2004)" - ], - "volumeRaw": [ - "No. 40" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 40, - "lte": 40 - } - ], - "dateRange": [ - { - "gte": "2004-01-01", - "lte": "2004-01-01" - } - ], - "enumerationChronology_sort": [ - " 40-2004-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 40-2004-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 54 - }, - "_score": null, - "_source": { - "uri": "i29627525", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18 v. 40-41 (2004-2005)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 40-41 (2004-2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102440389" - } - ], - "enumerationChronology": [ - "v. 40-41 (2004-2005)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "identifier": [ - "urn:barcode:33433102440389" - ], - "idBarcode": [ - "33433102440389" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 40, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ - " 40-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000040-41 (2004-2005)" - }, - "sort": [ - " 40-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-16", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 39 (2003)" - ], - "volumeRaw": [ - "No. 39" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 39, - "lte": 39 - } - ], - "dateRange": [ - { - "gte": "2003-01-01", - "lte": "2003-01-01" - } - ], - "enumerationChronology_sort": [ - " 39-2003-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 39-2003-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-15", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 38 (2002)" - ], - "volumeRaw": [ - "No. 38" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 38 - } - ], - "dateRange": [ - { - "gte": "2002-01-01", - "lte": "2002-01-01" - } - ], - "enumerationChronology_sort": [ - " 38-2002-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 38-2002-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 53 - }, - "_score": null, - "_source": { - "uri": "i16753905", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 38-39 (2002-2003)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 38-39 (2002-2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272329" - } - ], - "enumerationChronology": [ - "v. 38-39 (2002-2003)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272329" - ], - "idBarcode": [ - "33433078272329" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 39 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 38-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000038-39 (2002-2003)" - }, - "sort": [ - " 38-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-14", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 37 (2001)" - ], - "volumeRaw": [ - "No. 37" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 37, - "lte": 37 - } - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2001-01-01" - } - ], - "enumerationChronology_sort": [ - " 37-2001-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 37-2001-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-13", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 36 (2000)" - ], - "volumeRaw": [ - "No. 36" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 36, - "lte": 36 - } - ], - "dateRange": [ - { - "gte": "2000-01-01", - "lte": "2000-01-01" - } - ], - "enumerationChronology_sort": [ - " 36-2000-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 36-2000-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-26", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 36-45 (2000 - 2009)" - ], - "volumeRaw": [ - "No. 36-45" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 36, - "lte": 45 - } - ], - "dateRange": [ - { - "gte": "2000-01-01", - "lte": "2009-01-01" - } - ], - "enumerationChronology_sort": [ - " 36-2000-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 36-2000-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "uri": "i30011859", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 36-45 (2000-2009) + index" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 36-45 (2000-2009) + index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433101083917" - } - ], - "enumerationChronology": [ - "v. 36-45 (2000-2009) + index" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433101083917" - ], - "idBarcode": [ - "33433101083917" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 36, - "lte": 45 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ - " 36-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000036-45 (2000-2009) + index" - }, - "sort": [ - " 36-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-11", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 35 (1999)" - ], - "volumeRaw": [ - "No. 35" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 35 - } - ], - "dateRange": [ - { - "gte": "1999-01-01", - "lte": "1999-01-01" - } - ], - "enumerationChronology_sort": [ - " 35-1999-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 35-1999-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "uri": "i16753904", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 35-37 (1999-2001)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 35-37 (1999-2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272311" - } - ], - "enumerationChronology": [ - "v. 35-37 (1999-2001)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272311" - ], - "idBarcode": [ - "33433078272311" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 37 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " 35-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000035-37 (1999-2001)" - }, - "sort": [ - " 35-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-10", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 34 (1998)" - ], - "volumeRaw": [ - "No. 34" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "1998-01-01", - "lte": "1998-01-01" - } - ], - "enumerationChronology_sort": [ - " 34-1998-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 34-1998-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-9", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 33 (1997)" - ], - "volumeRaw": [ - "No. 33" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "1997-01-01", - "lte": "1997-01-01" - } - ], - "enumerationChronology_sort": [ - " 33-1997-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 33-1997-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-8", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 32 (1996)" - ], - "volumeRaw": [ - "No. 32" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "1996-01-01", - "lte": "1996-01-01" - } - ], - "enumerationChronology_sort": [ - " 32-1996-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 32-1996-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 50 - }, - "_score": null, - "_source": { - "uri": "i16753903", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 32-34 (1996-1998)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 32-34 (1996-1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272303" - } - ], - "enumerationChronology": [ - "v. 32-34 (1996-1998)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272303" - ], - "idBarcode": [ - "33433078272303" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ - " 32-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000032-34 (1996-1998)" - }, - "sort": [ - " 32-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-7", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 31 (1995)" - ], - "volumeRaw": [ - "No. 31" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 31 - } - ], - "dateRange": [ - { - "gte": "1995-01-01", - "lte": "1995-01-01" - } - ], - "enumerationChronology_sort": [ - " 31-1995-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 31-1995-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 49 - }, - "_score": null, - "_source": { - "uri": "i16753902", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 31 (1995)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 31 (1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272295" - } - ], - "enumerationChronology": [ - "v. 31 (1995)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272295" - ], - "idBarcode": [ - "33433078272295" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 31 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ - " 31-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000031 (1995)" - }, - "sort": [ - " 31-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-6", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 30 (1994)" - ], - "volumeRaw": [ - "No. 30" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "1994-01-01", - "lte": "1994-01-01" - } - ], - "enumerationChronology_sort": [ - " 30-1994-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 30-1994-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 48 - }, - "_score": null, - "_source": { - "uri": "i16753901", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 30 (1994)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 30 (1994)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272287" - } - ], - "enumerationChronology": [ - "v. 30 (1994)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272287" - ], - "idBarcode": [ - "33433078272287" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "1994", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " 30-1994" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000030 (1994)" - }, - "sort": [ - " 30-1994" - ] - }, - { - "_nested": { - "field": "items", - "offset": 47 - }, - "_score": null, - "_source": { - "uri": "i16753900", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 29 (1993)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 29 (1993)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272279" - } - ], - "enumerationChronology": [ - "v. 29 (1993)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272279" - ], - "idBarcode": [ - "33433078272279" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1993" - } - ], - "enumerationChronology_sort": [ - " 29-1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000029 (1993)" - }, - "sort": [ - " 29-1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 46 - }, - "_score": null, - "_source": { - "uri": "i16753899", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 28 (1992)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 28 (1992)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272261" - } - ], - "enumerationChronology": [ - "v. 28 (1992)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272261" - ], - "idBarcode": [ - "33433078272261" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " 28-1992" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000028 (1992)" - }, - "sort": [ - " 28-1992" - ] - }, - { - "_nested": { - "field": "items", - "offset": 45 - }, - "_score": null, - "_source": { - "uri": "i16753898", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 27 (1991)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 27 (1991)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272253" - } - ], - "enumerationChronology": [ - "v. 27 (1991)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272253" - ], - "idBarcode": [ - "33433078272253" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1991" - } - ], - "enumerationChronology_sort": [ - " 27-1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000027 (1991)" - }, - "sort": [ - " 27-1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i-h1066822-12", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-18" - ], - "identifierV2": [ - { - "value": "JQL 08-18", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 26-35 (1990 - 1999)" - ], - "volumeRaw": [ - "No. 26-35" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 35 - } - ], - "dateRange": [ - { - "gte": "1990-01-01", - "lte": "1999-01-01" - } - ], - "enumerationChronology_sort": [ - " 26-1990-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000018" - }, - "sort": [ - " 26-1990-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i16753896", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 23-24 (1987-1988)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 23-24 (1987-1988)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272238" - } - ], - "enumerationChronology": [ - "v. 23-24 (1987-1988)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272238" - ], - "idBarcode": [ - "33433078272238" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 23, - "lte": 24 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 23-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000023-24 (1987-1988)" - }, - "sort": [ - " 23-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i16753895", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 21-22 (1985-1986)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 21-22 (1985-1986)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272220" - } - ], - "enumerationChronology": [ - "v. 21-22 (1985-1986)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272220" - ], - "idBarcode": [ - "33433078272220" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 21, - "lte": 22 - } - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1986" - } - ], - "enumerationChronology_sort": [ - " 21-1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000021-22 (1985-1986)" - }, - "sort": [ - " 21-1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i16753894", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 19-20 (1983-1984)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 19-20 (1983-1984)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272212" - } - ], - "enumerationChronology": [ - "v. 19-20 (1983-1984)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272212" - ], - "idBarcode": [ - "33433078272212" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 19, - "lte": 20 - } - ], - "dateRange": [ - { - "gte": "1983", - "lte": "1984" - } - ], - "enumerationChronology_sort": [ - " 19-1983" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000019-20 (1983-1984)" - }, - "sort": [ - " 19-1983" - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i16753893", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 18 (1982)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 18 (1982)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272204" - } - ], - "enumerationChronology": [ - "v. 18 (1982)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272204" - ], - "idBarcode": [ - "33433078272204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 18, - "lte": 18 - } - ], - "dateRange": [ - { - "gte": "1982", - "lte": "1982" - } - ], - "enumerationChronology_sort": [ - " 18-1982" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000018 (1982)" - }, - "sort": [ - " 18-1982" - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i16753897", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 25-26 (1989-90) + Index v. 16-25 (1980-90)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 25-26 (1989-90) + Index v. 16-25 (1980-90)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272246" - } - ], - "enumerationChronology": [ - "v. 25-26 (1989-90) + Index v. 16-25 (1980-90)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272246" - ], - "idBarcode": [ - "33433078272246" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 26 - }, - { - "gte": 16, - "lte": 25 - } - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " 16-1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000025-26 (1989-90) + Index v. 16-25 (1980-90)" - }, - "sort": [ - " 16-1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i16753892", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 16-17 (1980-1981)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 16-17 (1980-1981)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272196" - } - ], - "enumerationChronology": [ - "v. 16-17 (1980-1981)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272196" - ], - "idBarcode": [ - "33433078272196" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 17 - } - ], - "dateRange": [ - { - "gte": "1980", - "lte": "1981" - } - ], - "enumerationChronology_sort": [ - " 16-1980" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000016-17 (1980-1981)" - }, - "sort": [ - " 16-1980" - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i16753891", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 14-15 (1978-1979)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 14-15 (1978-1979)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272188" - } - ], - "enumerationChronology": [ - "v. 14-15 (1978-1979)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272188" - ], - "idBarcode": [ - "33433078272188" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 15 - } - ], - "dateRange": [ - { - "gte": "1978", - "lte": "1979" - } - ], - "enumerationChronology_sort": [ - " 14-1978" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000014-15 (1978-1979)" - }, - "sort": [ - " 14-1978" - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i16753890", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 13 (1977)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 13 (1977)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272170" - } - ], - "enumerationChronology": [ - "v. 13 (1977)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272170" - ], - "idBarcode": [ - "33433078272170" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1977", - "lte": "1977" - } - ], - "enumerationChronology_sort": [ - " 13-1977" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000013 (1977)" - }, - "sort": [ - " 13-1977" - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i16753889", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 11-12 (1975-1976)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 11-12 (1975-1976)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272162" - } - ], - "enumerationChronology": [ - "v. 11-12 (1975-1976)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272162" - ], - "idBarcode": [ - "33433078272162" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1975", - "lte": "1976" - } - ], - "enumerationChronology_sort": [ - " 11-1975" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000011-12 (1975-1976)" - }, - "sort": [ - " 11-1975" - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i16753887", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 8-9 (1972-1973)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 8-9 (1972-1973)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272147" - } - ], - "enumerationChronology": [ - "v. 8-9 (1972-1973)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272147" - ], - "idBarcode": [ - "33433078272147" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 9 - } - ], - "dateRange": [ - { - "gte": "1972", - "lte": "1973" - } - ], - "enumerationChronology_sort": [ - " 8-1972" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000008-9 (1972-1973)" - }, - "sort": [ - " 8-1972" - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i16753886", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 7 (1971)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 7 (1971)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272139" - } - ], - "enumerationChronology": [ - "v. 7 (1971)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272139" - ], - "idBarcode": [ - "33433078272139" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "dateRange": [ - { - "gte": "1971", - "lte": "1971" - } - ], - "enumerationChronology_sort": [ - " 7-1971" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000007 (1971)" - }, - "sort": [ - " 7-1971" - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i16753885", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 5-6 (1969-1970)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 5-6 (1969-1970)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272121" - } - ], - "enumerationChronology": [ - "v. 5-6 (1969-1970)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272121" - ], - "idBarcode": [ - "33433078272121" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 6 - } - ], - "dateRange": [ - { - "gte": "1969", - "lte": "1970" - } - ], - "enumerationChronology_sort": [ - " 5-1969" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000005-6 (1969-1970)" - }, - "sort": [ - " 5-1969" - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i16753888", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 10 (1974) + Index v. 1-10" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 10 (1974) + Index v. 1-10", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272154" - } - ], - "enumerationChronology": [ - "v. 10 (1974) + Index v. 1-10" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272154" - ], - "idBarcode": [ - "33433078272154" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - }, - { - "gte": 1, - "lte": 10 - } - ], - "dateRange": [ - { - "gte": "1974", - "lte": "1974" - } - ], - "enumerationChronology_sort": [ - " 1-1974" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000010 (1974) + Index v. 1-10" - }, - "sort": [ - " 1-1974" - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i16753884", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-18 v. 1-4 (1965-1968)" - ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 1-4 (1965-1968)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078272113" - } - ], - "enumerationChronology": [ - "v. 1-4 (1965-1968)" - ], - "physicalLocation": [ - "JQL 08-18" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433078272113" - ], - "idBarcode": [ - "33433078272113" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 4 - } - ], - "dateRange": [ - { - "gte": "1965", - "lte": "1968" - } - ], - "enumerationChronology_sort": [ - " 1-1965" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-18 v. 000001-4 (1965-1968)" - }, - "sort": [ - " 1-1965" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b21506221", - "_score": 16.513554, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"A magazine of art, design and architecture.\"", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on: Issue 01 (2007/08); title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: Issue 01 (2007/08)", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Issue 01 (2007-08)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Faculty of Art, Design and Architecture, Kingston University" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 2007 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kiosk." - ], - "shelfMark": [ - "JQL 18-4" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "idIssn": [ - "1755-9626" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kingston University (London, England). Faculty of Art, Design and Architecture." - ], - "dateStartYear": [ - 2007 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 18-4" - }, - { - "type": "nypl:Bnumber", - "value": "21506221" - }, - { - "type": "bf:Issn", - "value": "1755-9626" - }, - { - "type": "nypl:Oclc", - "value": "190792176" - }, - { - "type": "nypl:Oclc", - "value": "190792176" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)190792176" - } - ], - "idOclc": [ - "190792176" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1671766334241, - "publicationStatement": [ - "London : Faculty of Art, Design and Architecture, Kingston University, 2007-" - ], - "identifier": [ - "urn:bnum:21506221", - "urn:issn:1755-9626", - "urn:oclc:190792176", - "urn:undefined:(OCoLC)190792176" - ], - "genreForm": [ - "Periodicals." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Periodicals.", - "Art." - ], - "titleDisplay": [ - "Kiosk." - ], - "uri": "b21506221", - "lccClassification": [ - "N1 .K56" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i35913145", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 18-4 issue 1 (2007/08)" - ], - "identifierV2": [ - { - "value": "JQL 18-4 issue 1 (2007/08)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433116522354" - } - ], - "enumerationChronology": [ - "issue 1 (2007/08)" - ], - "physicalLocation": [ - "JQL 18-4" - ], - "identifier": [ - "urn:barcode:33433116522354" - ], - "idBarcode": [ - "33433116522354" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 18-4 issue 1 (2007/08)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b16775643", - "_score": 16.4256, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title from cover.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "No. 16 (fall 1982)-" - ], - "subjectLiteral_exploded": [ - "Art", - "Art -- Research", - "Art -- Research -- Periodicals" - ], - "numItemDatesParsed": [ - 10 - ], - "publisherLiteral": [ - "University of Illinois Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 10 - ], - "createdYear": [ - 1982 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Visual arts research." - ], - "shelfMark": [ - "JQL 08-3" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83644328 " - ], - "idIssn": [ - "0736-0770" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-3" - }, - { - "type": "nypl:Bnumber", - "value": "16775643" - }, - { - "type": "bf:Issn", - "value": "0736-0770" - }, - { - "type": "bf:Lccn", - "value": "83644328 " - }, - { - "type": "nypl:Oclc", - "value": "9069635" - }, - { - "type": "nypl:Oclc", - "value": "9069635" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)9069635" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S240000007" - }, - { - "type": "bf:Issn", - "identifierStatus": "incorrect", - "value": "0160-3221" - } - ], - "idOclc": [ - "9069635" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "9(1983)-27(2001)-" - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-3" - } - ], - "physicalLocation": [ - "JQL 08-3" - ], - "location": [ - { - "code": "loc:mab82", - "label": "Schwarzman Building M1 - Art & Architecture Room 300" - } - ], - "uri": "h1090282", - "shelfMark": [ - "JQL 08-3" - ] - } - ], - "updatedAt": 1675273126903, - "publicationStatement": [ - "[Champaign, Ill.] : University of Illinois Press, c1982-" - ], - "identifier": [ - "urn:bnum:16775643", - "urn:issn:0736-0770", - "urn:lccn:83644328 ", - "urn:oclc:9069635", - "urn:undefined:(OCoLC)9069635", - "urn:undefined:(WaOLN)S240000007", - "b16775643#1.0001", - "urn:issn:0160-3221" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Art -- Research -- Periodicals." - ], - "titleDisplay": [ - "Visual arts research." - ], - "uri": "b16775643", - "lccClassification": [ - "N81 .R49" - ], - "numItems": [ - 10 - ], - "numAvailable": [ - 10 - ], - "placeOfPublication": [ - "[Champaign, Ill.]" - ], - "titleAlt": [ - "Vis. arts res.", - "Visual arts research" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 10, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i29405160", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433115147914" - } - ], - "enumerationChronology": [ - "v. 38, no. 1, Issue 74 (Sum. 2012)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433115147914" - ], - "idBarcode": [ - "33433115147914" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 38 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 38-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 v. 000038, no. 1, Issue 74 (Sum. 2012)" - }, - "sort": [ - " 38-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i29627807", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 v. 15-16 (1989-90)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 v. 15-16 (1989-90)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105255586" - } - ], - "enumerationChronology": [ - "v. 15-16 (1989-90)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433105255586" - ], - "idBarcode": [ - "33433105255586" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 15, - "lte": 16 - } - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " 15-1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 v. 000015-16 (1989-90)" - }, - "sort": [ - " 15-1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i17662016", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 26-27 (2000-2001)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 26-27 (2000-2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083142" - } - ], - "enumerationChronology": [ - "26-27 (2000-2001)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083142" - ], - "idBarcode": [ - "33433074083142" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " -2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 26-27 (2000-2001)" - }, - "sort": [ - " -2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i17662015", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 24-25 (1998-1999)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 24-25 (1998-1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083191" - } - ], - "enumerationChronology": [ - "24-25 (1998-1999)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083191" - ], - "idBarcode": [ - "33433074083191" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ - " -1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 24-25 (1998-1999)" - }, - "sort": [ - " -1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i17662014", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 21-23 (1995-1997)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 21-23 (1995-1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083217" - } - ], - "enumerationChronology": [ - "21-23 (1995-1997)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083217" - ], - "idBarcode": [ - "33433074083217" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " -1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 21-23 (1995-1997)" - }, - "sort": [ - " -1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i17662013", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 19-20 (1993-1994)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 19-20 (1993-1994)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083209" - } - ], - "enumerationChronology": [ - "19-20 (1993-1994)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083209" - ], - "idBarcode": [ - "33433074083209" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " -1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 19-20 (1993-1994)" - }, - "sort": [ - " -1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i17662012", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 17-18 (1991-1992)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 17-18 (1991-1992)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083225" - } - ], - "enumerationChronology": [ - "17-18 (1991-1992)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083225" - ], - "idBarcode": [ - "33433074083225" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " -1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 17-18 (1991-1992)" - }, - "sort": [ - " -1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i17662011", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 13-14 (1987-1988)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 13-14 (1987-1988)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083175" - } - ], - "enumerationChronology": [ - "13-14 (1987-1988)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083175" - ], - "idBarcode": [ - "33433074083175" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " -1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 13-14 (1987-1988)" - }, - "sort": [ - " -1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i17662010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 11-12 (1985-1986)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 11-12 (1985-1986)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083159" - } - ], - "enumerationChronology": [ - "11-12 (1985-1986)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083159" - ], - "idBarcode": [ - "33433074083159" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1986" - } - ], - "enumerationChronology_sort": [ - " -1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 11-12 (1985-1986)" - }, - "sort": [ - " -1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i17662009", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-3 9-10 (1983-1984)" - ], - "identifierV2": [ - { - "value": "JQL 08-3 9-10 (1983-1984)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074083183" - } - ], - "enumerationChronology": [ - "9-10 (1983-1984)" - ], - "physicalLocation": [ - "JQL 08-3" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433074083183" - ], - "idBarcode": [ - "33433074083183" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1983", - "lte": "1984" - } - ], - "enumerationChronology_sort": [ - " -1983" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-3 9-10 (1983-1984)" - }, - "sort": [ - " -1983" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b11560439", - "_score": 13.685429, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Indexed In", - "label": "Art index", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "RILA. Répertoire international de la littérature de l'art", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Avery index to architectural periodicals. Second edition. Revised and enlarged. Supplement", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Summaries in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1. jaarg., nr. 1/2 (1953)-" - ], - "subjectLiteral_exploded": [ - "Rijksmuseum (Netherlands)", - "Rijksmuseum (Netherlands) -- Periodicals", - "Art", - "Art -- Periodicals", - "Art -- Amsterdam", - "Art -- Amsterdam -- Periodicals" - ], - "numItemDatesParsed": [ - 90 - ], - "publisherLiteral": [ - "Rijks-Museum" - ], - "language": [ - { - "id": "lang:dut", - "label": "Dutch" - } - ], - "numItemsTotal": [ - 90 - ], - "createdYear": [ - 1953 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bulletin." - ], - "shelfMark": [ - "JQL 08-19" - ], - "numItemVolumesParsed": [ - 90 - ], - "createdString": [ - "1953" - ], - "idLccn": [ - "sn 86000271" - ], - "idIssn": [ - "0165-9510" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1953 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-19" - }, - { - "type": "nypl:Bnumber", - "value": "11560439" - }, - { - "type": "bf:Issn", - "value": "0165-9510" - }, - { - "type": "bf:Lccn", - "value": "sn 86000271" - }, - { - "type": "nypl:Oclc", - "value": "4272788" - }, - { - "type": "nypl:Oclc", - "value": "4272788" - }, - { - "type": "nypl:Oclc", - "value": "NYPG92-S1332" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1568914" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4272788" - } - ], - "idOclc": [ - "4272788", - "NYPG92-S1332" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1953)-65(2017), 66:2(2018)-67:3(2019),68:1(2020)-68:2(2020)-", - "v. 66, no. 1 (2018); v. 66, no. 4 (2018) - v. 67, no. 3 (2019); v. 68, no. 1 (2020) - no. 3 (2020); v. 69, no. 3 (2021); v. 70, no. 2 (2022) - no. 3 (2022)" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 66 No. 1 (2018)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 2 (2018)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 3 (2018)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 66 No. 4 (2018)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 1 (2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 2 (2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 3 (2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 67 No. 4 (2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 68 No. 1 (2020)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 2 (2020)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 3 (2020)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 68 No. 4 (2020)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 69 No. 1 (2021)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 69 No. 2 (2021)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 69 No. 3 (2021)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 69 No. 4 (2021)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 1 (2022)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 70 No. 2 (2022)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 70 No. 3 (2022)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-19" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-19" - } - ], - "physicalLocation": [ - "JQL 08-19" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:rcmb2", - "label": "Offsite" - } - ], - "uri": "h1059577", - "shelfMark": [ - "JQL 08-19" - ] - } - ], - "updatedAt": 1677204627427, - "publicationStatement": [ - "Amsterdam : Rijks-Museum, 1953-" - ], - "identifier": [ - "urn:bnum:11560439", - "urn:issn:0165-9510", - "urn:lccn:sn 86000271", - "urn:oclc:4272788", - "urn:oclc:NYPG92-S1332", - "urn:undefined:(WaOLN)nyp1568914", - "urn:undefined:(OCoLC)4272788" - ], - "numCheckinCardItems": [ - 19 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1953" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rijksmuseum (Netherlands) -- Periodicals.", - "Art -- Periodicals.", - "Art -- Amsterdam -- Periodicals." - ], - "titleDisplay": [ - "Bulletin." - ], - "uri": "b11560439", - "lccClassification": [ - "N2460 .A3" - ], - "numItems": [ - 71 - ], - "numAvailable": [ - 83 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "titleAlt": [ - "Bull. Rÿksmus.", - "Bulletin Mauritshuis", - "Bulletin van het Rijksmuseum" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 90, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-0", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 70 No. 3 (2022)" - ], - "volumeRaw": [ - "Vol. 70 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology_sort": [ - " 70-2022-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 70-2022-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-1", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 70 No. 2 (2022)" - ], - "volumeRaw": [ - "Vol. 70 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology_sort": [ - " 70-2022-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 70-2022-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-3", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 70 No. 1 (2022)" - ], - "volumeRaw": [ - "Vol. 70 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology_sort": [ - " 70-2022-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 70-2022-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 89 - }, - "_score": null, - "_source": { - "uri": "i39951329", - "status": [ - { - "id": "status:b", - "label": "New-in process" - } - ], - "status_packed": [ - "status:b||New-in process" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 70 no. 3 (2022)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 70 no. 3 (2022)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433133816284" - } - ], - "enumerationChronology": [ - "v. 70 no. 3 (2022)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "identifier": [ - "urn:barcode:33433133816284" - ], - "idBarcode": [ - "33433133816284" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "dateRange": [ - { - "gte": "2022", - "lte": "2022" - } - ], - "enumerationChronology_sort": [ - " 70-2022" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000070 no. 3 (2022)" - }, - "sort": [ - " 70-2022" - ] - }, - { - "_nested": { - "field": "items", - "offset": 88 - }, - "_score": null, - "_source": { - "uri": "i39914205", - "status": [ - { - "id": "status:b", - "label": "New-in process" - } - ], - "status_packed": [ - "status:b||New-in process" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 70 no. 2 (2022)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 70 no. 2 (2022)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433133814750" - } - ], - "enumerationChronology": [ - "v. 70 no. 2 (2022)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "identifier": [ - "urn:barcode:33433133814750" - ], - "idBarcode": [ - "33433133814750" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "dateRange": [ - { - "gte": "2022", - "lte": "2022" - } - ], - "enumerationChronology_sort": [ - " 70-2022" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000070 no. 2 (2022)" - }, - "sort": [ - " 70-2022" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-4", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 69 No. 4 (2021)" - ], - "volumeRaw": [ - "Vol. 69 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 69, - "lte": 69 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 69-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 69-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-5", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 69 No. 3 (2021)" - ], - "volumeRaw": [ - "Vol. 69 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 69, - "lte": 69 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 69-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 69-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-6", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 69 No. 2 (2021)" - ], - "volumeRaw": [ - "Vol. 69 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 69, - "lte": 69 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 69-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 69-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-7", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 69 No. 1 (2021)" - ], - "volumeRaw": [ - "Vol. 69 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 69, - "lte": 69 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 69-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 69-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 87 - }, - "_score": null, - "_source": { - "uri": "i39094674", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 69 no. 3 (2021)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 69 no. 3 (2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433132312749" - } - ], - "enumerationChronology": [ - "v. 69 no. 3 (2021)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433132312749" - ], - "idBarcode": [ - "33433132312749" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 69, - "lte": 69 - } - ], - "dateRange": [ - { - "gte": "2021", - "lte": "2021" - } - ], - "enumerationChronology_sort": [ - " 69-2021" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000069 no. 3 (2021)" - }, - "sort": [ - " 69-2021" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-2", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 68 No. 3 (2020)" - ], - "volumeRaw": [ - "Vol. 68 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020-01-01", - "lte": "2020-01-01" - } - ], - "enumerationChronology_sort": [ - " 68-2020-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 68-2020-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-8", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 68 No. 4 (2020)" - ], - "volumeRaw": [ - "Vol. 68 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020-01-01", - "lte": "2020-01-01" - } - ], - "enumerationChronology_sort": [ - " 68-2020-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 68-2020-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-9", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 68 No. 2 (2020)" - ], - "volumeRaw": [ - "Vol. 68 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020-01-01", - "lte": "2020-01-01" - } - ], - "enumerationChronology_sort": [ - " 68-2020-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 68-2020-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-10", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 68 No. 1 (2020)" - ], - "volumeRaw": [ - "Vol. 68 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020-01-01", - "lte": "2020-01-01" - } - ], - "enumerationChronology_sort": [ - " 68-2020-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 68-2020-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 86 - }, - "_score": null, - "_source": { - "uri": "i38109693", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 68, no. 2 (2020)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 68, no. 2 (2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128589565" - } - ], - "enumerationChronology": [ - "v. 68, no. 2 (2020)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433128589565" - ], - "idBarcode": [ - "33433128589565" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 68-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000068, no. 2 (2020)" - }, - "sort": [ - " 68-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 85 - }, - "_score": null, - "_source": { - "uri": "i39094662", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 68 no. 3 (2020)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 68 no. 3 (2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433132313184" - } - ], - "enumerationChronology": [ - "v. 68 no. 3 (2020)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433132313184" - ], - "idBarcode": [ - "33433132313184" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 68-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000068 no. 3 (2020)" - }, - "sort": [ - " 68-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-11", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 67 No. 3 (2019)" - ], - "volumeRaw": [ - "Vol. 67 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 67-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 67-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-12", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 67 No. 4 (2019)" - ], - "volumeRaw": [ - "Vol. 67 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 67-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 67-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-13", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 67 No. 2 (2019)" - ], - "volumeRaw": [ - "Vol. 67 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 67-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 67-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-14", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 67 No. 1 (2019)" - ], - "volumeRaw": [ - "Vol. 67 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 67-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 67-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 84 - }, - "_score": null, - "_source": { - "uri": "i37528681", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 67, no. 3 (2019)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 67, no. 3 (2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128509571" - } - ], - "enumerationChronology": [ - "v. 67, no. 3 (2019)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433128509571" - ], - "idBarcode": [ - "33433128509571" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 67-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000067, no. 3 (2019)" - }, - "sort": [ - " 67-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 83 - }, - "_score": null, - "_source": { - "uri": "i37379200", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 67, no. 2 (2019)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 67, no. 2 (2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121962835" - } - ], - "enumerationChronology": [ - "v. 67, no. 2 (2019)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121962835" - ], - "idBarcode": [ - "33433121962835" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 67-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000067, no. 2 (2019)" - }, - "sort": [ - " 67-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 82 - }, - "_score": null, - "_source": { - "uri": "i37012009", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 67 no. 1 (2019)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 67 no. 1 (2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121711620" - } - ], - "enumerationChronology": [ - "v. 67 no. 1 (2019)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121711620" - ], - "idBarcode": [ - "33433121711620" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 67-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000067 no. 1 (2019)" - }, - "sort": [ - " 67-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-15", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 66 No. 4 (2018)" - ], - "volumeRaw": [ - "Vol. 66 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 66-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 66-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-16", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 66 No. 3 (2018)" - ], - "volumeRaw": [ - "Vol. 66 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 66-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 66-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-17", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 66 No. 2 (2018)" - ], - "volumeRaw": [ - "Vol. 66 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 66-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 66-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1059577-18", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19" - ], - "identifierV2": [ - { - "value": "JQL 08-19", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 66 No. 1 (2018)" - ], - "volumeRaw": [ - "Vol. 66 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 66-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000019" - }, - "sort": [ - " 66-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 81 - }, - "_score": null, - "_source": { - "uri": "i36587547", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 66, no. 3 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 66, no. 3 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433122611373" - } - ], - "enumerationChronology": [ - "v. 66, no. 3 (2018)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NH" - ], - "identifier": [ - "urn:barcode:33433122611373" - ], - "idBarcode": [ - "33433122611373" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 66-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000066, no. 3 (2018)" - }, - "sort": [ - " 66-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 80 - }, - "_score": null, - "_source": { - "uri": "i36587546", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 66, no. 2 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 66, no. 2 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433122611381" - } - ], - "enumerationChronology": [ - "v. 66, no. 2 (2018)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NH" - ], - "identifier": [ - "urn:barcode:33433122611381" - ], - "idBarcode": [ - "33433122611381" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 66-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000066, no. 2 (2018)" - }, - "sort": [ - " 66-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 79 - }, - "_score": null, - "_source": { - "uri": "i36785774", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 66 no. 4 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 66 no. 4 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121696201" - } - ], - "enumerationChronology": [ - "v. 66 no. 4 (2018)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121696201" - ], - "idBarcode": [ - "33433121696201" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 66-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000066 no. 4 (2018)" - }, - "sort": [ - " 66-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 78 - }, - "_score": null, - "_source": { - "uri": "i36842152", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 66 no. 1 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 66 no. 1 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121700144" - } - ], - "enumerationChronology": [ - "v. 66 no. 1 (2018)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121700144" - ], - "idBarcode": [ - "33433121700144" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 66-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000066 no. 1 (2018)" - }, - "sort": [ - " 66-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 77 - }, - "_score": null, - "_source": { - "uri": "i36809132", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 65, no. 4 (2017)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 65, no. 4 (2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938576" - } - ], - "enumerationChronology": [ - "v. 65, no. 4 (2017)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938576" - ], - "idBarcode": [ - "33433124938576" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 65, - "lte": 65 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 65-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000065, no. 4 (2017)" - }, - "sort": [ - " 65-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 76 - }, - "_score": null, - "_source": { - "uri": "i36809128", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 65, no. 3 (2017)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 65, no. 3 (2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938584" - } - ], - "enumerationChronology": [ - "v. 65, no. 3 (2017)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938584" - ], - "idBarcode": [ - "33433124938584" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 65, - "lte": 65 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 65-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000065, no. 3 (2017)" - }, - "sort": [ - " 65-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 75 - }, - "_score": null, - "_source": { - "uri": "i36809126", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 65, no. 2 (2017)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 65, no. 2 (2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938592" - } - ], - "enumerationChronology": [ - "v. 65, no. 2 (2017)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938592" - ], - "idBarcode": [ - "33433124938592" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 65, - "lte": 65 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 65-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000065, no. 2 (2017)" - }, - "sort": [ - " 65-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 74 - }, - "_score": null, - "_source": { - "uri": "i36587336", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 65, no. 1 (2017)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 65, no. 1 (2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124930862" - } - ], - "enumerationChronology": [ - "v. 65, no. 1 (2017)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124930862" - ], - "idBarcode": [ - "33433124930862" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 65, - "lte": 65 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 65-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000065, no. 1 (2017)" - }, - "sort": [ - " 65-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 73 - }, - "_score": null, - "_source": { - "uri": "i36809123", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 64, no. 4 (2016)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 64, no. 4 (2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938527" - } - ], - "enumerationChronology": [ - "v. 64, no. 4 (2016)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938527" - ], - "idBarcode": [ - "33433124938527" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 64, - "lte": 64 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 64-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000064, no. 4 (2016)" - }, - "sort": [ - " 64-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 72 - }, - "_score": null, - "_source": { - "uri": "i36809121", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 64, no. 3 (2016)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 64, no. 3 (2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938519" - } - ], - "enumerationChronology": [ - "v. 64, no. 3 (2016)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938519" - ], - "idBarcode": [ - "33433124938519" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 64, - "lte": 64 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 64-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000064, no. 3 (2016)" - }, - "sort": [ - " 64-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 71 - }, - "_score": null, - "_source": { - "uri": "i36809120", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 64, no. 2 (2016)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 64, no. 2 (2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938501" - } - ], - "enumerationChronology": [ - "v. 64, no. 2 (2016)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938501" - ], - "idBarcode": [ - "33433124938501" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 64, - "lte": 64 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 64-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000064, no. 2 (2016)" - }, - "sort": [ - " 64-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 70 - }, - "_score": null, - "_source": { - "uri": "i36809118", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 64, no. 1 (2016)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 64, no. 1 (2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938493" - } - ], - "enumerationChronology": [ - "v. 64, no. 1 (2016)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938493" - ], - "idBarcode": [ - "33433124938493" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 64, - "lte": 64 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ - " 64-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000064, no. 1 (2016)" - }, - "sort": [ - " 64-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 69 - }, - "_score": null, - "_source": { - "uri": "i36809115", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 63, no. 4 (2015)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 63, no. 4 (2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938535" - } - ], - "enumerationChronology": [ - "v. 63, no. 4 (2015)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938535" - ], - "idBarcode": [ - "33433124938535" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 63, - "lte": 63 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 63-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000063, no. 4 (2015)" - }, - "sort": [ - " 63-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 68 - }, - "_score": null, - "_source": { - "uri": "i36809112", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 63, no. 3 (2015)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 63, no. 3 (2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938543" - } - ], - "enumerationChronology": [ - "v. 63, no. 3 (2015)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938543" - ], - "idBarcode": [ - "33433124938543" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 63, - "lte": 63 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 63-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000063, no. 3 (2015)" - }, - "sort": [ - " 63-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 67 - }, - "_score": null, - "_source": { - "uri": "i36809110", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 63, no. 2 (2015)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 63, no. 2 (2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938550" - } - ], - "enumerationChronology": [ - "v. 63, no. 2 (2015)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938550" - ], - "idBarcode": [ - "33433124938550" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 63, - "lte": 63 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 63-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000063, no. 2 (2015)" - }, - "sort": [ - " 63-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 66 - }, - "_score": null, - "_source": { - "uri": "i36809109", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 63, no. 1 (2015)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 63, no. 1 (2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938568" - } - ], - "enumerationChronology": [ - "v. 63, no. 1 (2015)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938568" - ], - "idBarcode": [ - "33433124938568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 63, - "lte": 63 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ - " 63-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000063, no. 1 (2015)" - }, - "sort": [ - " 63-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 65 - }, - "_score": null, - "_source": { - "uri": "i36809106", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 62, no. 4 (2014)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 62, no. 4 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938485" - } - ], - "enumerationChronology": [ - "v. 62, no. 4 (2014)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938485" - ], - "idBarcode": [ - "33433124938485" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 62-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000062, no. 4 (2014)" - }, - "sort": [ - " 62-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 64 - }, - "_score": null, - "_source": { - "uri": "i36809104", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 62, no. 3 (2014)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 62, no. 3 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938477" - } - ], - "enumerationChronology": [ - "v. 62, no. 3 (2014)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938477" - ], - "idBarcode": [ - "33433124938477" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 62-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000062, no. 3 (2014)" - }, - "sort": [ - " 62-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 63 - }, - "_score": null, - "_source": { - "uri": "i36809103", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 62, no. 2 (2014)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 62, no. 2 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938469" - } - ], - "enumerationChronology": [ - "v. 62, no. 2 (2014)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938469" - ], - "idBarcode": [ - "33433124938469" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 62-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000062, no. 2 (2014)" - }, - "sort": [ - " 62-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 62 - }, - "_score": null, - "_source": { - "uri": "i36587273", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 62, no. 1 (2014) " - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 62, no. 1 (2014) ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124930854" - } - ], - "enumerationChronology": [ - "v. 62, no. 1 (2014) " - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124930854" - ], - "idBarcode": [ - "33433124930854" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 62-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000062, no. 1 (2014) " - }, - "sort": [ - " 62-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 61 - }, - "_score": null, - "_source": { - "uri": "i36809100", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 61, no. 4 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 61, no. 4 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938451" - } - ], - "enumerationChronology": [ - "v. 61, no. 4 (2013)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938451" - ], - "idBarcode": [ - "33433124938451" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 61-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000061, no. 4 (2013)" - }, - "sort": [ - " 61-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 60 - }, - "_score": null, - "_source": { - "uri": "i36809097", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 61, no. 3 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 61, no. 3 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938444" - } - ], - "enumerationChronology": [ - "v. 61, no. 3 (2013)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938444" - ], - "idBarcode": [ - "33433124938444" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 61-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000061, no. 3 (2013)" - }, - "sort": [ - " 61-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 59 - }, - "_score": null, - "_source": { - "uri": "i36809096", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 61, no. 2 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 61, no. 2 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938436" - } - ], - "enumerationChronology": [ - "v. 61, no. 2 (2013)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938436" - ], - "idBarcode": [ - "33433124938436" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 61-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000061, no. 2 (2013)" - }, - "sort": [ - " 61-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 58 - }, - "_score": null, - "_source": { - "uri": "i36809095", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 61, no. 1 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 61, no. 1 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938428" - } - ], - "enumerationChronology": [ - "v. 61, no. 1 (2013)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938428" - ], - "idBarcode": [ - "33433124938428" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 61-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000061, no. 1 (2013)" - }, - "sort": [ - " 61-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 57 - }, - "_score": null, - "_source": { - "uri": "i36809092", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 60, no. 4 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 60, no. 4 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938410" - } - ], - "enumerationChronology": [ - "v. 60, no. 4 (2012)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938410" - ], - "idBarcode": [ - "33433124938410" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 60-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000060, no. 4 (2012)" - }, - "sort": [ - " 60-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 56 - }, - "_score": null, - "_source": { - "uri": "i36809091", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 60, no. 3 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 60, no. 3 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938402" - } - ], - "enumerationChronology": [ - "v. 60, no. 3 (2012)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938402" - ], - "idBarcode": [ - "33433124938402" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 60-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000060, no. 3 (2012)" - }, - "sort": [ - " 60-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 55 - }, - "_score": null, - "_source": { - "uri": "i36809089", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 60, no. 2 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 60, no. 2 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938394" - } - ], - "enumerationChronology": [ - "v. 60, no. 2 (2012)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938394" - ], - "idBarcode": [ - "33433124938394" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 60-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000060, no. 2 (2012)" - }, - "sort": [ - " 60-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 54 - }, - "_score": null, - "_source": { - "uri": "i36809088", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 60, no. 1 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 60, no. 1 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938386" - } - ], - "enumerationChronology": [ - "v. 60, no. 1 (2012)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938386" - ], - "idBarcode": [ - "33433124938386" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 60-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000060, no. 1 (2012)" - }, - "sort": [ - " 60-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 53 - }, - "_score": null, - "_source": { - "uri": "i36809087", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 59, no. 4 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 59, no. 4 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938378" - } - ], - "enumerationChronology": [ - "v. 59, no. 4 (2011)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938378" - ], - "idBarcode": [ - "33433124938378" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 59-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000059, no. 4 (2011)" - }, - "sort": [ - " 59-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 52 - }, - "_score": null, - "_source": { - "uri": "i36809085", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 59, no. 3 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 59, no. 3 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938360" - } - ], - "enumerationChronology": [ - "v. 59, no. 3 (2011)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938360" - ], - "idBarcode": [ - "33433124938360" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 59-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000059, no. 3 (2011)" - }, - "sort": [ - " 59-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 51 - }, - "_score": null, - "_source": { - "uri": "i36809083", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 59, no. 2 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 59, no. 2 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124938352" - } - ], - "enumerationChronology": [ - "v. 59, no. 2 (2011)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124938352" - ], - "idBarcode": [ - "33433124938352" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 59-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000059, no. 2 (2011)" - }, - "sort": [ - " 59-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 50 - }, - "_score": null, - "_source": { - "uri": "i36587267", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:4", - "label": "serial, loose" - } - ], - "catalogItemType_packed": [ - "catalogItemType:4||serial, loose" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 59, no. 1 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 59, no. 1 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124930839" - } - ], - "enumerationChronology": [ - "v. 59, no. 1 (2011)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124930839" - ], - "idBarcode": [ - "33433124930839" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 59-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000059, no. 1 (2011)" - }, - "sort": [ - " 59-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 49 - }, - "_score": null, - "_source": { - "uri": "i36975113", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:29", - "label": "bundled materials (vols.)" - } - ], - "catalogItemType_packed": [ - "catalogItemType:29||bundled materials (vols.)" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 59 (2011); v. 62 (2014) & v. 65 (2017):indexes" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 59 (2011); v. 62 (2014) & v. 65 (2017):indexes", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433124984265" - } - ], - "enumerationChronology": [ - "v. 59 (2011); v. 62 (2014) & v. 65 (2017):indexes" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433124984265" - ], - "idBarcode": [ - "33433124984265" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - }, - { - "gte": 62, - "lte": 62 - }, - { - "gte": 65, - "lte": 65 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ - " 59-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000059 (2011); v. 62 (2014) & v. 65 (2017):indexes" - }, - "sort": [ - " 59-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 48 - }, - "_score": null, - "_source": { - "uri": "i28757665", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 58 (2010) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 58 (2010) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099608048" - } - ], - "enumerationChronology": [ - "v. 58 (2010) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433099608048" - ], - "idBarcode": [ - "33433099608048" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ - " 58-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000058 (2010) & Index" - }, - "sort": [ - " 58-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 47 - }, - "_score": null, - "_source": { - "uri": "i28757661", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 57 (2009) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 57 (2009) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099608055" - } - ], - "enumerationChronology": [ - "v. 57 (2009) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433099608055" - ], - "idBarcode": [ - "33433099608055" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 57, - "lte": 57 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ - " 57-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000057 (2009) & Index" - }, - "sort": [ - " 57-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 46 - }, - "_score": null, - "_source": { - "uri": "i28757051", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 56 (2008) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 56 (2008) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099607917" - } - ], - "enumerationChronology": [ - "v. 56 (2008) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433099607917" - ], - "idBarcode": [ - "33433099607917" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 56, - "lte": 56 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ - " 56-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000056 (2008) & Index" - }, - "sort": [ - " 56-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 45 - }, - "_score": null, - "_source": { - "uri": "i28756751", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 55 (2007) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 55 (2007) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099608063" - } - ], - "enumerationChronology": [ - "v. 55 (2007) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433099608063" - ], - "idBarcode": [ - "33433099608063" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 55, - "lte": 55 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 55-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000055 (2007) & Index" - }, - "sort": [ - " 55-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i28756731", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 54 (2006) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 54 (2006) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099608188" - } - ], - "enumerationChronology": [ - "v. 54 (2006) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433099608188" - ], - "idBarcode": [ - "33433099608188" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 54, - "lte": 54 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ - " 54-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000054 (2006) & Index" - }, - "sort": [ - " 54-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i17508061", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 53 (2005)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 53 (2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071526242" - } - ], - "enumerationChronology": [ - "v. 53 (2005)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433071526242" - ], - "idBarcode": [ - "33433071526242" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 53, - "lte": 53 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ - " 53-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000053 (2005)" - }, - "sort": [ - " 53-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i17508060", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 52 (2004)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 52 (2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071526234" - } - ], - "enumerationChronology": [ - "v. 52 (2004)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433071526234" - ], - "idBarcode": [ - "33433071526234" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 52, - "lte": 52 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ - " 52-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000052 (2004)" - }, - "sort": [ - " 52-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i17508059", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 51 (2003) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 51 (2003) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071526226" - } - ], - "enumerationChronology": [ - "v. 51 (2003) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433071526226" - ], - "idBarcode": [ - "33433071526226" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 51-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000051 (2003) & Index" - }, - "sort": [ - " 51-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i17508058", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 50 (2002) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 50 (2002) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071526218" - } - ], - "enumerationChronology": [ - "v. 50 (2002) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433071526218" - ], - "idBarcode": [ - "33433071526218" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " 50-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000050 (2002) & Index" - }, - "sort": [ - " 50-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i17508057", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 49 (2001) & Index" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 49 (2001) & Index", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071526143" - } - ], - "enumerationChronology": [ - "v. 49 (2001) & Index" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433071526143" - ], - "idBarcode": [ - "33433071526143" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 49, - "lte": 49 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " 49-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000049 (2001) & Index" - }, - "sort": [ - " 49-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i17508056", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 48 (2000)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 48 (2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105255578" - } - ], - "enumerationChronology": [ - "v. 48 (2000)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433105255578" - ], - "idBarcode": [ - "33433105255578" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 48, - "lte": 48 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ - " 48-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000048 (2000)" - }, - "sort": [ - " 48-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i12693382", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 46-47 (1998-1999)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 46-47 (1998-1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846223" - } - ], - "enumerationChronology": [ - "v. 46-47 (1998-1999)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846223" - ], - "idBarcode": [ - "33433019846223" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 46, - "lte": 47 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ - " 46-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000046-47 (1998-1999)" - }, - "sort": [ - " 46-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i12693381", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 43-45 (1995-1997)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 43-45 (1995-1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846215" - } - ], - "enumerationChronology": [ - "v. 43-45 (1995-1997)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846215" - ], - "idBarcode": [ - "33433019846215" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 43, - "lte": 45 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " 43-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000043-45 (1995-1997)" - }, - "sort": [ - " 43-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i12693380", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 42 (1994)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 42 (1994)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846207" - } - ], - "enumerationChronology": [ - "v. 42 (1994)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846207" - ], - "idBarcode": [ - "33433019846207" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 42, - "lte": 42 - } - ], - "dateRange": [ - { - "gte": "1994", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " 42-1994" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000042 (1994)" - }, - "sort": [ - " 42-1994" - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i12693379", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 41 (1993)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 41 (1993)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846199" - } - ], - "enumerationChronology": [ - "v. 41 (1993)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846199" - ], - "idBarcode": [ - "33433019846199" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 41, - "lte": 41 - } - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1993" - } - ], - "enumerationChronology_sort": [ - " 41-1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000041 (1993)" - }, - "sort": [ - " 41-1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i12693378", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 40 (1992)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 40 (1992)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846181" - } - ], - "enumerationChronology": [ - "v. 40 (1992)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846181" - ], - "idBarcode": [ - "33433019846181" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 40, - "lte": 40 - } - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " 40-1992" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000040 (1992)" - }, - "sort": [ - " 40-1992" - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i12693377", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 39 (1991)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 39 (1991)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846173" - } - ], - "enumerationChronology": [ - "v. 39 (1991)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846173" - ], - "idBarcode": [ - "33433019846173" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 39, - "lte": 39 - } - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1991" - } - ], - "enumerationChronology_sort": [ - " 39-1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000039 (1991)" - }, - "sort": [ - " 39-1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i12693376", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 38 (1990)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 38 (1990)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846165" - } - ], - "enumerationChronology": [ - "v. 38 (1990)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846165" - ], - "idBarcode": [ - "33433019846165" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 38, - "lte": 38 - } - ], - "dateRange": [ - { - "gte": "1990", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " 38-1990" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000038 (1990)" - }, - "sort": [ - " 38-1990" - ] - }, - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i12693375", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 37 (1989)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 37 (1989)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846157" - } - ], - "enumerationChronology": [ - "v. 37 (1989)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846157" - ], - "idBarcode": [ - "33433019846157" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 37, - "lte": 37 - } - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " 37-1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000037 (1989)" - }, - "sort": [ - " 37-1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i12693374", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 35-36 (1987-1988)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 35-36 (1987-1988)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846140" - } - ], - "enumerationChronology": [ - "v. 35-36 (1987-1988)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846140" - ], - "idBarcode": [ - "33433019846140" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 35, - "lte": 36 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 35-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000035-36 (1987-1988)" - }, - "sort": [ - " 35-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i12693373", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 33-34 (1985-1986)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 33-34 (1985-1986)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846132" - } - ], - "enumerationChronology": [ - "v. 33-34 (1985-1986)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846132" - ], - "idBarcode": [ - "33433019846132" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1986" - } - ], - "enumerationChronology_sort": [ - " 33-1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000033-34 (1985-1986)" - }, - "sort": [ - " 33-1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 27 - }, - "_score": null, - "_source": { - "uri": "i12693372", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 30-32 (1982-1984)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 30-32 (1982-1984)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846124" - } - ], - "enumerationChronology": [ - "v. 30-32 (1982-1984)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846124" - ], - "idBarcode": [ - "33433019846124" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "1982", - "lte": "1984" - } - ], - "enumerationChronology_sort": [ - " 30-1982" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000030-32 (1982-1984)" - }, - "sort": [ - " 30-1982" - ] - }, - { - "_nested": { - "field": "items", - "offset": 26 - }, - "_score": null, - "_source": { - "uri": "i12693371", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 27-29 (1979-1981)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 27-29 (1979-1981)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846116" - } - ], - "enumerationChronology": [ - "v. 27-29 (1979-1981)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846116" - ], - "idBarcode": [ - "33433019846116" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "1979", - "lte": "1981" - } - ], - "enumerationChronology_sort": [ - " 27-1979" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000027-29 (1979-1981)" - }, - "sort": [ - " 27-1979" - ] - }, - { - "_nested": { - "field": "items", - "offset": 25 - }, - "_score": null, - "_source": { - "uri": "i12693370", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 23-26 (1975-1978)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 23-26 (1975-1978)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846108" - } - ], - "enumerationChronology": [ - "v. 23-26 (1975-1978)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846108" - ], - "idBarcode": [ - "33433019846108" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 23, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "1975", - "lte": "1978" - } - ], - "enumerationChronology_sort": [ - " 23-1975" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000023-26 (1975-1978)" - }, - "sort": [ - " 23-1975" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i12693369", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 19-22 (1971-1974)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 19-22 (1971-1974)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846090" - } - ], - "enumerationChronology": [ - "v. 19-22 (1971-1974)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846090" - ], - "idBarcode": [ - "33433019846090" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 19, - "lte": 22 - } - ], - "dateRange": [ - { - "gte": "1971", - "lte": "1974" - } - ], - "enumerationChronology_sort": [ - " 19-1971" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000019-22 (1971-1974)" - }, - "sort": [ - " 19-1971" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i12693368", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 16-18 (1968-1970)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 16-18 (1968-1970)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846082" - } - ], - "enumerationChronology": [ - "v. 16-18 (1968-1970)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846082" - ], - "idBarcode": [ - "33433019846082" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 18 - } - ], - "dateRange": [ - { - "gte": "1968", - "lte": "1970" - } - ], - "enumerationChronology_sort": [ - " 16-1968" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000016-18 (1968-1970)" - }, - "sort": [ - " 16-1968" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i12693367", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-19 v. 13-15 (1965-1967)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 13-15 (1965-1967)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846074" - } - ], - "enumerationChronology": [ - "v. 13-15 (1965-1967)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019846074" - ], - "idBarcode": [ - "33433019846074" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 15 - } - ], - "dateRange": [ - { - "gte": "1965", - "lte": "1967" - } - ], - "enumerationChronology_sort": [ - " 13-1965" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000013-15 (1965-1967)" - }, - "sort": [ - " 13-1965" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i12693366", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-19 v. 9-12 (1961-1964)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 9-12 (1961-1964)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846066" - } - ], - "enumerationChronology": [ - "v. 9-12 (1961-1964)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "identifier": [ - "urn:barcode:33433019846066" - ], - "idBarcode": [ - "33433019846066" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1961", - "lte": "1964" - } - ], - "enumerationChronology_sort": [ - " 9-1961" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000009-12 (1961-1964)" - }, - "sort": [ - " 9-1961" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i12693365", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-19 v. 5-8 (1957-1960)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 5-8 (1957-1960)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846058" - } - ], - "enumerationChronology": [ - "v. 5-8 (1957-1960)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "identifier": [ - "urn:barcode:33433019846058" - ], - "idBarcode": [ - "33433019846058" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 8 - } - ], - "dateRange": [ - { - "gte": "1957", - "lte": "1960" - } - ], - "enumerationChronology_sort": [ - " 5-1957" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000005-8 (1957-1960)" - }, - "sort": [ - " 5-1957" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i12693364", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-19 v. 1-4 (1953-1956)" - ], - "identifierV2": [ - { - "value": "JQL 08-19 v. 1-4 (1953-1956)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019846041" - } - ], - "enumerationChronology": [ - "v. 1-4 (1953-1956)" - ], - "physicalLocation": [ - "JQL 08-19" - ], - "identifier": [ - "urn:barcode:33433019846041" - ], - "idBarcode": [ - "33433019846041" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 4 - } - ], - "dateRange": [ - { - "gte": "1953", - "lte": "1956" - } - ], - "enumerationChronology_sort": [ - " 1-1953" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-19 v. 000001-4 (1953-1956)" - }, - "sort": [ - " 1-1953" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b12525718", - "_score": 13.62916, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published: Fratelli Palombi Editori, 1954-1984; L'Erma di Bretschneider, 1985- .", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "RILA. Répertoire international de la littérature de l'art", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Anno 25 (1978)-27 (1980) combined.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Anno 1, n. 1-2 (1954)-anno 32 (1985) ; nuova serie, 1 (1987)-" - ], - "subjectLiteral_exploded": [ - "Rome (Italy)", - "Rome (Italy) -- Galleries and museums" - ], - "numItemDatesParsed": [ - 45 - ], - "publisherLiteral": [ - "Gli Amici" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 45 - ], - "createdYear": [ - 1954 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bollettino dei Musei comunali di Roma" - ], - "shelfMark": [ - "JQL 08-17" - ], - "numItemVolumesParsed": [ - 45 - ], - "createdString": [ - "1954" - ], - "idLccn": [ - "64036787 //r882" - ], - "idIssn": [ - "0523-9346" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Amici dei musei di Roma (Italy)" - ], - "dateStartYear": [ - 1954 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JQL 08-17" - }, - { - "type": "nypl:Bnumber", - "value": "12525718" - }, - { - "type": "bf:Issn", - "value": "0523-9346" - }, - { - "type": "bf:Lccn", - "value": "64036787 //r882" - }, - { - "type": "nypl:Oclc", - "value": "2785323" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)S010000043" - } - ], - "idOclc": [ - "2785323" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "1(1954)-6(1959),8(1961)-32(1985) [N.S] 1(1987)-18(2004),25(2011)28(2014),32(2018)-", - "v. 25 (2011) - v. 28 (2014); v. 32 (2020)" - ], - "checkInBoxes": [ - { - "coverage": "No. 7 (1993)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 8 (1994)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 9 (1995)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 10 (1996)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 11 (1997)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 12 (1998)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 13 (1999)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 14 (2000)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 15 (2001)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 16 (2002)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 17 (2003)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 18 (2004)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 19 (2005)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 20 (2006)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 21 (2007)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 22 (2008)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 23 (2009)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 24 (2010)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 25 (2011)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 26 (2012)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 27 (2013)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 28 (2014)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 29 (2015)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 30 (2018)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 31 (2019)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 32 (2018)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Arrived" - }, - { - "coverage": "No. 33 (2021)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - }, - { - "coverage": "No. 34 (2022)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "JQL 08-17" - ], - "status": "Expected" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "JQL 08-17" - } - ], - "notes": [ - "Order transferred from GRD to ART per CCK/ART 7/29/04 ?EP" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "location": [ - { - "code": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "uri": "h1069076", - "shelfMark": [ - "JQL 08-17" - ] - } - ], - "updatedAt": 1675270544507, - "publicationStatement": [ - "[Roma] : Gli Amici, [1954]-" - ], - "identifier": [ - "urn:bnum:12525718", - "urn:issn:0523-9346", - "urn:lccn:64036787 //r882", - "urn:oclc:2785323", - "urn:undefined:(WaOLN)S010000043" - ], - "numCheckinCardItems": [ - 28 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1954" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rome (Italy) -- Galleries and museums." - ], - "titleDisplay": [ - "Bollettino dei Musei comunali di Roma / a cura degli Amici dei musei di Roma." - ], - "uri": "b12525718", - "lccClassification": [ - "AM55.R6 B6" - ], - "numItems": [ - 17 - ], - "numAvailable": [ - 34 - ], - "placeOfPublication": [ - "[Roma]" - ], - "titleAlt": [ - "Boll. Mus. comunali Roma", - "Bollettino dei Musei comunali di Roma" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 45, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 27 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-0", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 34 (2022)" - ], - "volumeRaw": [ - "No. 34" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 34, - "lte": 34 - } - ], - "dateRange": [ - { - "gte": "2022-01-01", - "lte": "2022-01-01" - } - ], - "enumerationChronology_sort": [ - " 34-2022-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 34-2022-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 26 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-1", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 33 (2021)" - ], - "volumeRaw": [ - "No. 33" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "2021-01-01", - "lte": "2021-01-01" - } - ], - "enumerationChronology_sort": [ - " 33-2021-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 33-2021-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 25 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-2", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 32 (2018)" - ], - "volumeRaw": [ - "No. 32" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 32-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 32-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i37359040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 32 (2018)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 32 (2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121729853" - } - ], - "enumerationChronology": [ - "N.S. v. 32 (2018)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121729853" - ], - "idBarcode": [ - "33433121729853" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 32-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000032 (2018)" - }, - "sort": [ - " 32-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-3", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 31 (2019)" - ], - "volumeRaw": [ - "No. 31" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 31 - } - ], - "dateRange": [ - { - "gte": "2019-01-01", - "lte": "2019-01-01" - } - ], - "enumerationChronology_sort": [ - " 31-2019-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 31-2019-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-4", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 30 (2018)" - ], - "volumeRaw": [ - "No. 30" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2018-01-01", - "lte": "2018-01-01" - } - ], - "enumerationChronology_sort": [ - " 30-2018-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 30-2018-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-5", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 29 (2015)" - ], - "volumeRaw": [ - "No. 29" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "2015-01-01", - "lte": "2015-01-01" - } - ], - "enumerationChronology_sort": [ - " 29-2015-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 29-2015-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-6", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 28 (2014)" - ], - "volumeRaw": [ - "No. 28" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "2014-01-01", - "lte": "2014-01-01" - } - ], - "enumerationChronology_sort": [ - " 28-2014-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 28-2014-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i33860628", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 28 (2014)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 28 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433117119341" - } - ], - "enumerationChronology": [ - "N.S. v. 28 (2014)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433117119341" - ], - "idBarcode": [ - "33433117119341" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 28-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000028 (2014)" - }, - "sort": [ - " 28-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-26", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 27 (2013)" - ], - "volumeRaw": [ - "No. 27" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2013-01-01", - "lte": "2013-01-01" - } - ], - "enumerationChronology_sort": [ - " 27-2013-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 27-2013-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i33682199", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 27 (2013)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 27 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433117979173" - } - ], - "enumerationChronology": [ - "N.S. v. 27 (2013)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433117979173" - ], - "idBarcode": [ - "33433117979173" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 27-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000027 (2013)" - }, - "sort": [ - " 27-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-27", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 26 (2012)" - ], - "volumeRaw": [ - "No. 26" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "2012-01-01", - "lte": "2012-01-01" - } - ], - "enumerationChronology_sort": [ - " 26-2012-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 26-2012-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i32391069", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 26 (2012)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 26 (2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433112611961" - } - ], - "enumerationChronology": [ - "N.S. v. 26 (2012)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433112611961" - ], - "idBarcode": [ - "33433112611961" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ - " 26-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000026 (2012)" - }, - "sort": [ - " 26-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-25", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 25 (2011)" - ], - "volumeRaw": [ - "No. 25" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 25 - } - ], - "dateRange": [ - { - "gte": "2011-01-01", - "lte": "2011-01-01" - } - ], - "enumerationChronology_sort": [ - " 25-2011-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 25-2011-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i30890910", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 25 (2011)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 25 (2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433101055220" - } - ], - "enumerationChronology": [ - "N.S. v. 25 (2011)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433101055220" - ], - "idBarcode": [ - "33433101055220" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 25 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ - " 25-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000025 (2011)" - }, - "sort": [ - " 25-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i12757465", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 v. 25-32 (1978-1985)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 v. 25-32 (1978-1985)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857568" - } - ], - "enumerationChronology": [ - "v. 25-32 (1978-1985)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857568" - ], - "idBarcode": [ - "33433019857568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "1978", - "lte": "1985" - } - ], - "enumerationChronology_sort": [ - " 25-1978" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 v. 000025-32 (1978-1985)" - }, - "sort": [ - " 25-1978" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-24", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 24 (2010)" - ], - "volumeRaw": [ - "No. 24" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 24, - "lte": 24 - } - ], - "dateRange": [ - { - "gte": "2010-01-01", - "lte": "2010-01-01" - } - ], - "enumerationChronology_sort": [ - " 24-2010-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 24-2010-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-23", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 23 (2009)" - ], - "volumeRaw": [ - "No. 23" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 23, - "lte": 23 - } - ], - "dateRange": [ - { - "gte": "2009-01-01", - "lte": "2009-01-01" - } - ], - "enumerationChronology_sort": [ - " 23-2009-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 23-2009-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-22", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 22 (2008)" - ], - "volumeRaw": [ - "No. 22" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 22, - "lte": 22 - } - ], - "dateRange": [ - { - "gte": "2008-01-01", - "lte": "2008-01-01" - } - ], - "enumerationChronology_sort": [ - " 22-2008-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 22-2008-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-21", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 21 (2007)" - ], - "volumeRaw": [ - "No. 21" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 21, - "lte": 21 - } - ], - "dateRange": [ - { - "gte": "2007-01-01", - "lte": "2007-01-01" - } - ], - "enumerationChronology_sort": [ - " 21-2007-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 21-2007-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-20", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 20 (2006)" - ], - "volumeRaw": [ - "No. 20" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 20, - "lte": 20 - } - ], - "dateRange": [ - { - "gte": "2006-01-01", - "lte": "2006-01-01" - } - ], - "enumerationChronology_sort": [ - " 20-2006-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 20-2006-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-19", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 19 (2005)" - ], - "volumeRaw": [ - "No. 19" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 19, - "lte": 19 - } - ], - "dateRange": [ - { - "gte": "2005-01-01", - "lte": "2005-01-01" - } - ], - "enumerationChronology_sort": [ - " 19-2005-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 19-2005-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-18", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 18 (2004)" - ], - "volumeRaw": [ - "No. 18" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 18, - "lte": 18 - } - ], - "dateRange": [ - { - "gte": "2004-01-01", - "lte": "2004-01-01" - } - ], - "enumerationChronology_sort": [ - " 18-2004-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 18-2004-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-17", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 17 (2003)" - ], - "volumeRaw": [ - "No. 17" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 17, - "lte": 17 - } - ], - "dateRange": [ - { - "gte": "2003-01-01", - "lte": "2003-01-01" - } - ], - "enumerationChronology_sort": [ - " 17-2003-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 17-2003-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i14288461", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 17-18 (2003-2004)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 17-18 (2003-2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060930082" - } - ], - "enumerationChronology": [ - "N.S. v. 17-18 (2003-2004)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433060930082" - ], - "idBarcode": [ - "33433060930082" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 17, - "lte": 18 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ - " 17-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000017-18 (2003-2004)" - }, - "sort": [ - " 17-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-16", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 16 (2002)" - ], - "volumeRaw": [ - "No. 16" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 16 - } - ], - "dateRange": [ - { - "gte": "2002-01-01", - "lte": "2002-01-01" - } - ], - "enumerationChronology_sort": [ - " 16-2002-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 16-2002-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i12757464", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 v. 16-24 (1969-1977)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 v. 16-24 (1969-1977)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857550" - } - ], - "enumerationChronology": [ - "v. 16-24 (1969-1977)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857550" - ], - "idBarcode": [ - "33433019857550" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 24 - } - ], - "dateRange": [ - { - "gte": "1969", - "lte": "1977" - } - ], - "enumerationChronology_sort": [ - " 16-1969" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 v. 000016-24 (1969-1977)" - }, - "sort": [ - " 16-1969" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-15", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 15 (2001)" - ], - "volumeRaw": [ - "No. 15" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 15, - "lte": 15 - } - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2001-01-01" - } - ], - "enumerationChronology_sort": [ - " 15-2001-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 15-2001-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-14", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 14 (2000)" - ], - "volumeRaw": [ - "No. 14" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 14 - } - ], - "dateRange": [ - { - "gte": "2000-01-01", - "lte": "2000-01-01" - } - ], - "enumerationChronology_sort": [ - " 14-2000-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 14-2000-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i12757472", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 14-16 (2000-2002)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 14-16 (2000-2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857634" - } - ], - "enumerationChronology": [ - "N.S. v. 14-16 (2000-2002)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857634" - ], - "idBarcode": [ - "33433019857634" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 16 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " 14-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000014-16 (2000-2002)" - }, - "sort": [ - " 14-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-13", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 13 (1999)" - ], - "volumeRaw": [ - "No. 13" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1999-01-01", - "lte": "1999-01-01" - } - ], - "enumerationChronology_sort": [ - " 13-1999-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 13-1999-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-12", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 12 (1998)" - ], - "volumeRaw": [ - "No. 12" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1998-01-01", - "lte": "1998-01-01" - } - ], - "enumerationChronology_sort": [ - " 12-1998-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 12-1998-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i12757471", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 12-13 (1998-1999)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 12-13 (1998-1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857626" - } - ], - "enumerationChronology": [ - "N.S. v. 12-13 (1998-1999)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "identifier": [ - "urn:barcode:33433019857626" - ], - "idBarcode": [ - "33433019857626" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ - " 12-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000012-13 (1998-1999)" - }, - "sort": [ - " 12-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-11", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 11 (1997)" - ], - "volumeRaw": [ - "No. 11" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ], - "dateRange": [ - { - "gte": "1997-01-01", - "lte": "1997-01-01" - } - ], - "enumerationChronology_sort": [ - " 11-1997-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 11-1997-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-10", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 10 (1996)" - ], - "volumeRaw": [ - "No. 10" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ], - "dateRange": [ - { - "gte": "1996-01-01", - "lte": "1996-01-01" - } - ], - "enumerationChronology_sort": [ - " 10-1996-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 10-1996-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-9", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 9 (1995)" - ], - "volumeRaw": [ - "No. 9" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 9 - } - ], - "dateRange": [ - { - "gte": "1995-01-01", - "lte": "1995-01-01" - } - ], - "enumerationChronology_sort": [ - " 9-1995-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 9-1995-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i12757470", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 9-11 (1995-1997)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 9-11 (1995-1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857618" - } - ], - "enumerationChronology": [ - "N.S. v. 9-11 (1995-1997)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857618" - ], - "idBarcode": [ - "33433019857618" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 11 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " 9-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000009-11 (1995-1997)" - }, - "sort": [ - " 9-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-8", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 8 (1994)" - ], - "volumeRaw": [ - "No. 8" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "dateRange": [ - { - "gte": "1994-01-01", - "lte": "1994-01-01" - } - ], - "enumerationChronology_sort": [ - " 8-1994-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 8-1994-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i12757463", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 v. 8-15 (1961-1968)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 v. 8-15 (1961-1968)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857543" - } - ], - "enumerationChronology": [ - "v. 8-15 (1961-1968)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857543" - ], - "idBarcode": [ - "33433019857543" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 15 - } - ], - "dateRange": [ - { - "gte": "1961", - "lte": "1968" - } - ], - "enumerationChronology_sort": [ - " 8-1961" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 v. 000008-15 (1961-1968)" - }, - "sort": [ - " 8-1961" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i-h1069076-7", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "holdingLocation": [ - { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab||Schwarzman Building - Art & Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17" - ], - "identifierV2": [ - { - "value": "JQL 08-17", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 7 (1993)" - ], - "volumeRaw": [ - "No. 7" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "dateRange": [ - { - "gte": "1993-01-01", - "lte": "1993-01-01" - } - ], - "enumerationChronology_sort": [ - " 7-1993-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aJQL 08-000017" - }, - "sort": [ - " 7-1993-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i12757469", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 7-8 (1993-1994)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 7-8 (1993-1994)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857600" - } - ], - "enumerationChronology": [ - "N.S. v. 7-8 (1993-1994)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857600" - ], - "idBarcode": [ - "33433019857600" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 8 - } - ], - "dateRange": [ - { - "gte": "1993", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " 7-1993" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000007-8 (1993-1994)" - }, - "sort": [ - " 7-1993" - ] - }, - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i12757468", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 5-6 (1991-1992)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 5-6 (1991-1992)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857592" - } - ], - "enumerationChronology": [ - "N.S. v. 5-6 (1991-1992)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "identifier": [ - "urn:barcode:33433019857592" - ], - "idBarcode": [ - "33433019857592" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 6 - } - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " 5-1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000005-6 (1991-1992)" - }, - "sort": [ - " 5-1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i12757467", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 3-4 (1989-1990)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 3-4 (1989-1990)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857584" - } - ], - "enumerationChronology": [ - "N.S. v. 3-4 (1989-1990)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "identifier": [ - "urn:barcode:33433019857584" - ], - "idBarcode": [ - "33433019857584" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 4 - } - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1990" - } - ], - "enumerationChronology_sort": [ - " 3-1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000003-4 (1989-1990)" - }, - "sort": [ - " 3-1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i12757466", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 N.S. v. 1-2 (1987-1988)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 N.S. v. 1-2 (1987-1988)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857576" - } - ], - "enumerationChronology": [ - "N.S. v. 1-2 (1987-1988)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857576" - ], - "idBarcode": [ - "33433019857576" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 2 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 1-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 N.S. v. 000001-2 (1987-1988)" - }, - "sort": [ - " 1-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i12757462", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1110", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - } - ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmb2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "shelfMark": [ - "JQL 08-17 v. 1-6 (1954-1959)" - ], - "identifierV2": [ - { - "value": "JQL 08-17 v. 1-6 (1954-1959)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019857535" - } - ], - "enumerationChronology": [ - "v. 1-6 (1954-1959)" - ], - "physicalLocation": [ - "JQL 08-17" - ], - "recapCustomerCode": [ - "NQ" - ], - "identifier": [ - "urn:barcode:33433019857535" - ], - "idBarcode": [ - "33433019857535" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 6 - } - ], - "dateRange": [ - { - "gte": "1954", - "lte": "1959" - } - ], - "enumerationChronology_sort": [ - " 1-1954" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJQL 08-17 v. 000001-6 (1954-1959)" - }, - "sort": [ - " 1-1954" - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-3149089ee876c7ae06e3c3d11d071381.json b/test/fixtures/query-3149089ee876c7ae06e3c3d11d071381.json new file mode 100644 index 00000000..8eeae49f --- /dev/null +++ b/test/fixtures/query-3149089ee876c7ae06e3c3d11d071381.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 93, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:10 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"ISBN \\\\-\\\\- 020\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"ISBN \\\\-\\\\- 020\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"ISBN \\\\-\\\\- 020\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1063" + }, + "timeout": 30000 + }, + "options": {}, + "id": 59 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-32d7184d0fa52e06db76c5375578a489.json b/test/fixtures/query-32d7184d0fa52e06db76c5375578a489.json deleted file mode 100644 index 916073e0..00000000 --- a/test/fixtures/query-32d7184d0fa52e06db76c5375578a489.json +++ /dev/null @@ -1,14078 +0,0 @@ -{ - "took": 1021, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 18434492, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000005", - "_score": null, - "_source": { - "extent": [ - "1 score (43 p.) + 1 part (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Acc. arr. for piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Soch. 22\"--Caption.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: 11049.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Concertos (Violin)", - "Concertos (Violin) -- Solo with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muzyka" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" - ], - "shelfMark": [ - "JMF 83-336" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wieniawski, Henri, 1835-1880." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-336" - }, - { - "type": "nypl:Bnumber", - "value": "10000005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-C" - }, - { - "type": "bf:Identifier", - "value": "11049. Muzyka" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100551" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200004" - } - ], - "idOclc": [ - "NYPG001000001-C" - ], - "uniformTitle": [ - "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Moskva : Muzyka, 1980." - ], - "identifier": [ - "urn:bnum:10000005", - "urn:oclc:NYPG001000001-C", - "urn:undefined:11049. Muzyka", - "urn:undefined:NNSZ00100551", - "urn:undefined:(WaOLN)nyp0200004" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Concertos (Violin) -- Solo with piano." - ], - "titleDisplay": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." - ], - "uri": "b10000005", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Concertos, no. 2, op. 22" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10000005" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-336" - ], - "identifierV2": [ - { - "value": "JMF 83-336", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032711909" - } - ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032711909" - ], - "idBarcode": [ - "33433032711909" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000007", - "_score": null, - "_source": { - "extent": [ - "14 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 7:35.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: Z.8917.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Guitar music", - "Guitar", - "Guitar -- Studies and exercises" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editio Musica" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Due studi per chitarra" - ], - "shelfMark": [ - "JMG 83-276" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Patachich, Iván." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-276" - }, - { - "type": "nypl:Bnumber", - "value": "10000007" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-C" - }, - { - "type": "bf:Identifier", - "value": "Z.8917. Editio Musica" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100552" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200006" - } - ], - "idOclc": [ - "NYPG001000002-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Budapest : Editio Musica, c1981." - ], - "identifier": [ - "urn:bnum:10000007", - "urn:oclc:NYPG001000002-C", - "urn:undefined:Z.8917. Editio Musica", - "urn:undefined:NNSZ00100552", - "urn:undefined:(WaOLN)nyp0200006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Guitar music.", - "Guitar -- Studies and exercises." - ], - "titleDisplay": [ - "Due studi per chitarra / Patachich Iván." - ], - "uri": "b10000007", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-276" - ], - "identifierV2": [ - { - "value": "JMG 83-276", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883591" - } - ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883591" - ], - "idBarcode": [ - "33433032883591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000276" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000009", - "_score": null, - "_source": { - "extent": [ - "30 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Edition Peters Nr. 5489.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: E.P. 13028.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Peters ; C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miniaturen II : 13 kleine Klavierstücke" - ], - "shelfMark": [ - "JMG 83-278" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Golle, Jürgen, 1942-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-278" - }, - { - "type": "nypl:Bnumber", - "value": "10000009" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters Nr. 5489 Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "E.P. 13028. Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100553" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200008" - } - ], - "idOclc": [ - "NYPG001000003-C" - ], - "uniformTitle": [ - "Miniaturen, no. 2" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000009", - "urn:oclc:NYPG001000003-C", - "urn:undefined:Edition Peters Nr. 5489 Edition Peters", - "urn:undefined:E.P. 13028. Edition Peters", - "urn:undefined:NNSZ00100553", - "urn:undefined:(WaOLN)nyp0200008" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." - ], - "uri": "b10000009", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen, no. 2" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000009" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-278" - ], - "identifierV2": [ - { - "value": "JMG 83-278", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883617" - } - ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883617" - ], - "idBarcode": [ - "33433032883617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000278" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000011", - "_score": null, - "_source": { - "extent": [ - "46 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Boeijenga" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1982" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Passie en pasen : suite voor orgel, opus 50" - ], - "shelfMark": [ - "JMG 83-279" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Berg, Jan J. van den." - ], - "createdString": [ - "1976" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-279" - }, - { - "type": "nypl:Bnumber", - "value": "10000011" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-C" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200010" - } - ], - "idOclc": [ - "NYPG001000004-C" - ], - "dateEndYear": [ - 1982 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." - ], - "identifier": [ - "urn:bnum:10000011", - "urn:oclc:NYPG001000004-C", - "urn:undefined:(WaOLN)nyp0200010" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music." - ], - "titleDisplay": [ - "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." - ], - "uri": "b10000011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sneek [Netherlands]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-279" - ], - "identifierV2": [ - { - "value": "JMG 83-279", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883625" - } - ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883625" - ], - "idBarcode": [ - "33433032883625" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000013", - "_score": null, - "_source": { - "extent": [ - "32 p. of music : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Arr. for piano with chord symbols; superlinear German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Germany (East)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harth Musik Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Disko Treff 1 : Klavier." - ], - "shelfMark": [ - "JMF 83-366" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-366" - }, - { - "type": "nypl:Bnumber", - "value": "10000013" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100555" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200012" - } - ], - "idOclc": [ - "NYPG001000005-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Leipzig : Harth Musik Verlag, c1980." - ], - "identifier": [ - "urn:bnum:10000013", - "urn:oclc:NYPG001000005-C", - "urn:undefined:NNSZ00100555", - "urn:undefined:(WaOLN)nyp0200012" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Germany (East)" - ], - "titleDisplay": [ - "Disko Treff 1 : Klavier." - ], - "uri": "b10000013", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Disko Treff eins." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000013" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-366" - ], - "identifierV2": [ - { - "value": "JMF 83-366", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032712204" - } - ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032712204" - ], - "idBarcode": [ - "33433032712204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000366" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000015", - "_score": null, - "_source": { - "extent": [ - "25 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For organ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A McAfee Music Publication.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: DM 220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Belwin-Mills" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suite no. 1 : 1977" - ], - "shelfMark": [ - "JNG 83-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hampton, Calvin." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 83-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000015" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-C" - }, - { - "type": "bf:Identifier", - "value": "DM 220. Belwin-Mills" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100556" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200014" - } - ], - "idOclc": [ - "NYPG001000006-C" - ], - "uniformTitle": [ - "Suite, organ, no. 1" - ], - "updatedAt": 1678726416948, - "publicationStatement": [ - "Melville, NY : Belwin-Mills, [1980?]" - ], - "identifier": [ - "urn:bnum:10000015", - "urn:oclc:NYPG001000006-C", - "urn:undefined:DM 220. Belwin-Mills", - "urn:undefined:NNSZ00100556", - "urn:undefined:(WaOLN)nyp0200014" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)" - ], - "titleDisplay": [ - "Suite no. 1 : 1977 / Calvin Hampton." - ], - "uri": "b10000015", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Melville, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Suite, no. 1" - ], - "tableOfContents": [ - "Fanfares -- Antiphon -- Toccata." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000015" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000017", - "_score": null, - "_source": { - "extent": [ - "1 score (17 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For baritone and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Words printed also as text.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 3:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Corbière, Tristan, 1845-1875", - "Corbière, Tristan, 1845-1875 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lettre du Mexique : pour baryton et piano, 1942" - ], - "shelfMark": [ - "JMG 83-395" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Escher, Rudolf." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Corbière, Tristan, 1845-1875." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-395" - }, - { - "type": "nypl:Bnumber", - "value": "10000017" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100557" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200016" - } - ], - "idOclc": [ - "NYPG001000007-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Amsterdam : Donemus, c1981." - ], - "identifier": [ - "urn:bnum:10000017", - "urn:oclc:NYPG001000007-C", - "urn:undefined:NNSZ00100557", - "urn:undefined:(WaOLN)nyp0200016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Corbière, Tristan, 1845-1875 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." - ], - "uri": "b10000017", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000017" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-395" - ], - "identifierV2": [ - { - "value": "JMG 83-395", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032735007" - } - ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032735007" - ], - "idBarcode": [ - "33433032735007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000395" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000019", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: M 18.487.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Waltzes (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zwölf Walzer und ein Epilog : für Klavier" - ], - "shelfMark": [ - "JMG 83-111" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Benary, Peter." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-111" - }, - { - "type": "nypl:Bnumber", - "value": "10000019" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-C" - }, - { - "type": "bf:Identifier", - "value": "Möseler M 18.487." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200018" - } - ], - "idOclc": [ - "NYPG001000008-C" - ], - "uniformTitle": [ - "Walzer und ein Epilog" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000019", - "urn:oclc:NYPG001000008-C", - "urn:undefined:Möseler M 18.487.", - "urn:undefined:NNSZ00100558", - "urn:undefined:(WaOLN)nyp0200018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Waltzes (Piano)" - ], - "titleDisplay": [ - "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." - ], - "uri": "b10000019", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Walzer und ein Epilog", - "Walzer und ein Epilog." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-111" - ], - "identifierV2": [ - { - "value": "JMG 83-111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845053" - } - ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845053" - ], - "idBarcode": [ - "33433032845053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000111" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000021", - "_score": null, - "_source": { - "extent": [ - "1 score (51 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: NM 384.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Neue Musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aurora : sinfonischer Prolog : Partitur" - ], - "shelfMark": [ - "JMG 83-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Weitzendorf, Heinz." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000021" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-C" - }, - { - "type": "bf:Identifier", - "value": "NM 384. Verlag Neue Musik" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200020" - } - ], - "idOclc": [ - "NYPG001000009-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Berlin : Verlag Neue Musik, c1978." - ], - "identifier": [ - "urn:bnum:10000021", - "urn:oclc:NYPG001000009-C", - "urn:undefined:NM 384. Verlag Neue Musik", - "urn:undefined:NNSZ00100559", - "urn:undefined:(WaOLN)nyp0200020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." - ], - "uri": "b10000021", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Berlin" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000021" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-113" - ], - "identifierV2": [ - { - "value": "JMG 83-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845079" - } - ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845079" - ], - "idBarcode": [ - "33433032845079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000023", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (18 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For band or wind ensemble.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Based on the composer's Veni creator spiritus.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: KC913.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Band music", - "Band music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shawnee Press" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica sacra" - ], - "shelfMark": [ - "JMF 83-38" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zaninelli, Luigi." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-38" - }, - { - "type": "nypl:Bnumber", - "value": "10000023" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-C" - }, - { - "type": "bf:Identifier", - "value": "KC913 Shawnee Press" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100560" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200022" - } - ], - "idOclc": [ - "NYPG001000010-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Delaware Water Gap, Pa. : Shawnee Press, c1979." - ], - "identifier": [ - "urn:bnum:10000023", - "urn:oclc:NYPG001000010-C", - "urn:undefined:KC913 Shawnee Press", - "urn:undefined:NNSZ00100560", - "urn:undefined:(WaOLN)nyp0200022" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Band music -- Scores." - ], - "titleDisplay": [ - "Musica sacra / Luigi Zaninelli." - ], - "uri": "b10000023", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delaware Water Gap, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-38" - ], - "identifierV2": [ - { - "value": "JMF 83-38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709028" - } - ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709028" - ], - "idBarcode": [ - "33433032709028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000038" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000025", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei Sonatinen für Klavier" - ], - "shelfMark": [ - "JMF 83-107" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stockmeier, Wolfgang." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-107" - }, - { - "type": "nypl:Bnumber", - "value": "10000025" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100561" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200024" - } - ], - "idOclc": [ - "NYPG001000011-C" - ], - "uniformTitle": [ - "Sonatinas, piano" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000025", - "urn:oclc:NYPG001000011-C", - "urn:undefined:NNSZ00100561", - "urn:undefined:(WaOLN)nyp0200024" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Drei Sonatinen für Klavier / Wolfgang Stockmeier." - ], - "uri": "b10000025", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatinas" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-107" - ], - "identifierV2": [ - { - "value": "JMF 83-107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709697" - } - ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709697" - ], - "idBarcode": [ - "33433032709697" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000027", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Violin)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei kleine Sonaten : für Violine solo" - ], - "shelfMark": [ - "JMF 83-95" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Köhler, Friedemann." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 172" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-95" - }, - { - "type": "nypl:Bnumber", - "value": "10000027" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100562" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200026" - } - ], - "idOclc": [ - "NYPG001000012-C" - ], - "uniformTitle": [ - "Kleine Sonaten, violin" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Wolfenbüttel : Möseler Verlag, c1979." - ], - "identifier": [ - "urn:bnum:10000027", - "urn:oclc:NYPG001000012-C", - "urn:undefined:NNSZ00100562", - "urn:undefined:(WaOLN)nyp0200026" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Violin)" - ], - "titleDisplay": [ - "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." - ], - "uri": "b10000027", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kleine Sonaten" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000027" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-95" - ], - "identifierV2": [ - { - "value": "JMF 83-95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709572" - } - ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709572" - ], - "idBarcode": [ - "33433032709572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000095" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000029", - "_score": null, - "_source": { - "extent": [ - "16 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: 29589.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Organ music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Hansen ; Distribution, Magnamusic-Baton" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cruor : for organ solo, 1977" - ], - "shelfMark": [ - "JMF 83-93" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lorentzen, Bent." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82771131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-93" - }, - { - "type": "nypl:Bnumber", - "value": "10000029" - }, - { - "type": "bf:Lccn", - "value": "82771131" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-C" - }, - { - "type": "bf:Identifier", - "value": "Wilhelm Hansen edition no. 4372." - }, - { - "type": "bf:Identifier", - "value": "29589." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100563" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200028" - } - ], - "idOclc": [ - "NYPG001000013-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." - ], - "identifier": [ - "urn:bnum:10000029", - "urn:lccn:82771131", - "urn:oclc:NYPG001000013-C", - "urn:undefined:Wilhelm Hansen edition no. 4372.", - "urn:undefined:29589.", - "urn:undefined:NNSZ00100563", - "urn:undefined:(WaOLN)nyp0200028" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Organ music." - ], - "titleDisplay": [ - "Cruor : for organ solo, 1977 / B. Lorentzen." - ], - "uri": "b10000029", - "lccClassification": [ - "M11 .L" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen ; New York : [s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-93" - ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709556" - } - ], - "physicalLocation": [ - "JMF 83-93" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709556" - ], - "idBarcode": [ - "33433032709556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000093" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000031", - "_score": null, - "_source": { - "extent": [ - "21 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Müller" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Neun Miniaturen : für Klavier : op. 52" - ], - "shelfMark": [ - "JMG 83-17" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Petersen, Wilhelm, 1890-1957." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-17" - }, - { - "type": "nypl:Bnumber", - "value": "10000031" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-C" - }, - { - "type": "bf:Identifier", - "value": "W. Müller WM 1713 SM." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100564" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200030" - } - ], - "idOclc": [ - "NYPG001000014-C" - ], - "uniformTitle": [ - "Miniaturen" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Heidelberg : W. Müller, c1979." - ], - "identifier": [ - "urn:bnum:10000031", - "urn:oclc:NYPG001000014-C", - "urn:undefined:W. Müller WM 1713 SM.", - "urn:undefined:NNSZ00100564", - "urn:undefined:(WaOLN)nyp0200030" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." - ], - "uri": "b10000031", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Heidelberg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen", - "Miniaturen." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-17" - ], - "identifierV2": [ - { - "value": "JMG 83-17", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841631" - } - ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841631" - ], - "idBarcode": [ - "33433032841631" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000017" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000033", - "_score": null, - "_source": { - "extent": [ - "1 score (20 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For voice and organ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs (Medium voice) with organ", - "Psalms (Music)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Agápe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Psalm settings" - ], - "shelfMark": [ - "JMG 83-59" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nelhybel, Vaclav." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-59" - }, - { - "type": "nypl:Bnumber", - "value": "10000033" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100565" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200032" - } - ], - "idOclc": [ - "NYPG001000015-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Carol Stream, Ill. : Agápe, c1981." - ], - "identifier": [ - "urn:bnum:10000033", - "urn:oclc:NYPG001000015-C", - "urn:undefined:NNSZ00100565", - "urn:undefined:(WaOLN)nyp0200032" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs (Medium voice) with organ.", - "Psalms (Music)" - ], - "titleDisplay": [ - "Psalm settings / Vaclav Nelhybel." - ], - "uri": "b10000033", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Carol Stream, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000033" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842035" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842035" - ], - "idBarcode": [ - "33433032842035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000035", - "_score": null, - "_source": { - "extent": [ - "22 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Suite.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 12:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Serenade voor piano : 1980" - ], - "shelfMark": [ - "JMG 83-6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kasbergen, Marinus, 1936-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-6" - }, - { - "type": "nypl:Bnumber", - "value": "10000035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100566" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200034" - } - ], - "idOclc": [ - "NYPG001000016-C" - ], - "uniformTitle": [ - "Serenade, piano" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000035", - "urn:oclc:NYPG001000016-C", - "urn:undefined:NNSZ00100566", - "urn:undefined:(WaOLN)nyp0200034" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Piano)" - ], - "titleDisplay": [ - "Serenade voor piano : 1980 / Marinus Kasbergen." - ], - "uri": "b10000035", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Serenade" - ], - "tableOfContents": [ - "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841490" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841490" - ], - "idBarcode": [ - "33433032841490" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000037", - "_score": null, - "_source": { - "extent": [ - "13a p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 15:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Guitar)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Eight studies for guitar : in form of a suite : 1979" - ], - "shelfMark": [ - "JMG 83-5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hekster, Walter." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-5" - }, - { - "type": "nypl:Bnumber", - "value": "10000037" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200036" - } - ], - "idOclc": [ - "NYPG001000017-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000037", - "urn:oclc:NYPG001000017-C", - "urn:undefined:NNSZ00100567", - "urn:undefined:(WaOLN)nyp0200036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Guitar)" - ], - "titleDisplay": [ - "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." - ], - "uri": "b10000037", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000037" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-5" - ], - "identifierV2": [ - { - "value": "JMG 83-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841482" - } - ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841482" - ], - "idBarcode": [ - "33433032841482" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000005" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000039", - "_score": null, - "_source": { - "extent": [ - "49 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five sonatas for pianoforte" - ], - "shelfMark": [ - "JMG 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hässler, Johann Wilhelm, 1747-1822." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Oberdoerffer, Fritz." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000039" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters no. 66799. C.F. Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200038" - } - ], - "idOclc": [ - "NYPG001000018-C" - ], - "uniformTitle": [ - "Sonatas, piano. Selections" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000039", - "urn:oclc:NYPG001000018-C", - "urn:undefined:Edition Peters no. 66799. C.F. Peters", - "urn:undefined:NNSZ00100568", - "urn:undefined:(WaOLN)nyp0200038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." - ], - "uri": "b10000039", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatas" - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-66" - ], - "identifierV2": [ - { - "value": "JMG 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842100" - } - ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842100" - ], - "idBarcode": [ - "33433032842100" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000041", - "_score": null, - "_source": { - "extent": [ - "1 score (23 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 5 clarinets.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Woodwind quintets (Clarinets (5))", - "Woodwind quintets (Clarinets (5)) -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Primavera" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Encounter" - ], - "shelfMark": [ - "JMF 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Usher, Julia." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81770739" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000041" - }, - { - "type": "bf:Lccn", - "value": "81770739" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100569" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200040" - } - ], - "idOclc": [ - "NYPG001000019-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Primavera, c1980." - ], - "identifier": [ - "urn:bnum:10000041", - "urn:lccn:81770739", - "urn:oclc:NYPG001000019-C", - "urn:undefined:NNSZ00100569", - "urn:undefined:(WaOLN)nyp0200040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Woodwind quintets (Clarinets (5)) -- Scores." - ], - "titleDisplay": [ - "Encounter / Julia Usher." - ], - "uri": "b10000041", - "lccClassification": [ - "M557.2.U8 E5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Greeting -- Circular argument -- Escape." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-66" - ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709291" - } - ], - "physicalLocation": [ - "JMF 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709291" - ], - "idBarcode": [ - "33433032709291" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000043", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (28 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 5:00-6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: D.15 579.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wind ensembles", - "Wind ensembles -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Doblinger" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Capriccio : für 10 Blasinstrumente" - ], - "shelfMark": [ - "JMC 83-9" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Eröd, Iván." - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Doblingers Studienpartituren ; Stp. 410" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMC 83-9" - }, - { - "type": "nypl:Bnumber", - "value": "10000043" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-C" - }, - { - "type": "bf:Identifier", - "value": "Stp. 410 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "D.15 579 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200042" - } - ], - "idOclc": [ - "NYPG001000020-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wien : Verlag Doblinger, c1980." - ], - "identifier": [ - "urn:bnum:10000043", - "urn:oclc:NYPG001000020-C", - "urn:undefined:Stp. 410 Verlag Doblinger", - "urn:undefined:D.15 579 Verlag Doblinger", - "urn:undefined:NNSZ00100570", - "urn:undefined:(WaOLN)nyp0200042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wind ensembles -- Scores." - ], - "titleDisplay": [ - "Capriccio : für 10 Blasinstrumente / Iván Eröd." - ], - "uri": "b10000043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wien" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMC 83-9" - ], - "identifierV2": [ - { - "value": "JMC 83-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004744128" - } - ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433004744128" - ], - "idBarcode": [ - "33433004744128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMC 83-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000044", - "_score": null, - "_source": { - "extent": [ - "[99] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ngawang Sopa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77901316" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2361" - }, - { - "type": "nypl:Bnumber", - "value": "10000044" - }, - { - "type": "bf:Lccn", - "value": "77901316" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100021" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200043" - } - ], - "idOclc": [ - "NYPG001000021-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Ngawang Sopa, 1976." - ], - "identifier": [ - "urn:bnum:10000044", - "urn:lccn:77901316", - "urn:oclc:NYPG001000021-B", - "urn:undefined:NNSZ00100021", - "urn:undefined:(WaOLN)nyp0200043" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." - ], - "uri": "b10000044", - "lccClassification": [ - "BQ942.Y367 R47 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000044" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000011", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2361" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080645" - } - ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080645" - ], - "idBarcode": [ - "33433015080645" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000045", - "_score": null, - "_source": { - "extent": [ - "12 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Violin music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sole selling agents, Or-Tav" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Thoughts & feelings : for violin solo" - ], - "shelfMark": [ - "JMG 82-688" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stutschewsky, Joachim, 1891-1982." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "80770813" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 82-688" - }, - { - "type": "nypl:Bnumber", - "value": "10000045" - }, - { - "type": "bf:Lccn", - "value": "80770813" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100571" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200044" - } - ], - "idOclc": [ - "NYPG001000021-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tel-Aviv : Sole selling agents, Or-Tav, c1979." - ], - "identifier": [ - "urn:bnum:10000045", - "urn:lccn:80770813", - "urn:oclc:NYPG001000021-C", - "urn:undefined:NNSZ00100571", - "urn:undefined:(WaOLN)nyp0200044" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Violin music." - ], - "titleDisplay": [ - "Thoughts & feelings : for violin solo / Joachim Stutschewsky." - ], - "uri": "b10000045", - "lccClassification": [ - "M42 .S" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tel-Aviv" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000045" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942043", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 82-688" - ], - "identifierV2": [ - { - "value": "JMG 82-688", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032707568" - } - ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032707568" - ], - "idBarcode": [ - "33433032707568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 82-000688" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000046", - "_score": null, - "_source": { - "extent": [ - "[83] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kye rdor rnam bśad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", - "Tripiṭaka.", - "Tripiṭaka. -- Commentaries", - "Sa-skya-pa lamas", - "Sa-skya-pa lamas -- Tibet", - "Sa-skya-pa lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trayang and Jamyang Samten" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2362" - }, - { - "type": "nypl:Bnumber", - "value": "10000046" - }, - { - "type": "bf:Lccn", - "value": "77900893" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100022" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200045" - } - ], - "idOclc": [ - "NYPG001000022-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Trayang and Jamyang Samten, 1976." - ], - "identifier": [ - "urn:bnum:10000046", - "urn:lccn:77900893", - "urn:oclc:NYPG001000022-B", - "urn:undefined:NNSZ00100022", - "urn:undefined:(WaOLN)nyp0200045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", - "Tripiṭaka. -- Commentaries.", - "Sa-skya-pa lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." - ], - "uri": "b10000046", - "lccClassification": [ - "BG974.0727 T75" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "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" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000046" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080413" - } - ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080413" - ], - "idBarcode": [ - "33433015080413" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000047", - "_score": null, - "_source": { - "extent": [ - "1 score (30 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 15 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vocalises (High voice) with instrumental ensemble", - "Vocalises (High voice) with instrumental ensemble -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" - ], - "shelfMark": [ - "JMG 83-79" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "81770634" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-79" - }, - { - "type": "nypl:Bnumber", - "value": "10000047" - }, - { - "type": "bf:Lccn", - "value": "81770634" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200046" - } - ], - "idOclc": [ - "NYPG001000022-C" - ], - "uniformTitle": [ - "Vocalise, soprano, instrumental ensemble, op. 38" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." - ], - "identifier": [ - "urn:bnum:10000047", - "urn:lccn:81770634", - "urn:oclc:NYPG001000022-C", - "urn:undefined:NNSZ00100572", - "urn:undefined:(WaOLN)nyp0200046" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vocalises (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." - ], - "uri": "b10000047", - "lccClassification": [ - "M1613.3 .R8 op.38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London, England (Arlington Park House, London W4)" - ], - "titleAlt": [ - "Vocalise, op. 38" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "38 cm." - ] - }, - "sort": [ - "b10000047" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-79" - ], - "identifierV2": [ - { - "value": "JMG 83-79", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842233" - } - ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842233" - ], - "idBarcode": [ - "33433032842233" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000079" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000048", - "_score": null, - "_source": { - "extent": [ - "[150] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kunzang Topgey" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901012" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2382" - }, - { - "type": "nypl:Bnumber", - "value": "10000048" - }, - { - "type": "bf:Lccn", - "value": "76901012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100023" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200047" - } - ], - "idOclc": [ - "NYPG001000023-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Thimphu : Kunzang Topgey, 1976." - ], - "identifier": [ - "urn:bnum:10000048", - "urn:lccn:76901012", - "urn:oclc:NYPG001000023-B", - "urn:undefined:NNSZ00100023", - "urn:undefined:(WaOLN)nyp0200047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000048", - "lccClassification": [ - "BQ7695 .B55" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Thimphu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 38 cm." - ] - }, - "sort": [ - "b10000048" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000013", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080439" - } - ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080439" - ], - "idBarcode": [ - "33433015080439" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002382" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000049", - "_score": null, - "_source": { - "extent": [ - "1 score (105 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 25 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Symphony, op. 26 : full score" - ], - "shelfMark": [ - "JMG 83-80" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "81770641" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-80" - }, - { - "type": "nypl:Bnumber", - "value": "10000049" - }, - { - "type": "bf:Lccn", - "value": "81770641" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100573" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200048" - } - ], - "idOclc": [ - "NYPG001000023-C" - ], - "uniformTitle": [ - "Symphony, op. 26" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." - ], - "identifier": [ - "urn:bnum:10000049", - "urn:lccn:81770641", - "urn:oclc:NYPG001000023-C", - "urn:undefined:NNSZ00100573", - "urn:undefined:(WaOLN)nyp0200048" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "Symphony, op. 26 : full score / Francis Routh." - ], - "uri": "b10000049", - "lccClassification": [ - "M1001 .R8615 op.26" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London (Arlington Park House, London W4 4HD)" - ], - "titleAlt": [ - "Symphony, op. 26" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000049" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-80" - ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842241" - } - ], - "physicalLocation": [ - "JMG 83-80" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842241" - ], - "idBarcode": [ - "33433032842241" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000080" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000050", - "_score": null, - "_source": { - "extent": [ - "[188] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas", - "Bkaʼ-brgyud-pa lamas -- Tibet", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", - "Spiritual life", - "Spiritual life -- Buddhism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Urgyan Dorje" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901747" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2381" - }, - { - "type": "nypl:Bnumber", - "value": "10000050" - }, - { - "type": "bf:Lccn", - "value": "76901747" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100024" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200049" - } - ], - "idOclc": [ - "NYPG001000024-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New Delhi : Urgyan Dorje, 1976." - ], - "identifier": [ - "urn:bnum:10000050", - "urn:lccn:76901747", - "urn:oclc:NYPG001000024-B", - "urn:undefined:NNSZ00100024", - "urn:undefined:(WaOLN)nyp0200049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", - "Spiritual life -- Buddhism." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000050", - "lccClassification": [ - "BQ942.A187 A35 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000014", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080421" - } - ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080421" - ], - "idBarcode": [ - "33433015080421" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002381" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000051", - "_score": null, - "_source": { - "extent": [ - "score (64 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Samfundet til udgivelse af dansk musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" - ], - "shelfMark": [ - "JMG 83-75" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Christiansen, Henning." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "78770955" - ], - "seriesStatement": [ - "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-75" - }, - { - "type": "nypl:Bnumber", - "value": "10000051" - }, - { - "type": "bf:Lccn", - "value": "78770955" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100574" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200050" - } - ], - "idOclc": [ - "NYPG001000024-C" - ], - "uniformTitle": [ - "Symphony, no. 2, op. 69c", - "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "København : Samfundet til udgivelse af dansk musik, 1977." - ], - "identifier": [ - "urn:bnum:10000051", - "urn:lccn:78770955", - "urn:oclc:NYPG001000024-C", - "urn:undefined:NNSZ00100574", - "urn:undefined:(WaOLN)nyp0200050" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." - ], - "uri": "b10000051", - "lccClassification": [ - "M1001 .C533 op.69c" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "København" - ], - "titleAlt": [ - "Symphony, no. 2, op. 69c", - "Den forsvundne." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "37 cm." - ] - }, - "sort": [ - "b10000051" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942046", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-75" - ], - "identifierV2": [ - { - "value": "JMG 83-75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842191" - } - ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842191" - ], - "idBarcode": [ - "33433032842191" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000075" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-3335c674a3cb042fc07f6a8448208978.json b/test/fixtures/query-3335c674a3cb042fc07f6a8448208978.json deleted file mode 100644 index 9941b3b9..00000000 --- a/test/fixtures/query-3335c674a3cb042fc07f6a8448208978.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 53, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.907039, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.907039, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-4356f3bc84584e2564ddf8544411ac5b.json b/test/fixtures/query-4356f3bc84584e2564ddf8544411ac5b.json new file mode 100644 index 00000000..d66c7da2 --- /dev/null +++ b/test/fixtures/query-4356f3bc84584e2564ddf8544411ac5b.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 502, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 50.650852, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 50.650852, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19778", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Q\\\\-TAG \\\\(852 8b q tag. Staff call in bib.\\\\)\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"Q\\\\-TAG \\\\(852 8b q tag. Staff call in bib.\\\\)\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"Q\\\\-TAG \\\\(852 8b q tag. Staff call in bib.\\\\)\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1159" + }, + "timeout": 30000 + }, + "options": {}, + "id": 62 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-4492e53fd966b7d8ff7400cc46e55c48.json b/test/fixtures/query-4492e53fd966b7d8ff7400cc46e55c48.json deleted file mode 100644 index 0880ef13..00000000 --- a/test/fixtures/query-4492e53fd966b7d8ff7400cc46e55c48.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "took": 3, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.034133, - "hits": [ - { - "_index": "resources-2020-05-08", - "_type": "resource", - "_id": "b10621616", - "_score": 15.034133, - "_source": { - "extent": [ - "16 p.;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Puerto Rico", - "Puerto Rico -- Politics and government" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[s. n.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1909 - ], - "title": [ - "Porto Rico. The effort of the House of Delegates to revolutionize the government and coerce Congress by refusing to pass appropriation bills and the legislation necessary to maintain government and order in the Island. Speech of Hon. Chauncey M. Depew ... in the Senate of the United States, July 9, 1909." - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "Sc Micro F-1843" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1909" - ], - "creatorLiteral": [ - "Depew, Chauncey M. (Chauncey Mitchell), 1834-1928." - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1909 - ], - "idOclc": [ - "NYPG804081658-B" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro F-1843" - }, - { - "type": "nypl:Bnumber", - "value": "10621616" - }, - { - "type": "nypl:Oclc", - "value": "NYPG804081658-B" - }, - { - "type": "bf:Identifier", - "value": "NN804081658" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0627286" - } - ], - "updatedAt": 1700086883065, - "publicationStatement": [ - "Washington, D. C.; [s. n.] 1909." - ], - "identifier": [ - "urn:shelfmark:Sc Micro F-1843", - "urn:bnum:10621616", - "urn:oclc:NYPG804081658-B", - "urn:identifier:NN804081658", - "urn:identifier:(WaOLN)nyp0627286" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1909" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Puerto Rico -- Politics and government." - ], - "titleDisplay": [ - "Porto Rico. The effort of the House of Delegates to revolutionize the government and coerce Congress by refusing to pass appropriation bills and the legislation necessary to maintain government and order in the Island. Speech of Hon. Chauncey M. Depew ... in the Senate of the United States, July 9, 1909." - ], - "uri": "b10621616", - "placeOfPublication": [ - "Washington, D. C.;" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - } - ] - }, - "aggregations": { - "item_location": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - }, - "item_format": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - }, - "item_status": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - } - } -} \ No newline at end of file diff --git a/test/fixtures/query-48a4fe5a4b5d67c7241fa3abddcbb79a.json b/test/fixtures/query-48a4fe5a4b5d67c7241fa3abddcbb79a.json deleted file mode 100644 index 78f0db7c..00000000 --- a/test/fixtures/query-48a4fe5a4b5d67c7241fa3abddcbb79a.json +++ /dev/null @@ -1,11800 +0,0 @@ -{ - "took": 863, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 18434492, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000005", - "_score": null, - "_source": { - "extent": [ - "1 score (43 p.) + 1 part (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Acc. arr. for piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Soch. 22\"--Caption.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: 11049.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Concertos (Violin)", - "Concertos (Violin) -- Solo with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muzyka" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" - ], - "shelfMark": [ - "JMF 83-336" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wieniawski, Henri, 1835-1880." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-336" - }, - { - "type": "nypl:Bnumber", - "value": "10000005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-C" - }, - { - "type": "bf:Identifier", - "value": "11049. Muzyka" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100551" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200004" - } - ], - "idOclc": [ - "NYPG001000001-C" - ], - "uniformTitle": [ - "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Moskva : Muzyka, 1980." - ], - "identifier": [ - "urn:bnum:10000005", - "urn:oclc:NYPG001000001-C", - "urn:undefined:11049. Muzyka", - "urn:undefined:NNSZ00100551", - "urn:undefined:(WaOLN)nyp0200004" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Concertos (Violin) -- Solo with piano." - ], - "titleDisplay": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." - ], - "uri": "b10000005", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Concertos, no. 2, op. 22" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10000005" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-336" - ], - "identifierV2": [ - { - "value": "JMF 83-336", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032711909" - } - ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032711909" - ], - "idBarcode": [ - "33433032711909" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000007", - "_score": null, - "_source": { - "extent": [ - "14 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 7:35.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: Z.8917.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Guitar music", - "Guitar", - "Guitar -- Studies and exercises" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editio Musica" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Due studi per chitarra" - ], - "shelfMark": [ - "JMG 83-276" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Patachich, Iván." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-276" - }, - { - "type": "nypl:Bnumber", - "value": "10000007" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-C" - }, - { - "type": "bf:Identifier", - "value": "Z.8917. Editio Musica" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100552" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200006" - } - ], - "idOclc": [ - "NYPG001000002-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Budapest : Editio Musica, c1981." - ], - "identifier": [ - "urn:bnum:10000007", - "urn:oclc:NYPG001000002-C", - "urn:undefined:Z.8917. Editio Musica", - "urn:undefined:NNSZ00100552", - "urn:undefined:(WaOLN)nyp0200006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Guitar music.", - "Guitar -- Studies and exercises." - ], - "titleDisplay": [ - "Due studi per chitarra / Patachich Iván." - ], - "uri": "b10000007", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-276" - ], - "identifierV2": [ - { - "value": "JMG 83-276", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883591" - } - ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883591" - ], - "idBarcode": [ - "33433032883591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000276" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000009", - "_score": null, - "_source": { - "extent": [ - "30 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Edition Peters Nr. 5489.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: E.P. 13028.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Peters ; C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miniaturen II : 13 kleine Klavierstücke" - ], - "shelfMark": [ - "JMG 83-278" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Golle, Jürgen, 1942-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-278" - }, - { - "type": "nypl:Bnumber", - "value": "10000009" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters Nr. 5489 Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "E.P. 13028. Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100553" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200008" - } - ], - "idOclc": [ - "NYPG001000003-C" - ], - "uniformTitle": [ - "Miniaturen, no. 2" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000009", - "urn:oclc:NYPG001000003-C", - "urn:undefined:Edition Peters Nr. 5489 Edition Peters", - "urn:undefined:E.P. 13028. Edition Peters", - "urn:undefined:NNSZ00100553", - "urn:undefined:(WaOLN)nyp0200008" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." - ], - "uri": "b10000009", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen, no. 2" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000009" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-278" - ], - "identifierV2": [ - { - "value": "JMG 83-278", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883617" - } - ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883617" - ], - "idBarcode": [ - "33433032883617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000278" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000011", - "_score": null, - "_source": { - "extent": [ - "46 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Boeijenga" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1982" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Passie en pasen : suite voor orgel, opus 50" - ], - "shelfMark": [ - "JMG 83-279" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Berg, Jan J. van den." - ], - "createdString": [ - "1976" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-279" - }, - { - "type": "nypl:Bnumber", - "value": "10000011" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-C" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200010" - } - ], - "idOclc": [ - "NYPG001000004-C" - ], - "dateEndYear": [ - 1982 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." - ], - "identifier": [ - "urn:bnum:10000011", - "urn:oclc:NYPG001000004-C", - "urn:undefined:(WaOLN)nyp0200010" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music." - ], - "titleDisplay": [ - "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." - ], - "uri": "b10000011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sneek [Netherlands]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-279" - ], - "identifierV2": [ - { - "value": "JMG 83-279", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883625" - } - ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883625" - ], - "idBarcode": [ - "33433032883625" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000013", - "_score": null, - "_source": { - "extent": [ - "32 p. of music : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Arr. for piano with chord symbols; superlinear German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Germany (East)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harth Musik Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Disko Treff 1 : Klavier." - ], - "shelfMark": [ - "JMF 83-366" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-366" - }, - { - "type": "nypl:Bnumber", - "value": "10000013" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100555" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200012" - } - ], - "idOclc": [ - "NYPG001000005-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Leipzig : Harth Musik Verlag, c1980." - ], - "identifier": [ - "urn:bnum:10000013", - "urn:oclc:NYPG001000005-C", - "urn:undefined:NNSZ00100555", - "urn:undefined:(WaOLN)nyp0200012" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Germany (East)" - ], - "titleDisplay": [ - "Disko Treff 1 : Klavier." - ], - "uri": "b10000013", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Disko Treff eins." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000013" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-366" - ], - "identifierV2": [ - { - "value": "JMF 83-366", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032712204" - } - ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032712204" - ], - "idBarcode": [ - "33433032712204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000366" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000015", - "_score": null, - "_source": { - "extent": [ - "25 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For organ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A McAfee Music Publication.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: DM 220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Belwin-Mills" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suite no. 1 : 1977" - ], - "shelfMark": [ - "JNG 83-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hampton, Calvin." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 83-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000015" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-C" - }, - { - "type": "bf:Identifier", - "value": "DM 220. Belwin-Mills" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100556" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200014" - } - ], - "idOclc": [ - "NYPG001000006-C" - ], - "uniformTitle": [ - "Suite, organ, no. 1" - ], - "updatedAt": 1678726416948, - "publicationStatement": [ - "Melville, NY : Belwin-Mills, [1980?]" - ], - "identifier": [ - "urn:bnum:10000015", - "urn:oclc:NYPG001000006-C", - "urn:undefined:DM 220. Belwin-Mills", - "urn:undefined:NNSZ00100556", - "urn:undefined:(WaOLN)nyp0200014" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)" - ], - "titleDisplay": [ - "Suite no. 1 : 1977 / Calvin Hampton." - ], - "uri": "b10000015", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Melville, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Suite, no. 1" - ], - "tableOfContents": [ - "Fanfares -- Antiphon -- Toccata." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000015" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000017", - "_score": null, - "_source": { - "extent": [ - "1 score (17 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For baritone and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Words printed also as text.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 3:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Corbière, Tristan, 1845-1875", - "Corbière, Tristan, 1845-1875 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lettre du Mexique : pour baryton et piano, 1942" - ], - "shelfMark": [ - "JMG 83-395" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Escher, Rudolf." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Corbière, Tristan, 1845-1875." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-395" - }, - { - "type": "nypl:Bnumber", - "value": "10000017" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100557" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200016" - } - ], - "idOclc": [ - "NYPG001000007-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Amsterdam : Donemus, c1981." - ], - "identifier": [ - "urn:bnum:10000017", - "urn:oclc:NYPG001000007-C", - "urn:undefined:NNSZ00100557", - "urn:undefined:(WaOLN)nyp0200016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Corbière, Tristan, 1845-1875 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." - ], - "uri": "b10000017", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000017" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-395" - ], - "identifierV2": [ - { - "value": "JMG 83-395", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032735007" - } - ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032735007" - ], - "idBarcode": [ - "33433032735007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000395" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000019", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: M 18.487.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Waltzes (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zwölf Walzer und ein Epilog : für Klavier" - ], - "shelfMark": [ - "JMG 83-111" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Benary, Peter." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-111" - }, - { - "type": "nypl:Bnumber", - "value": "10000019" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-C" - }, - { - "type": "bf:Identifier", - "value": "Möseler M 18.487." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200018" - } - ], - "idOclc": [ - "NYPG001000008-C" - ], - "uniformTitle": [ - "Walzer und ein Epilog" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000019", - "urn:oclc:NYPG001000008-C", - "urn:undefined:Möseler M 18.487.", - "urn:undefined:NNSZ00100558", - "urn:undefined:(WaOLN)nyp0200018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Waltzes (Piano)" - ], - "titleDisplay": [ - "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." - ], - "uri": "b10000019", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Walzer und ein Epilog", - "Walzer und ein Epilog." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-111" - ], - "identifierV2": [ - { - "value": "JMG 83-111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845053" - } - ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845053" - ], - "idBarcode": [ - "33433032845053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000111" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000021", - "_score": null, - "_source": { - "extent": [ - "1 score (51 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: NM 384.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Neue Musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aurora : sinfonischer Prolog : Partitur" - ], - "shelfMark": [ - "JMG 83-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Weitzendorf, Heinz." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000021" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-C" - }, - { - "type": "bf:Identifier", - "value": "NM 384. Verlag Neue Musik" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200020" - } - ], - "idOclc": [ - "NYPG001000009-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Berlin : Verlag Neue Musik, c1978." - ], - "identifier": [ - "urn:bnum:10000021", - "urn:oclc:NYPG001000009-C", - "urn:undefined:NM 384. Verlag Neue Musik", - "urn:undefined:NNSZ00100559", - "urn:undefined:(WaOLN)nyp0200020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." - ], - "uri": "b10000021", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Berlin" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000021" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-113" - ], - "identifierV2": [ - { - "value": "JMG 83-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845079" - } - ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845079" - ], - "idBarcode": [ - "33433032845079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000023", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (18 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For band or wind ensemble.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Based on the composer's Veni creator spiritus.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: KC913.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Band music", - "Band music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shawnee Press" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica sacra" - ], - "shelfMark": [ - "JMF 83-38" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zaninelli, Luigi." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-38" - }, - { - "type": "nypl:Bnumber", - "value": "10000023" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-C" - }, - { - "type": "bf:Identifier", - "value": "KC913 Shawnee Press" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100560" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200022" - } - ], - "idOclc": [ - "NYPG001000010-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Delaware Water Gap, Pa. : Shawnee Press, c1979." - ], - "identifier": [ - "urn:bnum:10000023", - "urn:oclc:NYPG001000010-C", - "urn:undefined:KC913 Shawnee Press", - "urn:undefined:NNSZ00100560", - "urn:undefined:(WaOLN)nyp0200022" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Band music -- Scores." - ], - "titleDisplay": [ - "Musica sacra / Luigi Zaninelli." - ], - "uri": "b10000023", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delaware Water Gap, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-38" - ], - "identifierV2": [ - { - "value": "JMF 83-38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709028" - } - ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709028" - ], - "idBarcode": [ - "33433032709028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000038" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000025", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei Sonatinen für Klavier" - ], - "shelfMark": [ - "JMF 83-107" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stockmeier, Wolfgang." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-107" - }, - { - "type": "nypl:Bnumber", - "value": "10000025" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100561" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200024" - } - ], - "idOclc": [ - "NYPG001000011-C" - ], - "uniformTitle": [ - "Sonatinas, piano" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000025", - "urn:oclc:NYPG001000011-C", - "urn:undefined:NNSZ00100561", - "urn:undefined:(WaOLN)nyp0200024" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Drei Sonatinen für Klavier / Wolfgang Stockmeier." - ], - "uri": "b10000025", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatinas" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-107" - ], - "identifierV2": [ - { - "value": "JMF 83-107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709697" - } - ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709697" - ], - "idBarcode": [ - "33433032709697" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000027", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Violin)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei kleine Sonaten : für Violine solo" - ], - "shelfMark": [ - "JMF 83-95" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Köhler, Friedemann." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 172" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-95" - }, - { - "type": "nypl:Bnumber", - "value": "10000027" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100562" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200026" - } - ], - "idOclc": [ - "NYPG001000012-C" - ], - "uniformTitle": [ - "Kleine Sonaten, violin" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Wolfenbüttel : Möseler Verlag, c1979." - ], - "identifier": [ - "urn:bnum:10000027", - "urn:oclc:NYPG001000012-C", - "urn:undefined:NNSZ00100562", - "urn:undefined:(WaOLN)nyp0200026" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Violin)" - ], - "titleDisplay": [ - "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." - ], - "uri": "b10000027", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kleine Sonaten" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000027" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-95" - ], - "identifierV2": [ - { - "value": "JMF 83-95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709572" - } - ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709572" - ], - "idBarcode": [ - "33433032709572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000095" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000029", - "_score": null, - "_source": { - "extent": [ - "16 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: 29589.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Organ music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Hansen ; Distribution, Magnamusic-Baton" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cruor : for organ solo, 1977" - ], - "shelfMark": [ - "JMF 83-93" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lorentzen, Bent." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82771131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-93" - }, - { - "type": "nypl:Bnumber", - "value": "10000029" - }, - { - "type": "bf:Lccn", - "value": "82771131" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-C" - }, - { - "type": "bf:Identifier", - "value": "Wilhelm Hansen edition no. 4372." - }, - { - "type": "bf:Identifier", - "value": "29589." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100563" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200028" - } - ], - "idOclc": [ - "NYPG001000013-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." - ], - "identifier": [ - "urn:bnum:10000029", - "urn:lccn:82771131", - "urn:oclc:NYPG001000013-C", - "urn:undefined:Wilhelm Hansen edition no. 4372.", - "urn:undefined:29589.", - "urn:undefined:NNSZ00100563", - "urn:undefined:(WaOLN)nyp0200028" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Organ music." - ], - "titleDisplay": [ - "Cruor : for organ solo, 1977 / B. Lorentzen." - ], - "uri": "b10000029", - "lccClassification": [ - "M11 .L" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen ; New York : [s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-93" - ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709556" - } - ], - "physicalLocation": [ - "JMF 83-93" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709556" - ], - "idBarcode": [ - "33433032709556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000093" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000031", - "_score": null, - "_source": { - "extent": [ - "21 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Müller" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Neun Miniaturen : für Klavier : op. 52" - ], - "shelfMark": [ - "JMG 83-17" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Petersen, Wilhelm, 1890-1957." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-17" - }, - { - "type": "nypl:Bnumber", - "value": "10000031" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-C" - }, - { - "type": "bf:Identifier", - "value": "W. Müller WM 1713 SM." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100564" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200030" - } - ], - "idOclc": [ - "NYPG001000014-C" - ], - "uniformTitle": [ - "Miniaturen" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Heidelberg : W. Müller, c1979." - ], - "identifier": [ - "urn:bnum:10000031", - "urn:oclc:NYPG001000014-C", - "urn:undefined:W. Müller WM 1713 SM.", - "urn:undefined:NNSZ00100564", - "urn:undefined:(WaOLN)nyp0200030" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." - ], - "uri": "b10000031", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Heidelberg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen", - "Miniaturen." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-17" - ], - "identifierV2": [ - { - "value": "JMG 83-17", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841631" - } - ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841631" - ], - "idBarcode": [ - "33433032841631" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000017" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000033", - "_score": null, - "_source": { - "extent": [ - "1 score (20 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For voice and organ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs (Medium voice) with organ", - "Psalms (Music)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Agápe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Psalm settings" - ], - "shelfMark": [ - "JMG 83-59" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nelhybel, Vaclav." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-59" - }, - { - "type": "nypl:Bnumber", - "value": "10000033" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100565" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200032" - } - ], - "idOclc": [ - "NYPG001000015-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Carol Stream, Ill. : Agápe, c1981." - ], - "identifier": [ - "urn:bnum:10000033", - "urn:oclc:NYPG001000015-C", - "urn:undefined:NNSZ00100565", - "urn:undefined:(WaOLN)nyp0200032" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs (Medium voice) with organ.", - "Psalms (Music)" - ], - "titleDisplay": [ - "Psalm settings / Vaclav Nelhybel." - ], - "uri": "b10000033", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Carol Stream, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000033" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842035" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842035" - ], - "idBarcode": [ - "33433032842035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000035", - "_score": null, - "_source": { - "extent": [ - "22 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Suite.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 12:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Serenade voor piano : 1980" - ], - "shelfMark": [ - "JMG 83-6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kasbergen, Marinus, 1936-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-6" - }, - { - "type": "nypl:Bnumber", - "value": "10000035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100566" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200034" - } - ], - "idOclc": [ - "NYPG001000016-C" - ], - "uniformTitle": [ - "Serenade, piano" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000035", - "urn:oclc:NYPG001000016-C", - "urn:undefined:NNSZ00100566", - "urn:undefined:(WaOLN)nyp0200034" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Piano)" - ], - "titleDisplay": [ - "Serenade voor piano : 1980 / Marinus Kasbergen." - ], - "uri": "b10000035", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Serenade" - ], - "tableOfContents": [ - "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841490" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841490" - ], - "idBarcode": [ - "33433032841490" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000037", - "_score": null, - "_source": { - "extent": [ - "13a p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 15:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Guitar)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Eight studies for guitar : in form of a suite : 1979" - ], - "shelfMark": [ - "JMG 83-5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hekster, Walter." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-5" - }, - { - "type": "nypl:Bnumber", - "value": "10000037" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200036" - } - ], - "idOclc": [ - "NYPG001000017-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000037", - "urn:oclc:NYPG001000017-C", - "urn:undefined:NNSZ00100567", - "urn:undefined:(WaOLN)nyp0200036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Guitar)" - ], - "titleDisplay": [ - "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." - ], - "uri": "b10000037", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000037" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-5" - ], - "identifierV2": [ - { - "value": "JMG 83-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841482" - } - ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841482" - ], - "idBarcode": [ - "33433032841482" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000005" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000039", - "_score": null, - "_source": { - "extent": [ - "49 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five sonatas for pianoforte" - ], - "shelfMark": [ - "JMG 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hässler, Johann Wilhelm, 1747-1822." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Oberdoerffer, Fritz." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000039" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters no. 66799. C.F. Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200038" - } - ], - "idOclc": [ - "NYPG001000018-C" - ], - "uniformTitle": [ - "Sonatas, piano. Selections" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000039", - "urn:oclc:NYPG001000018-C", - "urn:undefined:Edition Peters no. 66799. C.F. Peters", - "urn:undefined:NNSZ00100568", - "urn:undefined:(WaOLN)nyp0200038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." - ], - "uri": "b10000039", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatas" - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-66" - ], - "identifierV2": [ - { - "value": "JMG 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842100" - } - ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842100" - ], - "idBarcode": [ - "33433032842100" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000041", - "_score": null, - "_source": { - "extent": [ - "1 score (23 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 5 clarinets.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Woodwind quintets (Clarinets (5))", - "Woodwind quintets (Clarinets (5)) -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Primavera" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Encounter" - ], - "shelfMark": [ - "JMF 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Usher, Julia." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81770739" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000041" - }, - { - "type": "bf:Lccn", - "value": "81770739" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100569" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200040" - } - ], - "idOclc": [ - "NYPG001000019-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Primavera, c1980." - ], - "identifier": [ - "urn:bnum:10000041", - "urn:lccn:81770739", - "urn:oclc:NYPG001000019-C", - "urn:undefined:NNSZ00100569", - "urn:undefined:(WaOLN)nyp0200040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Woodwind quintets (Clarinets (5)) -- Scores." - ], - "titleDisplay": [ - "Encounter / Julia Usher." - ], - "uri": "b10000041", - "lccClassification": [ - "M557.2.U8 E5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Greeting -- Circular argument -- Escape." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-66" - ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709291" - } - ], - "physicalLocation": [ - "JMF 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709291" - ], - "idBarcode": [ - "33433032709291" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000043", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (28 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 5:00-6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: D.15 579.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wind ensembles", - "Wind ensembles -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Doblinger" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Capriccio : für 10 Blasinstrumente" - ], - "shelfMark": [ - "JMC 83-9" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Eröd, Iván." - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Doblingers Studienpartituren ; Stp. 410" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMC 83-9" - }, - { - "type": "nypl:Bnumber", - "value": "10000043" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-C" - }, - { - "type": "bf:Identifier", - "value": "Stp. 410 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "D.15 579 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200042" - } - ], - "idOclc": [ - "NYPG001000020-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wien : Verlag Doblinger, c1980." - ], - "identifier": [ - "urn:bnum:10000043", - "urn:oclc:NYPG001000020-C", - "urn:undefined:Stp. 410 Verlag Doblinger", - "urn:undefined:D.15 579 Verlag Doblinger", - "urn:undefined:NNSZ00100570", - "urn:undefined:(WaOLN)nyp0200042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wind ensembles -- Scores." - ], - "titleDisplay": [ - "Capriccio : für 10 Blasinstrumente / Iván Eröd." - ], - "uri": "b10000043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wien" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMC 83-9" - ], - "identifierV2": [ - { - "value": "JMC 83-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004744128" - } - ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433004744128" - ], - "idBarcode": [ - "33433004744128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMC 83-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-495b17ae29764e74b951feb9d1bc5d81.json b/test/fixtures/query-495b17ae29764e74b951feb9d1bc5d81.json deleted file mode 100644 index 40ab6c0a..00000000 --- a/test/fixtures/query-495b17ae29764e74b951feb9d1bc5d81.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 116, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.907039, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.907039, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-52a176a516835538d3a8131a02c15113.json b/test/fixtures/query-52a176a516835538d3a8131a02c15113.json new file mode 100644 index 00000000..ddc3dec7 --- /dev/null +++ b/test/fixtures/query-52a176a516835538d3a8131a02c15113.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 249, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.007645, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.007645, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19778", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"GPO Item number. \\\\-\\\\- 074\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"GPO Item number. \\\\-\\\\- 074\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"GPO Item number. \\\\-\\\\- 074\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1099" + }, + "timeout": 30000 + }, + "options": {}, + "id": 66 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-53cdab256d393a17fccaee10862edaa4.json b/test/fixtures/query-53cdab256d393a17fccaee10862edaa4.json deleted file mode 100644 index 989209fc..00000000 --- a/test/fixtures/query-53cdab256d393a17fccaee10862edaa4.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 143, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.905142, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.905142, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-5b802a2585b735233442e1a57bc5bfcb.json b/test/fixtures/query-5b802a2585b735233442e1a57bc5bfcb.json deleted file mode 100644 index 582fb402..00000000 --- a/test/fixtures/query-5b802a2585b735233442e1a57bc5bfcb.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "took": 62, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 32.800274, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "pb1717", - "_score": 32.800274, - "_source": { - "extent": [ - "x, 340 p. : ill. ;" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Fiction", - "Cats" - ], - "publisherLiteral": [ - "Lothrop, Lee & Shepard Books," - ], - "description": [ - "More than 40 stories and essays about cats by famous writers." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cat encounters : a cat-lover's anthology /" - ], - "createdString": [ - "1979" - ], - "idLccn": [ - " 79002437 " - ], - "contributorLiteral": [ - "Lewis, Gogo.", - "Manley, Seon." - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "1717" - }, - { - "type": "bf:Isbn", - "value": "0688419143" - }, - { - "type": "bf:Lccn", - "value": " 79002437 " - } - ], - "updatedAt": 1523549727960, - "publicationStatement": [ - "New York : Lothrop, Lee & Shepard Books, c1979." - ], - "identifier": [ - "urn:bnum:1717", - "urn:isbn:0688419143", - "urn:lccn: 79002437 " - ], - "idIsbn": [ - "0688419143" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats -- Fiction.", - "Cats." - ], - "titleDisplay": [ - "Cat encounters : a cat-lover's anthology / selected by Seon Manley & Gogo Lewis." - ], - "uri": "pb1717", - "lccClassification": [ - "SF445.5 .C378" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:32101087644330" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available " - ], - "uri": "pi2775", - "shelfMark": [ - "SF445.5 .C378" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "SF445.5 .C378" - }, - { - "type": "bf:Barcode", - "value": "32101087644330" - } - ], - "idBarcode": [ - "32101087644330" - ], - "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available " - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-5db5ff2be8108213f947837665382acb.json b/test/fixtures/query-5db5ff2be8108213f947837665382acb.json deleted file mode 100644 index db5b83a9..00000000 --- a/test/fixtures/query-5db5ff2be8108213f947837665382acb.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 89, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.905142, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.905142, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json b/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json index 97ce5023..7dc7eb6d 100644 --- a/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json +++ b/test/fixtures/query-5f8bbe520199022d66e509963906d92c.json @@ -1,13464 +1,12599 @@ { - "took": 1802, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 13.705951, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10833141", - "_score": 13.705951, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Some issues bear also thematic titles.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Vol. 73, no. 1 never published.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Has occasional supplements.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Vol. 90, no. 24 (Aug. 25, 2014).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with issue for Feb. 21, 1925." - ], - "subjectLiteral_exploded": [ - "Literature", - "Literature -- Periodicals", - "Intellectual life", - "Electronic journals", - "New York (N.Y.)", - "New York (N.Y.) -- Intellectual life", - "New York (N.Y.) -- Intellectual life -- Directories", - "New York (State)", - "New York (State) -- New York" - ], - "numItemDatesParsed": [ - 911 - ], - "publisherLiteral": [ - "F-R Pub. Corp.", - "D. Carey", - "Condé Nast Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 917 - ], - "createdYear": [ - 1925 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The New Yorker." - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "numItemVolumesParsed": [ - 847 - ], - "createdString": [ - "1925" - ], - "idLccn": [ - " 28005329" - ], - "idIssn": [ - "0028-792X" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ross, Harold Wallace, 1892-1951", - "Shawn, William", - "Brown, Tina", - "Remnick, David", - "White, Katharine Sergeant Angell", - "White, E. B. (Elwyn Brooks), 1899-1985", - "Irvin, Rea, 1881-1972", - "Angell, Roger" - ], - "dateStartYear": [ - 1925 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DA+ (New Yorker)" - }, - { - "type": "nypl:Bnumber", - "value": "10833141" - }, - { - "type": "bf:Issn", - "value": "0028-792X" - }, - { - "type": "bf:Lccn", - "value": " 28005329" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1760231" - }, - { - "type": "bf:Identifier", - "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" - } - ], - "idOclc": [ - "1760231" - ], - "uniformTitle": [ - "New Yorker (New York, N.Y. : 1925)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "97(2021)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 1 (Feb. 14, 2022)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 2 (Feb. 28, 2022)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 3 (Mar. 7, 2022)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 4 (Mar. 14, 2022)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 5 (Mar. 21, 2022)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 6 (Mar. 28, 2022)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 7 (Apr. 4, 2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 8 (Apr. 11, 2022)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 9 (Apr. 18, 2022)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 10 (Apr. 25, 2022)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 11 (May. 9, 2022)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 12 (May. 16, 2022)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 13 (May. 23, 2022)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 14 (May. 30, 2022)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 15 (Jun. 6, 2022)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 16 (Jun. 13, 2022)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 17 (Jun. 20, 2022)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 18 (Jun. 27, 2022)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 19 (Jul. 4, 2022)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 20 (Jul. 11, 2022)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 21 (Jul. 25, 2022)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 22 (Aug. 1, 2022)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 23 (Aug. 8, 2022)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 24 (Aug. 15, 2022)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 25 (Aug. 22, 2022)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 26 (Aug. 29, 2022)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 27 (Sep. 5, 2022)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 28 (Sep. 12, 2022)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 29 (Sep. 19, 2022)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 30 (Sep. 26, 2022)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 31 (Oct. 3, 2022)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 32 (Oct. 10, 2022)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 33 (Oct. 17, 2022)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 34 (Oct. 24, 2022)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 35 (Oct. 31, 2022)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 36 (Nov. 7, 2022)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 37 (Nov. 14, 2022)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 38 (Nov. 21, 2022)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 39 (Nov. 28, 2022)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 40 (Dec. 5, 2022)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 41 (Dec. 12, 2022)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 98 No. 42 (Dec. 19, 2022)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 43 (Dec. 26, 2022)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 44 (Jan. 2, 2023)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 45 (Jan. 16, 2023)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 47 (Jan. 23, 2023)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 48 (Jan. 30, 2023)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 49 (Feb. 6, 2023)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 01 (Feb. 13, 2023 - Feb. 20, 2023)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 11 (May. 8, 2023)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 12 (May. 15, 2023)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 13 (May. 22, 2023)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 14 (May. 29, 2023)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 23 (Jul. 31, 2023)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "Room 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1144777", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - }, - { - "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)-94(2018/19)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 95 No. 1 (Feb. 18, 2019)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 2 (Mar. 4, 2019)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 3 (Mar. 11, 2019)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 4 (Mar. 18, 2019)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 5 (Mar. 25, 2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 6 (Apr. 1, 2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 7 (Apr. 8, 2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 8 (Apr. 15, 2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 9 (Apr. 22, 2019)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 10 (Apr. 29, 2019)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 11 (May. 6, 2019)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 12 (May. 13, 2019)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 13 (May. 20, 2019)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 14 (May. 27, 2019)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 15 (Jun. 3, 2019)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 16 (Jun. 10, 2019)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 17 (Jun. 24, 2019)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 18 (Jul. 1, 2019)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 19 (Jul. 8, 2019)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 20 (Jul. 22, 2019)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 21 (Jul. 29, 2019)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 22 (Aug. 5, 2019)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 23 (Aug. 19, 2019)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 24 (Aug. 26, 2019)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 25 (Sep. 2, 2019)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 26 (Sep. 9, 2019)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 27 (Sep. 16, 2019)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 28 (Sep. 23, 2019)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 29 (Sep. 30, 2019)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 30 (Oct. 7, 2019)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 31 (Oct. 14, 2019)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 32 (Oct. 21, 2019)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 33 (Oct. 28, 2019)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 34 (Nov. 4, 2019)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 35 (Nov. 11, 2019)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 36 (Nov. 18, 2019)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 37 (Nov. 25, 2019)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 38 (Dec. 2, 2019)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 39 (Dec. 9, 2019)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 40 (Dec. 16, 2019)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 41 (Dec. 23, 2019)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 42 (Dec. 30, 2019)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 43 (Jan. 6, 2020)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 44 (Jan. 13, 2020)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 45 (Jan. 20, 2020)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 46 (Jan. 27, 2020)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 47 (Feb. 3, 2020)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 48 (Feb. 10, 2020)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 1 (Feb. 17, 2020 - Feb. 24, 2020)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 2 (Mar. 2, 2020)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 3 (Mar. 9, 2020)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 4 (Mar. 16, 2020)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 5 (Mar. 23, 2020)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 6 (Mar. 30, 2020)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 7 (Apr. 6, 2020)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 8 (Apr. 13, 2020)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 09 (Apr. 20, 2020)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 10 (Apr. 27, 2020)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 11 (May. 4, 2020)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 12 (May. 11, 2020)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 13 (May. 18, 2020)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 14 (May. 23, 2020)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 15 (Jun. 1, 2020)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 16 (Jun. 8, 2020)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 17 (Jun. 22, 2020)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 18 (Jun. 29, 2020)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 19 (Jul. 6, 2020 - Jul. 13, 2020)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 20 (Jul. 20, 2020)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 21 (Jul. 27, 2020)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 22 (Aug. 3, 2020)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 23 (Aug. 17, 2020)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 24 (Aug. 24, 2020)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 25 (Aug. 31, 2020)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 26 (Sep. 7, 2020)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 27 (Sep. 14, 2020)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 28 (Sep. 21, 2020)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 29 (Sep. 28, 2020)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 30 (Oct. 5, 2020)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 31 (Oct. 12, 2020)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 32 (Oct. 19, 2020)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 33 (Oct. 26, 2020)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 34 (Nov. 2, 2020)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 35 (Nov. 9, 2020)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 36 (Nov. 16, 2020)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 37 (Nov. 23, 2020)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 38 (Nov. 30, 2020)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 39 (Dec. 7, 2020)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 40 (Dec. 14, 2020)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 41 (Dec. 21, 2020)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 42 (Dec. 28, 2020)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 43 (Jan. 4, 2021)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 44 (Jan. 18, 2021)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 45 (Jan. 25, 2021)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 46 (Feb. 1, 2021)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 47 (Feb. 8, 2021)", - "position": "95", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", - "position": "96", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", - "position": "97", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", - "position": "98", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", - "position": "99", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", - "position": "100", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", - "position": "101", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", - "position": "102", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", - "position": "103", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", - "position": "104", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", - "position": "105", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 11 (May. 10, 2021)", - "position": "106", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 12 (May. 17, 2021)", - "position": "107", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 13 (May. 24, 2021)", - "position": "108", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 14 (May. 31, 2021)", - "position": "109", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", - "position": "110", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", - "position": "111", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", - "position": "112", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", - "position": "113", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", - "position": "114", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", - "position": "115", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", - "position": "116", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", - "position": "117", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", - "position": "118", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", - "position": "119", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "ROOM 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1059671", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - } - ], - "updatedAt": 1690905757761, - "publicationStatement": [ - "New York : F-R Pub. Corp., 1925-", - "[New York] : D. Carey", - "[New York] : Condé Nast Publications" - ], - "identifier": [ - "urn:bnum:10833141", - "urn:issn:0028-792X", - "urn:lccn: 28005329", - "urn:oclc:1760231", - "urn:undefined:(OCoLC)1760231", - "urn:undefined:(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" - ], - "genreForm": [ - "Collections.", - "Directories.", - "Periodicals." - ], - "numCheckinCardItems": [ - 213 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Literature -- Periodicals.", - "Intellectual life.", - "Literature.", - "Electronic journals.", - "New York (N.Y.) -- Intellectual life -- Directories.", - "New York (State) -- New York." - ], - "titleDisplay": [ - "The New Yorker." - ], - "uri": "b10833141", - "lccClassification": [ - "AP2 .N6763" - ], - "numItems": [ - 704 - ], - "numAvailable": [ - 789 - ], - "placeOfPublication": [ - "New York", - "[New York]" - ], - "titleAlt": [ - "New Yorker", - "The New Yorker" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28-31 cm" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 572, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 916 - }, - "_score": null, - "_source": { - "uri": "i40269792", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "body": { + "took": 1319, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 13.585073, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 13.585073, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 811 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 816 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 746 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "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" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742404" - } - ], - "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742404" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742404" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2021" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 915 - }, - "_score": null, - "_source": { - "uri": "i40269798", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742420" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (May-July 2020)" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742420" + "status": "To Bind" + } + ], + "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)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742420" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 914 - }, - "_score": null, - "_source": { - "uri": "i40269804", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742438" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742438" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742438" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 913 - }, - "_score": null, - "_source": { - "uri": "i40269794", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742412" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (Aug-Oct 2020)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742412" - ], - "idBarcode": [ - "33433136742412" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 912 - }, - "_score": null, - "_source": { - "uri": "i40232403", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033321" - } - ], - "enumerationChronology": [ - "v. 95 (Oct-Nov. 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033321" - ], - "idBarcode": [ - "33433130033321" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 911 - }, - "_score": null, - "_source": { - "uri": "i40232398", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (May-July 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033305" - } - ], - "enumerationChronology": [ - "v. 95 (May-July 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033305" - ], - "idBarcode": [ - "33433130033305" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 910 - }, - "_score": null, - "_source": { - "uri": "i40232353", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033297" - } - ], - "enumerationChronology": [ - "v. 95 (Feb 18-April 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033297" - ], - "idBarcode": [ - "33433130033297" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 909 - }, - "_score": null, - "_source": { - "uri": "i40232406", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033339" - } - ], - "enumerationChronology": [ - "v. 95 (Dec. 2019-Feb. 10, 2020)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033339" - ], - "idBarcode": [ - "33433130033339" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 908 - }, - "_score": null, - "_source": { - "uri": "i40232401", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033313" - } - ], - "enumerationChronology": [ - "v. 95 (Aug.-Sept. 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033313" - ], - "idBarcode": [ - "33433130033313" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 896 - }, - "_score": null, - "_source": { - "uri": "i36060542", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119872095" - } - ], - "enumerationChronology": [ - "v. 92 (July-Sept. 2016)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433119872095" - ], - "idBarcode": [ - "33433119872095" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 92-2016" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)" - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 893 - }, - "_score": null, - "_source": { - "uri": "i36060538", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119872087" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 91 (Sept.-Oct. 2015)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433119872087" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433119872087" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 91-2015" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)" - }, - "sort": [ - " 91-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 876 - }, - "_score": null, - "_source": { - "uri": "i28878991", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099610952" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 87 (Oct-Nov 2011)" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433099610952" - ], - "idBarcode": [ - "33433099610952" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + "status": "Expected" + } + ], + "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)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1710006791578, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(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" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 112 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 572, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742412" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "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. 96 (Aug-Oct 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269794" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742438" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "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. 96 (Feb 17-April 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269804" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742420" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "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. 96 (May-July 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269798" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742404" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "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. 96 (Nov 2020-Feb 8, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269792" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033313" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "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. 95 (Aug.-Sept. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232401" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033339" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "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. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232406" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033297" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "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. 95 (Feb 18-April 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232353" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033305" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "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. 95 (May-July 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232398" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033321" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "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. 95 (Oct-Nov. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232403" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 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" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872095" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "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. 92 (July-Sept. 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060542" + }, + "sort": [ + " 92-2016" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872087" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "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. 91 (Sept.-Oct. 2015)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36060538" + }, + "sort": [ + " 91-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611091" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "status_packed": [ + "status:oh||On Holdshelf" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878981" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 875 - }, - "_score": null, - "_source": { - "uri": "i28878983", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (June-July 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611083" - } - ], - "enumerationChronology": [ - "v. 87 (June-July 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611083" - ], - "idBarcode": [ - "33433099611083" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611075" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611075", + "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. 87 (Aug-Sept 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878989" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 874 - }, - "_score": null, - "_source": { - "uri": "i28878974", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611109" - } - ], - "enumerationChronology": [ - "v. 87 (Feb. 14-Mar. 28, 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611109" - ], - "idBarcode": [ - "33433099611109" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610945" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "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. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28879000" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 873 - }, - "_score": null, - "_source": { - "uri": "i28879000", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099610945" - } - ], - "enumerationChronology": [ - "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099610945" - ], - "idBarcode": [ - "33433099610945" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611109" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611109", + "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. 87 (Feb. 14-Mar. 28, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878974" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 872 - }, - "_score": null, - "_source": { - "uri": "i28878989", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611075" - } - ], - "enumerationChronology": [ - "v. 87 (Aug-Sept 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611075" - ], - "idBarcode": [ - "33433099611075" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611083" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611083", + "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. 87 (June-July 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878983" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 871 - }, - "_score": null, - "_source": { - "uri": "i28878981", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Apr-May 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611091" - } - ], - "enumerationChronology": [ - "v. 87 (Apr-May 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611091" - ], - "idBarcode": [ - "33433099611091" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610952" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "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. 87 (Oct-Nov 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878991" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 870 - }, - "_score": null, - "_source": { - "uri": "i28974701", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099612925" - } - ], - "enumerationChronology": [ - "v. 86 inc. (May-July 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099612925" - ], - "idBarcode": [ - "33433099612925" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611133" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611133", + "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. 86 (Aug-Sept 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878953" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 869 - }, - "_score": null, - "_source": { - "uri": "i28878958", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611125" - } - ], - "enumerationChronology": [ - "v. 86 (Oct-Nov 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611125" - ], - "idBarcode": [ - "33433099611125" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611117", + "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. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878970" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 868 - }, - "_score": null, - "_source": { - "uri": "i28878948", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611141" - } - ], - "enumerationChronology": [ - "v. 86 (Feb. 15-Apr. 26, 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611141" - ], - "idBarcode": [ - "33433099611141" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611141" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611141", + "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. 86 (Feb. 15-Apr. 26, 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878948" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 867 - }, - "_score": null, - "_source": { - "uri": "i28878970", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611117" - } - ], - "enumerationChronology": [ - "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611117" - ], - "idBarcode": [ - "33433099611117" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611125" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611125", + "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. 86 (Oct-Nov 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878958" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 866 - }, - "_score": null, - "_source": { - "uri": "i28878953", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611133" - } - ], - "enumerationChronology": [ - "v. 86 (Aug-Sept 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611133" - ], - "idBarcode": [ - "33433099611133" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099612925" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099612925", + "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. 86 inc. (May-July 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28974701" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 865 - }, - "_score": null, - "_source": { - "uri": "i28878932", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611166" - } - ], - "enumerationChronology": [ - "v. 85 (Oct-Nov 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611166" - ], - "idBarcode": [ - "33433099611166" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611174" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611174", + "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. 85 (Aug. 10-Sept. 28, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878925" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 864 - }, - "_score": null, - "_source": { - "uri": "i28878920", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (May-June 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611182" - } - ], - "enumerationChronology": [ - "v. 85 (May-June 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611182" - ], - "idBarcode": [ - "33433099611182" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611190" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611190", + "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. 85 (Feb. 9-Apr. 27, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878911" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 863 - }, - "_score": null, - "_source": { - "uri": "i28878911", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611190" - } - ], - "enumerationChronology": [ - "v. 85 (Feb. 9-Apr. 27, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611190" - ], - "idBarcode": [ - "33433099611190" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611182" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611182", + "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. 85 (May-June 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878920" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 862 - }, - "_score": null, - "_source": { - "uri": "i28878925", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611174" - } - ], - "enumerationChronology": [ - "v. 85 (Aug. 10-Sept. 28, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611174" - ], - "idBarcode": [ - "33433099611174" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611166" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611166", + "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. 85 (Oct-Nov 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878932" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 861 - }, - "_score": null, - "_source": { - "uri": "i25589223", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063992" - } - ], - "enumerationChronology": [ - "v. 84 (Oct-Nov 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063992" - ], - "idBarcode": [ - "33433085063992" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064214" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064214", + "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. 84 (Apr-May 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589205" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 860 - }, - "_score": null, - "_source": { - "uri": "i25589214", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (June-July 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064008" - } - ], - "enumerationChronology": [ - "v. 84 (June-July 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064008" - ], - "idBarcode": [ - "33433085064008" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064172" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064172", + "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. 84 (Aug-Sept 2008 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589287" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 859 - }, - "_score": null, - "_source": { - "uri": "i25589272", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063950" - } - ], - "enumerationChronology": [ - "v. 84 (Feb. 11-Mar. 31 , 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063950" - ], - "idBarcode": [ - "33433085063950" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063976" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063976", + "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. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589242" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 858 - }, - "_score": null, - "_source": { - "uri": "i25589242", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063976" - } - ], - "enumerationChronology": [ - "v. 84 (Dec 1, 2008-Feb 2, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063976" - ], - "idBarcode": [ - "33433085063976" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063950" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063950", + "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. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589272" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 857 - }, - "_score": null, - "_source": { - "uri": "i25589287", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064172" - } - ], - "enumerationChronology": [ - "v. 84 (Aug-Sept 2008 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064172" - ], - "idBarcode": [ - "33433085064172" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064008" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064008", + "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. 84 (June-July 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589214" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 856 - }, - "_score": null, - "_source": { - "uri": "i25589205", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Apr-May 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064214" - } - ], - "enumerationChronology": [ - "v. 84 (Apr-May 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064214" - ], - "idBarcode": [ - "33433085064214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063992" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063992", + "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. 84 (Oct-Nov 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589223" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 855 - }, - "_score": null, - "_source": { - "uri": "i25589229", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063984" - } - ], - "enumerationChronology": [ - "v. 83 (Oct-Nov 2007 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063984" - ], - "idBarcode": [ - "33433085063984" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064198" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064198", + "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. 83 (Apr. 2-May 21, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589269" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 854 - }, - "_score": null, - "_source": { - "uri": "i25589274", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063943" - } - ], - "enumerationChronology": [ - "v. 83 (June 25-July 30, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063943" - ], - "idBarcode": [ - "33433085063943" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063968" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063968", + "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. 83 (Aug-Sept 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589251" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 853 - }, - "_score": null, - "_source": { - "uri": "i25589278", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064180" - } - ], - "enumerationChronology": [ - "v. 83 (Feb. 19-Mar. 26, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064180" - ], - "idBarcode": [ - "33433085064180" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064206" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064206", + "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. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589263" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 852 - }, - "_score": null, - "_source": { - "uri": "i25589263", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064206" - } - ], - "enumerationChronology": [ - "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064206" - ], - "idBarcode": [ - "33433085064206" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064180" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064180", + "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. 83 (Feb. 19-Mar. 26, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589278" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 851 - }, - "_score": null, - "_source": { - "uri": "i25589251", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063968" - } - ], - "enumerationChronology": [ - "v. 83 (Aug-Sept 2007 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063968" - ], - "idBarcode": [ - "33433085063968" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063943" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063943", + "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. 83 (June 25-July 30, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589274" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 850 - }, - "_score": null, - "_source": { - "uri": "i25589269", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064198" - } - ], - "enumerationChronology": [ - "v. 83 (Apr. 2-May 21, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064198" - ], - "idBarcode": [ - "33433085064198" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063984" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063984", + "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. 83 (Oct-Nov 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589229" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 849 - }, - "_score": null, - "_source": { - "uri": "i17474922", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240575" - } - ], - "enumerationChronology": [ - "v. 82 (Oct.-Nov. 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240575" - ], - "idBarcode": [ - "33433084240575" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240583" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240583", + "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. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474923" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 848 - }, - "_score": null, - "_source": { - "uri": "i17474920", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (May-June 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240559" - } - ], - "enumerationChronology": [ - "v. 82 (May-June 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240559" - ], - "idBarcode": [ - "33433084240559" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240542" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240542", + "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. 82 (Feb. 13-Apr. 24, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474919" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 847 - }, - "_score": null, - "_source": { - "uri": "i17474921", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240567" - } - ], - "enumerationChronology": [ - "v. 82 (July-Sept. & Suppl. 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240567" - ], - "idBarcode": [ - "33433084240567" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240567" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240567", + "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. 82 (July-Sept. & Suppl. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474921" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 846 - }, - "_score": null, - "_source": { - "uri": "i17474919", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240542" - } - ], - "enumerationChronology": [ - "v. 82 (Feb. 13-Apr. 24, 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240542" - ], - "idBarcode": [ - "33433084240542" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240559" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240559", + "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. 82 (May-June 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474920" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 845 - }, - "_score": null, - "_source": { - "uri": "i17474923", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240583" - } - ], - "enumerationChronology": [ - "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240583" - ], - "idBarcode": [ - "33433084240583" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240575" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240575", + "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. 82 (Oct.-Nov. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474922" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 844 - }, - "_score": null, - "_source": { - "uri": "i17474917", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240526" - } - ], - "enumerationChronology": [ - "v. 81 (Oct.-Nov. 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240526" - ], - "idBarcode": [ - "33433084240526" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240500" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240500", + "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. 81 (Apr.-May 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474915" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 843 - }, - "_score": null, - "_source": { - "uri": "i17474916", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240518" - } - ], - "enumerationChronology": [ - "v. 81 (June 27-Sept.26,2005;Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240518" - ], - "idBarcode": [ - "33433084240518" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240534" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240534", + "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. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474918" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 842 - }, - "_score": null, - "_source": { - "uri": "i17474914", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240492" - } - ], - "enumerationChronology": [ - "v. 81 (Feb. 14-Mar. 28, 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240492" - ], - "idBarcode": [ - "33433084240492" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240492" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240492", + "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. 81 (Feb. 14-Mar. 28, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474914" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 841 - }, - "_score": null, - "_source": { - "uri": "i17474918", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240534" - } - ], - "enumerationChronology": [ - "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240534" - ], - "idBarcode": [ - "33433084240534" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240518" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240518", + "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. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474916" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 840 - }, - "_score": null, - "_source": { - "uri": "i17474915", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240500" - } - ], - "enumerationChronology": [ - "v. 81 (Apr.-May 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240500" - ], - "idBarcode": [ - "33433084240500" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240526" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240526", + "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. 81 (Oct.-Nov. 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474917" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 839 - }, - "_score": null, - "_source": { - "uri": "i17474912", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240476" - } - ], - "enumerationChronology": [ - "v. 80 (Oct.-Nov. 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240476" - ], - "idBarcode": [ - "33433084240476" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240484" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240484", + "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. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474913" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 838 - }, - "_score": null, - "_source": { - "uri": "i17474911", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (May-June 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240468" - } - ], - "enumerationChronology": [ - "v. 80 (May-June 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240468" - ], - "idBarcode": [ - "33433084240468" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080028222" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433080028222", + "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. 80 (Feb. 16- Apr. 26 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474447" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 837 - }, - "_score": null, - "_source": { - "uri": "i17474399", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (July-Sept 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078508037" - } - ], - "enumerationChronology": [ - "v. 80 (July-Sept 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078508037" - ], - "idBarcode": [ - "33433078508037" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078508037" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078508037", + "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. 80 (July-Sept 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474399" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 836 - }, - "_score": null, - "_source": { - "uri": "i17474447", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433080028222" - } - ], - "enumerationChronology": [ - "v. 80 (Feb. 16- Apr. 26 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433080028222" - ], - "idBarcode": [ - "33433080028222" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240468" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240468", + "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. 80 (May-June 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474911" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 835 - }, - "_score": null, - "_source": { - "uri": "i17474913", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240484" - } - ], - "enumerationChronology": [ - "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240484" - ], - "idBarcode": [ - "33433084240484" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240476" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240476", + "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. 80 (Oct.-Nov. 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474912" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 834 - }, - "_score": null, - "_source": { - "uri": "i17474909", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240443" - } - ], - "enumerationChronology": [ - "v. 79 (Oct.-Nov. 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240443" - ], - "idBarcode": [ - "33433084240443" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240419" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240419", + "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. 79 (Apr.-May 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474906" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 833 - }, - "_score": null, - "_source": { - "uri": "i17474907", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (June-July 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240427" - } - ], - "enumerationChronology": [ - "v. 79 (June-July 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240427" - ], - "idBarcode": [ - "33433084240427" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240435" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240435", + "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. 79 (Aug-Sept. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474908" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 832 - }, - "_score": null, - "_source": { - "uri": "i17474905", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240401" - } - ], - "enumerationChronology": [ - "v. 79 (Feb. 17-Mar. 31, 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240401" - ], - "idBarcode": [ - "33433084240401" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240450" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240450", + "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. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474910" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 831 - }, - "_score": null, - "_source": { - "uri": "i17474910", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240450" - } - ], - "enumerationChronology": [ - "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240450" - ], - "idBarcode": [ - "33433084240450" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240401", + "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. 79 (Feb. 17-Mar. 31, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474905" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 830 - }, - "_score": null, - "_source": { - "uri": "i17474908", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240435" - } - ], - "enumerationChronology": [ - "v. 79 (Aug-Sept. 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240435" - ], - "idBarcode": [ - "33433084240435" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240427" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240427", + "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. 79 (June-July 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474907" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 829 - }, - "_score": null, - "_source": { - "uri": "i17474906", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240419" - } - ], - "enumerationChronology": [ - "v. 79 (Apr.-May 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240419" - ], - "idBarcode": [ - "33433084240419" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240443" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240443", + "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. 79 (Oct.-Nov. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474909" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 828 - }, - "_score": null, - "_source": { - "uri": "i17474903", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240385" - } - ], - "enumerationChronology": [ - "v. 78 (Oct.-Nov. 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240385" - ], - "idBarcode": [ - "33433084240385" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240351" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240351", + "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. 78 (Apr.-May 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474900" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 827 - }, - "_score": null, - "_source": { - "uri": "i17474901", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (June-July 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240369" - } - ], - "enumerationChronology": [ - "v. 78 (June-July 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240369" - ], - "idBarcode": [ - "33433084240369" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240377", + "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. 78 (Aug.-Sept. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474902" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 826 - }, - "_score": null, - "_source": { - "uri": "i17474899", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240344" - } - ], - "enumerationChronology": [ - "v. 78 (Feb. 18-Mar. 25, 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240344" - ], - "idBarcode": [ - "33433084240344" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240393", + "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. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474904" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 825 - }, - "_score": null, - "_source": { - "uri": "i17474904", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240393" - } - ], - "enumerationChronology": [ - "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240393" - ], - "idBarcode": [ - "33433084240393" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240344" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240344", + "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. 78 (Feb. 18-Mar. 25, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474899" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 824 - }, - "_score": null, - "_source": { - "uri": "i17474902", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240377" - } - ], - "enumerationChronology": [ - "v. 78 (Aug.-Sept. 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240377" - ], - "idBarcode": [ - "33433084240377" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240369" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240369", + "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. 78 (June-July 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474901" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 823 - }, - "_score": null, - "_source": { - "uri": "i17474900", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240351" - } - ], - "enumerationChronology": [ - "v. 78 (Apr.-May 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240351" - ], - "idBarcode": [ - "33433084240351" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240385", + "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. 78 (Oct.-Nov. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474903" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 822 - }, - "_score": null, - "_source": { - "uri": "i17474897", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240328" - } - ], - "enumerationChronology": [ - "v. 77 (Oct. -Nov. 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240328" - ], - "idBarcode": [ - "33433084240328" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240310", + "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. 77 (Aug. 6-Sept. 17, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474896" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 821 - }, - "_score": null, - "_source": { - "uri": "i17474446", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (May-July 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433079991612" - } - ], - "enumerationChronology": [ - "v. 77 (May-July 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433079991612" - ], - "idBarcode": [ - "33433079991612" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-06-21" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240336" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240336", + "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. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474898" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 820 - }, - "_score": null, - "_source": { - "uri": "i17474895", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240302" - } - ], - "enumerationChronology": [ - "v. 77 (Feb. 19-Apr. 30, 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240302" - ], - "idBarcode": [ - "33433084240302" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240302", + "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. 77 (Feb. 19-Apr. 30, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474895" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 819 - }, - "_score": null, - "_source": { - "uri": "i17474898", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240336" - } - ], - "enumerationChronology": [ - "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240336" - ], - "idBarcode": [ - "33433084240336" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433079991612" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433079991612", + "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. 77 (May-July 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474446" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 818 - }, - "_score": null, - "_source": { - "uri": "i17474896", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240310" - } - ], - "enumerationChronology": [ - "v. 77 (Aug. 6-Sept. 17, 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240310" - ], - "idBarcode": [ - "33433084240310" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240328" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240328", + "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. 77 (Oct. -Nov. 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474897" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 817 - }, - "_score": null, - "_source": { - "uri": "i17474893", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240286" - } - ], - "enumerationChronology": [ - "v. 76 (Sept.-Oct. 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240286" - ], - "idBarcode": [ - "33433084240286" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080426707" + ], + "identifier": [ + "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 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "type": "bf:ShelfMark" + }, + { + "value": "33433080426707", + "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. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474434" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)" - }, - "sort": [ - " 76-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 816 - }, - "_score": null, - "_source": { - "uri": "i17474894", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240294" - } - ], - "enumerationChronology": [ - "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240294" - ], - "idBarcode": [ - "33433084240294" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 102 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240278" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240278", + "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. 76 (Feb. 21 - Apr. 17, 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i40028166" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)" - }, - "sort": [ - " 76-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 815 - }, - "_score": null, - "_source": { - "uri": "i17474402", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078639105" - } - ], - "enumerationChronology": [ - "v. 76 (July-Aug. 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078639105" - ], - "idBarcode": [ - "33433078639105" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 101 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (July-Aug. 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078639105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078639105", + "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. 76 (July-Aug. 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474402" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)" - }, - "sort": [ - " 76-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 814 - }, - "_score": null, - "_source": { - "uri": "i40028166", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240278" - } - ], - "enumerationChronology": [ - "v. 76 (Feb. 21 - Apr. 17, 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240278" - ], - "idBarcode": [ - "33433084240278" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 100 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240294" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240294", + "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. 76 (Nov. 6, 2000-Feb. 5, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474894" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)" - }, - "sort": [ - " 76-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 813 - }, - "_score": null, - "_source": { - "uri": "i17474434", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433080426707" - } - ], - "enumerationChronology": [ - "v. 76 (Apr 24-June 26 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433080426707" - ], - "idBarcode": [ - "33433080426707" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-07-31" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 99 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Sept.-Oct. 2000)" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240286" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240286", + "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. 76 (Sept.-Oct. 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474893" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)" - }, - "sort": [ - " 76-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 812 - }, - "_score": null, - "_source": { - "uri": "i17474887", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240211" - } - ], - "enumerationChronology": [ - "v. 75(Feb.22-May 3, 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240211" - ], - "idBarcode": [ - "33433084240211" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 109 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240260" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240260", + "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. 75 (Dec. 6, 1999-Feb. 14, 2000)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474892" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 811 - }, - "_score": null, - "_source": { - "uri": "i17474890", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240245" - } - ], - "enumerationChronology": [ - "v. 75 (Sept.-Oct. 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240245" - ], - "idBarcode": [ - "33433084240245" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 108 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (July-Aug. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240237" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240237", + "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. 75 (July-Aug. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474889" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 810 - }, - "_score": null, - "_source": { - "uri": "i17474891", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Nov. 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240252" - } - ], - "enumerationChronology": [ - "v. 75 (Nov. 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240252" - ], - "idBarcode": [ - "33433084240252" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (May 10-June 28, 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240229" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240229", + "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. 75 (May 10-June 28, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474888" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 809 - }, - "_score": null, - "_source": { - "uri": "i17474888", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240229" - } - ], - "enumerationChronology": [ - "v. 75 (May 10-June 28, 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240229" - ], - "idBarcode": [ - "33433084240229" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 106 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (Nov. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240252" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240252", + "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. 75 (Nov. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474891" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 808 - }, - "_score": null, - "_source": { - "uri": "i17474889", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240237" - } - ], - "enumerationChronology": [ - "v. 75 (July-Aug. 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240237" - ], - "idBarcode": [ - "33433084240237" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 105 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75 (Sept.-Oct. 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240245" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240245", + "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. 75 (Sept.-Oct. 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474890" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 807 - }, - "_score": null, - "_source": { - "uri": "i17474892", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240260" - } - ], - "enumerationChronology": [ - "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240260" - ], - "idBarcode": [ - "33433084240260" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1999", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 104 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 75(Feb.22-May 3, 1999)" + ], + "enumerationChronology_sort": [ + " 75-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240211" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240211", + "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. 75(Feb.22-May 3, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i17474887" + }, + "sort": [ " 75-1999" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)" - }, - "sort": [ - " 75-1999" - ] - }, - { - "_nested": { - "field": "items", - "offset": 806 - }, - "_score": null, - "_source": { - "uri": "i17474886", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240203" - } - ], - "enumerationChronology": [ - "v. 74 (Sept. 7-Nov. 2, 1998)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240203" - ], - "idBarcode": [ - "33433084240203" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 112 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 74 (June- Aug. 1998)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240195" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240195", + "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. 74 (June- Aug. 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474885" + }, + "sort": [ " 74-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)" - }, - "sort": [ - " 74-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 805 - }, - "_score": null, - "_source": { - "uri": "i17474403", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078660671" - } - ], - "enumerationChronology": [ - "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078660671" - ], - "idBarcode": [ - "33433078660671" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1999" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 111 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078660671" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078660671", + "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. 74 (Nov. 9, 1998-Feb. 15, 1999)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474403" + }, + "sort": [ " 74-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)" - }, - "sort": [ - " 74-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 804 - }, - "_score": null, - "_source": { - "uri": "i17474885", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240195" - } - ], - "enumerationChronology": [ - "v. 74 (June- Aug. 1998)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240195" - ], - "idBarcode": [ - "33433084240195" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 110 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 74 (Sept. 7-Nov. 2, 1998)" + ], + "enumerationChronology_sort": [ + " 74-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240203" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240203", + "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. 74 (Sept. 7-Nov. 2, 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474886" + }, + "sort": [ " 74-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)" - }, - "sort": [ - " 74-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 803 - }, - "_score": null, - "_source": { - "uri": "i17474453", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 74" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 74", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433080030616" - } - ], - "enumerationChronology": [ - "v. 74" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433080030616" - ], - "idBarcode": [ - "33433080030616" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 113 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 74" + ], + "enumerationChronology_sort": [ + " 74-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080030616" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 74", + "type": "bf:ShelfMark" + }, + { + "value": "33433080030616", + "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. 74" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i17474453" + }, + "sort": [ " 74-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074" - }, - "sort": [ - " 74-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 802 - }, - "_score": null, - "_source": { - "uri": "i17142393", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078530031" - } - ], - "enumerationChronology": [ - "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078530031" - ], - "idBarcode": [ - "33433078530031" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 73, - "lte": 73 - } - ], - "dateRange": [ - { - "gte": "1997", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 117 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (Aug-Oct 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658113" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658113", + "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. 73 (Aug-Oct 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17474430" + }, + "sort": [ " 73-1997" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)" - }, - "sort": [ - " 73-1997" - ] - }, - { - "_nested": { - "field": "items", - "offset": 801 - }, - "_score": null, - "_source": { - "uri": "i16700889", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433081121117" - } - ], - "enumerationChronology": [ - "v. 73 (May 12-July 28, 1997)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433081121117" - ], - "idBarcode": [ - "33433081121117" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 73, - "lte": 73 - } - ], - "dateRange": [ - { - "gte": "1997", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 116 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (Feb 17-May 5 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658105", + "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. 73 (Feb 17-May 5 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17474429" + }, + "sort": [ " 73-1997" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)" - }, - "sort": [ - " 73-1997" - ] - }, - { - "_nested": { - "field": "items", - "offset": 800 - }, - "_score": null, - "_source": { - "uri": "i17474429", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658105" - } - ], - "enumerationChronology": [ - "v. 73 (Feb 17-May 5 1997)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658105" - ], - "idBarcode": [ - "33433078658105" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 73, - "lte": 73 - } - ], - "dateRange": [ - { - "gte": "1997", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 115 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 73 (May 12-July 28, 1997)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433081121117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433081121117", + "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. 73 (May 12-July 28, 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i16700889" + }, + "sort": [ " 73-1997" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)" - }, - "sort": [ - " 73-1997" - ] - }, - { - "_nested": { - "field": "items", - "offset": 799 - }, - "_score": null, - "_source": { - "uri": "i17474430", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658113" - } - ], - "enumerationChronology": [ - "v. 73 (Aug-Oct 1997)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658113" - ], - "idBarcode": [ - "33433078658113" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 73, - "lte": 73 - } - ], - "dateRange": [ - { - "gte": "1997", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 114 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1997", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "enumerationChronology_sort": [ + " 73-1997" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078530031" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078530031", + "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. 73 (Nov. 3, 1997-Feb. 9, 1998)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i17142393" + }, + "sort": [ " 73-1997" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)" - }, - "sort": [ - " 73-1997" - ] - }, - { - "_nested": { - "field": "items", - "offset": 798 - }, - "_score": null, - "_source": { - "uri": "i17474427", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658089" - } - ], - "enumerationChronology": [ - "v. 72 (Oct 7-Nov 25 1996)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658089" - ], - "idBarcode": [ - "33433078658089" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 122 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Apr 29-July 1 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658063" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658063", + "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. 72 (Apr 29-July 1 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474425" + }, + "sort": [ " 72-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)" - }, - "sort": [ - " 72-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 797 - }, - "_score": null, - "_source": { - "uri": "i17474426", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658071" - } - ], - "enumerationChronology": [ - "v. 72 (July 8-Sept 30 1996 (inc))" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658071" - ], - "idBarcode": [ - "33433078658071" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 121 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 72 (Dec 2 1996-Feb 10 1997)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658097" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658097", + "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. 72 (Dec 2 1996-Feb 10 1997)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474428" + }, + "sort": [ " 72-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))" - }, - "sort": [ - " 72-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 796 - }, - "_score": null, - "_source": { - "uri": "i17474400", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078626128" - } - ], - "enumerationChronology": [ - "v. 72 (Feb 19-Apr 22 1996)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078626128" - ], - "idBarcode": [ - "33433078626128" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 120 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Feb 19-Apr 22 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078626128" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078626128", + "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. 72 (Feb 19-Apr 22 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474400" + }, + "sort": [ " 72-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)" - }, - "sort": [ - " 72-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 795 - }, - "_score": null, - "_source": { - "uri": "i17474428", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658097" - } - ], - "enumerationChronology": [ - "v. 72 (Dec 2 1996-Feb 10 1997)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658097" - ], - "idBarcode": [ - "33433078658097" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1997" - } - ], - "enumerationChronology_sort": [ - " 72-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)" - }, - "sort": [ - " 72-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 794 - }, - "_score": null, - "_source": { - "uri": "i17474425", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658063" - } - ], - "enumerationChronology": [ - "v. 72 (Apr 29-July 1 1996)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658063" - ], - "idBarcode": [ - "33433078658063" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ - " 72-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)" - }, - "sort": [ - " 72-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 793 - }, - "_score": null, - "_source": { - "uri": "i17474423", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658048" - } - ], - "enumerationChronology": [ - "v. 71 (Oct-Nov 1995)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658048" - ], - "idBarcode": [ - "33433078658048" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 119 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (July 8-Sept 30 1996 (inc))" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658071" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658071", + "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. 72 (July 8-Sept 30 1996 (inc))" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474426" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 118 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 72 (Oct 7-Nov 25 1996)" + ], + "enumerationChronology_sort": [ + " 72-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658089" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658089", + "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. 72 (Oct 7-Nov 25 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i17474427" + }, + "sort": [ + " 72-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 128 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Apr.-May 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240187" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "urn:barcode:33433084240187" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Apr.-May 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240187", + "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. 71 (Apr.-May 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Apr.-May 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474884" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)" - }, - "sort": [ - " 71-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 792 - }, - "_score": null, - "_source": { - "uri": "i17474421", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (June-July 1995)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658022" - } - ], - "enumerationChronology": [ - "v. 71 (June-July 1995)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658022" - ], - "idBarcode": [ - "33433078658022" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 127 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Aug-Sept 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658030" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "urn:barcode:33433078658030" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658030", + "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. 71 (Aug-Sept 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Aug-Sept 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474422" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)" - }, - "sort": [ - " 71-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 791 - }, - "_score": null, - "_source": { - "uri": "i17474883", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240179" - } - ], - "enumerationChronology": [ - "v. 71 (Feb. 20-Mar. 27, 1995)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240179" - ], - "idBarcode": [ - "33433084240179" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 126 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 71 (Dec 4 1995-Feb 12 1996)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658055" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "urn:barcode:33433078658055" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658055", + "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. 71 (Dec 4 1995-Feb 12 1996)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Dec 4 1995-Feb 12 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474424" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)" - }, - "sort": [ - " 71-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 790 - }, - "_score": null, - "_source": { - "uri": "i17474424", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (Dec 4 1995-Feb 12 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658055" - } - ], - "enumerationChronology": [ - "v. 71 (Dec 4 1995-Feb 12 1996)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658055" - ], - "idBarcode": [ - "33433078658055" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 125 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Feb. 20-Mar. 27, 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240179" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "urn:barcode:33433084240179" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240179", + "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. 71 (Feb. 20-Mar. 27, 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474883" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Dec 4 1995-Feb 12 1996)" - }, - "sort": [ - " 71-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 789 - }, - "_score": null, - "_source": { - "uri": "i17474422", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (Aug-Sept 1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078658030" - } - ], - "enumerationChronology": [ - "v. 71 (Aug-Sept 1995)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078658030" - ], - "idBarcode": [ - "33433078658030" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 124 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (June-July 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658022" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", + "urn:barcode:33433078658022" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658022", + "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. 71 (June-July 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474421" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Aug-Sept 1995)" - }, - "sort": [ - " 71-1995" - ] - }, - { - "_nested": { - "field": "items", - "offset": 788 - }, - "_score": null, - "_source": { - "uri": "i17474884", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Apr.-May 1995)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 71 (Apr.-May 1995)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240187" - } - ], - "enumerationChronology": [ - "v. 71 (Apr.-May 1995)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240187" - ], - "idBarcode": [ - "33433084240187" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "dateRange": [ - { - "gte": "1995", - "lte": "1995" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 123 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 71 (Oct-Nov 1995)" + ], + "enumerationChronology_sort": [ + " 71-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078658048" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "urn:barcode:33433078658048" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078658048", + "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. 71 (Oct-Nov 1995)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i17474423" + }, + "sort": [ " 71-1995" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Apr.-May 1995)" - }, - "sort": [ - " 71-1995" - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": 917, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 916 - }, - "_score": 1, - "_source": { - "uri": "i40269792", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742404" - } - ], - "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742404" - ], - "idBarcode": [ - "33433136742404" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2021" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)" - } - }, - { - "_nested": { - "field": "items", - "offset": 915 - }, - "_score": 1, - "_source": { - "uri": "i40269798", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742420" - } - ], - "enumerationChronology": [ - "v. 96 (May-July 2020)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742420" - ], - "idBarcode": [ - "33433136742420" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)" + ] } - }, - { - "_nested": { - "field": "items", - "offset": 914 - }, - "_score": 1, - "_source": { - "uri": "i40269804", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742438" - } - ], - "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742438" - ], - "idBarcode": [ - "33433136742438" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)" + ] + } + }, + "allItems": { + "hits": { + "total": 816, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 815 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-04-26" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 10" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 814 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-29" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 6" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 813 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-22" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 5" + ] + } } - } - ] + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 572 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 112 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 88 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 12 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + }, + { + "key": "status:t||In transit", + "doc_count": 1 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", - "doc_count": 572 - }, - { - "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", - "doc_count": 213 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 66 - }, - { - "key": "loc:rcma2||Offsite", - "doc_count": 66 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:51 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "170028", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10833141\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"terms\":{\"items.holdingLocation.id\":[\"loc:mal82\"]}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1121" + }, + "timeout": 30000 + }, + "options": {}, + "id": 6 }, - "item_format": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 704 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 789 - }, - { - "key": "status:i||At bindery", - "doc_count": 95 - }, - { - "key": "status:oh||On Holdshelf", - "doc_count": 23 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:na||Not available", - "doc_count": 2 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-5fd8a7bc95ea9e9ad14fe9b45e2b1561.json b/test/fixtures/query-5fd8a7bc95ea9e9ad14fe9b45e2b1561.json new file mode 100644 index 00000000..8ead41ec --- /dev/null +++ b/test/fixtures/query-5fd8a7bc95ea9e9ad14fe9b45e2b1561.json @@ -0,0 +1,16741 @@ +{ + "body": { + "took": 296, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 5, + "max_score": 54.71482, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b11826883", + "_score": 54.71482, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Indexed In", + "label": "Applied science & technology index", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Art index", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "R]pertoire international de la littérature de l'art", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Art and archaeology technical abstracts", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Artbibliographies modern", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Avery index to architectural periodicals", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Vols. 1 (1965)-10 (1974). 1 v.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Vol. 1 (1965)-" + ], + "subjectLiteral_exploded": [ + "Furniture", + "Furniture -- England", + "Furniture -- England -- History", + "Furniture -- England -- History -- Periodicals" + ], + "numItemDatesParsed": [ + 70 + ], + "publisherLiteral": [ + "The Society" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 70 + ], + "createdYear": [ + 1965 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Furniture history : the journal of the Furniture History Society." + ], + "shelfMark": [ + "JQL 08-18" + ], + "numItemVolumesParsed": [ + 70 + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "66053650 //r89" + ], + "idIssn": [ + "0016-3058" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Furniture History Society (London, England)" + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-18" + }, + { + "type": "nypl:Bnumber", + "value": "11826883" + }, + { + "type": "nypl:Oclc", + "value": "1570335" + }, + { + "type": "bf:Lccn", + "value": "66053650 //r89" + }, + { + "type": "bf:Issn", + "value": "0016-3058" + }, + { + "type": "bf:Identifier", + "value": "0280126" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1832956" + } + ], + "idOclc": [ + "1570335" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 30 (1994)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 31 (1995)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 32 (1996)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 33 (1997)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 34 (1998)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 35 (1999)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 26-35 (1990 - 1999)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 36 (2000)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 37 (2001)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 38 (2002)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 39 (2003)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 40 (2004)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 41 (2005)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 42 (2006)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 43 (2007)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 44 (2008)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 45 (2009)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 46 (2010)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 47 (2011)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 48 (2012)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 36-45 (2000 - 2009)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 49 (2013)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 50 (2014)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 51 (2015)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 52 (2016)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Expected" + }, + { + "coverage": "No. 53 (2017)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Expected" + }, + { + "coverage": "No. 54 (2018)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Expected" + }, + { + "coverage": "No. 55 (2019)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 56 (2020)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Arrived" + }, + { + "coverage": "No. 57 (2021)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Expected" + }, + { + "coverage": "No. 58 (2022)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-18" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "1(1965)-44(2008)-", + "v. 3636 (2000) - v. 45 (2000); v. 44 (2008); v. 45 (2009); v. 46 (2010); v. 47 (2011); v. 48 (2012); v. 49 (2013); v. 50 (2014); v. 55 (2019)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JQL 08-18" + } + ], + "physicalLocation": [ + "JQL 08-18" + ], + "location": [ + { + "code": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "uri": "h1066822" + } + ], + "updatedAt": 1704592887021, + "publicationStatement": [ + "[London] : The Society" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18", + "urn:bnum:11826883", + "urn:oclc:1570335", + "urn:lccn:66053650 //r89", + "urn:issn:0016-3058", + "urn:identifier:0280126", + "urn:identifier:(WaOLN)nyp1832956" + ], + "numCheckinCardItems": [ + 31 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Furniture -- England -- History -- Periodicals." + ], + "titleDisplay": [ + "Furniture history : the journal of the Furniture History Society." + ], + "uri": "b11826883", + "lccClassification": [ + "NK2528 .F8" + ], + "placeOfPublication": [ + "[London]" + ], + "titleAlt": [ + "Furnit. hist.", + "Furniture history" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 70, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2023", + "lte": "2023" + } + ], + "dueDate": [ + "2024-04-05" + ], + "enumerationChronology": [ + "v. 59 (2023)" + ], + "enumerationChronology_sort": [ + " 59-2023" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076530082" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 59 (2023)", + "urn:barcode:33433076530082" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 59 (2023)", + "type": "bf:ShelfMark" + }, + { + "value": "33433076530082", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-18 v. 59 (2023)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000059 (2023)", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 59, + "lte": 59 + } + ], + "uri": "i40673104" + }, + "sort": [ + " 59-2023" + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-01", + "lte": "2022-01-01" + } + ], + "enumerationChronology": [ + "No. 58 (2022)" + ], + "enumerationChronology_sort": [ + " 58-2022-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-0", + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ], + "volumeRaw": [ + "No. 58" + ] + }, + "sort": [ + " 58-2022-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2022", + "lte": "2022" + } + ], + "enumerationChronology": [ + "v. 58 (2022)" + ], + "enumerationChronology_sort": [ + " 58-2022" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076543143" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 58 (2022)", + "urn:barcode:33433076543143" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 58 (2022)", + "type": "bf:ShelfMark" + }, + { + "value": "33433076543143", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 58 (2022)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000058 (2022)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 58, + "lte": 58 + } + ], + "uri": "i39962833" + }, + "sort": [ + " 58-2022" + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-01-01", + "lte": "2021-01-01" + } + ], + "enumerationChronology": [ + "No. 57 (2021)" + ], + "enumerationChronology_sort": [ + " 57-2021-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-1", + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ], + "volumeRaw": [ + "No. 57" + ] + }, + "sort": [ + " 57-2021-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 57 (2021)" + ], + "enumerationChronology_sort": [ + " 57-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433072299997" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 57 (2021)", + "urn:barcode:33433072299997" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 57 (2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433072299997", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 57 (2021)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000057 (2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 57, + "lte": 57 + } + ], + "uri": "i39175596" + }, + "sort": [ + " 57-2021" + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2020-01-01", + "lte": "2020-01-01" + } + ], + "enumerationChronology": [ + "No. 56 (2020)" + ], + "enumerationChronology_sort": [ + " 56-2020-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-2", + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ], + "volumeRaw": [ + "No. 56" + ] + }, + "sort": [ + " 56-2020-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 56 (2020)" + ], + "enumerationChronology_sort": [ + " 56-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076529019" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 56 (2020)", + "urn:barcode:33433076529019" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 56 (2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433076529019", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 56 (2020)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000056 (2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ], + "uri": "i38877467" + }, + "sort": [ + " 56-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2019-01-01", + "lte": "2019-01-01" + } + ], + "enumerationChronology": [ + "No. 55 (2019)" + ], + "enumerationChronology_sort": [ + " 55-2019-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-3", + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "volumeRaw": [ + "No. 55" + ] + }, + "sort": [ + " 55-2019-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 55 (2019)" + ], + "enumerationChronology_sort": [ + " 55-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076528763" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 55 (2019)", + "urn:barcode:33433076528763" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 55 (2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433076528763", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 55 (2019)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000055 (2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "uri": "i38877461" + }, + "sort": [ + " 55-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2018-01-01", + "lte": "2018-01-01" + } + ], + "enumerationChronology": [ + "No. 54 (2018)" + ], + "enumerationChronology_sort": [ + " 54-2018-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-4", + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ], + "volumeRaw": [ + "No. 54" + ] + }, + "sort": [ + " 54-2018-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 54 (2018)" + ], + "enumerationChronology_sort": [ + " 54-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433083531677" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 54 (2018)", + "urn:barcode:33433083531677" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 54 (2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433083531677", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 54 (2018)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000054 (2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ], + "uri": "i16753906" + }, + "sort": [ + " 54-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2017-01-01", + "lte": "2017-01-01" + } + ], + "enumerationChronology": [ + "No. 53 (2017)" + ], + "enumerationChronology_sort": [ + " 53-2017-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-5", + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ], + "volumeRaw": [ + "No. 53" + ] + }, + "sort": [ + " 53-2017-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 53 (2017)" + ], + "enumerationChronology_sort": [ + " 53-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433086720046" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 53 (2017)", + "urn:barcode:33433086720046" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 53 (2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433086720046", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 53 (2017)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000053 (2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ], + "uri": "i36041027" + }, + "sort": [ + " 53-2017" + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2016-01-01", + "lte": "2016-01-01" + } + ], + "enumerationChronology": [ + "No. 52 (2016)" + ], + "enumerationChronology_sort": [ + " 52-2016-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-29", + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ], + "volumeRaw": [ + "No. 52" + ] + }, + "sort": [ + " 52-2016-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2015-01-01", + "lte": "2015-01-01" + } + ], + "enumerationChronology": [ + "No. 51 (2015)" + ], + "enumerationChronology_sort": [ + " 51-2015-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-30", + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ], + "volumeRaw": [ + "No. 51" + ] + }, + "sort": [ + " 51-2015-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 51 (2015)" + ], + "enumerationChronology_sort": [ + " 51-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433069825366" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 51 (2015)", + "urn:barcode:33433069825366" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 51 (2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433069825366", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 51 (2015)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000051 (2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ], + "uri": "i33587281" + }, + "sort": [ + " 51-2015" + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2014-01-01", + "lte": "2014-01-01" + } + ], + "enumerationChronology": [ + "No. 50 (2014)" + ], + "enumerationChronology_sort": [ + " 50-2014-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-28", + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ], + "volumeRaw": [ + "No. 50" + ] + }, + "sort": [ + " 50-2014-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 50 (2014)" + ], + "enumerationChronology_sort": [ + " 50-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433112607373" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 50 (2014)", + "urn:barcode:33433112607373" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 50 (2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433112607373", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 50 (2014)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000050 (2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ], + "uri": "i32204255" + }, + "sort": [ + " 50-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2013-01-01", + "lte": "2013-01-01" + } + ], + "enumerationChronology": [ + "No. 49 (2013)" + ], + "enumerationChronology_sort": [ + " 49-2013-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-27", + "volumeRange": [ + { + "gte": 49, + "lte": 49 + } + ], + "volumeRaw": [ + "No. 49" + ] + }, + "sort": [ + " 49-2013-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 49 (2013)" + ], + "enumerationChronology_sort": [ + " 49-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433101062549" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 49 (2013)", + "urn:barcode:33433101062549" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 49 (2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433101062549", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 49 (2013)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000049 (2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 49, + "lte": 49 + } + ], + "uri": "i31146937" + }, + "sort": [ + " 49-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2012-01-01", + "lte": "2012-01-01" + } + ], + "enumerationChronology": [ + "No. 48 (2012)" + ], + "enumerationChronology_sort": [ + " 48-2012-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-25", + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ], + "volumeRaw": [ + "No. 48" + ] + }, + "sort": [ + " 48-2012-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 48 (2012)" + ], + "enumerationChronology_sort": [ + " 48-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433101084204" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 48 (2012)", + "urn:barcode:33433101084204" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 48 (2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433101084204", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 48 (2012)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000048 (2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ], + "uri": "i30011841" + }, + "sort": [ + " 48-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2011-01-01", + "lte": "2011-01-01" + } + ], + "enumerationChronology": [ + "No. 47 (2011)" + ], + "enumerationChronology_sort": [ + " 47-2011-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-24", + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ], + "volumeRaw": [ + "No. 47" + ] + }, + "sort": [ + " 47-2011-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 47 (2011)" + ], + "enumerationChronology_sort": [ + " 47-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433101072555" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 47 (2011)", + "urn:barcode:33433101072555" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 47 (2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433101072555", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-18" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-18 v. 47 (2011)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000047 (2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ], + "uri": "i28878768" + }, + "sort": [ + " 47-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2010-01-01", + "lte": "2010-01-01" + } + ], + "enumerationChronology": [ + "No. 46 (2010)" + ], + "enumerationChronology_sort": [ + " 46-2010-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-23", + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "volumeRaw": [ + "No. 46" + ] + }, + "sort": [ + " 46-2010-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 46 (2010)" + ], + "enumerationChronology_sort": [ + " 46-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433088832484" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 46 (2010)", + "urn:barcode:33433088832484" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 46 (2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433088832484", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 46 (2010)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000046 (2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "uri": "i26216680" + }, + "sort": [ + " 46-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2009-01-01", + "lte": "2009-01-01" + } + ], + "enumerationChronology": [ + "No. 45 (2009)" + ], + "enumerationChronology_sort": [ + " 45-2009-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-22", + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "volumeRaw": [ + "No. 45" + ] + }, + "sort": [ + " 45-2009-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2008-01-01", + "lte": "2008-01-01" + } + ], + "enumerationChronology": [ + "No. 44 (2008)" + ], + "enumerationChronology_sort": [ + " 44-2008-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-21", + "volumeRange": [ + { + "gte": 44, + "lte": 44 + } + ], + "volumeRaw": [ + "No. 44" + ] + }, + "sort": [ + " 44-2008-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 44-45 (2008-2009)" + ], + "enumerationChronology_sort": [ + " 44-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433084525736" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 44-45 (2008-2009)", + "urn:barcode:33433084525736" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 44-45 (2008-2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084525736", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-18" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-18 v. 44-45 (2008-2009)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000044-45 (2008-2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 44, + "lte": 45 + } + ], + "uri": "i29627803" + }, + "sort": [ + " 44-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2007-01-01", + "lte": "2007-01-01" + } + ], + "enumerationChronology": [ + "No. 43 (2007)" + ], + "enumerationChronology_sort": [ + " 43-2007-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-20", + "volumeRange": [ + { + "gte": 43, + "lte": 43 + } + ], + "volumeRaw": [ + "No. 43" + ] + }, + "sort": [ + " 43-2007-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2006-01-01", + "lte": "2006-01-01" + } + ], + "enumerationChronology": [ + "No. 42 (2006)" + ], + "enumerationChronology_sort": [ + " 42-2006-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-19", + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ], + "volumeRaw": [ + "No. 42" + ] + }, + "sort": [ + " 42-2006-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 42-43 (2006-2007)" + ], + "enumerationChronology_sort": [ + " 42-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433102440397" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 42-43 (2006-2007)", + "urn:barcode:33433102440397" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 42-43 (2006-2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102440397", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-18" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-18 v. 42-43 (2006-2007)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000042-43 (2006-2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 42, + "lte": 43 + } + ], + "uri": "i29627528" + }, + "sort": [ + " 42-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2005-01-01", + "lte": "2005-01-01" + } + ], + "enumerationChronology": [ + "No. 41 (2005)" + ], + "enumerationChronology_sort": [ + " 41-2005-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-18", + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ], + "volumeRaw": [ + "No. 41" + ] + }, + "sort": [ + " 41-2005-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2004-01-01", + "lte": "2004-01-01" + } + ], + "enumerationChronology": [ + "No. 40 (2004)" + ], + "enumerationChronology_sort": [ + " 40-2004-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-17", + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ], + "volumeRaw": [ + "No. 40" + ] + }, + "sort": [ + " 40-2004-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 40-41 (2004-2005)" + ], + "enumerationChronology_sort": [ + " 40-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433102440389" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 40-41 (2004-2005)", + "urn:barcode:33433102440389" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 40-41 (2004-2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102440389", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-18" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-18 v. 40-41 (2004-2005)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000040-41 (2004-2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 40, + "lte": 41 + } + ], + "uri": "i29627525" + }, + "sort": [ + " 40-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2003-01-01", + "lte": "2003-01-01" + } + ], + "enumerationChronology": [ + "No. 39 (2003)" + ], + "enumerationChronology_sort": [ + " 39-2003-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-16", + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ], + "volumeRaw": [ + "No. 39" + ] + }, + "sort": [ + " 39-2003-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2002-01-01", + "lte": "2002-01-01" + } + ], + "enumerationChronology": [ + "No. 38 (2002)" + ], + "enumerationChronology_sort": [ + " 38-2002-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-15", + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ], + "volumeRaw": [ + "No. 38" + ] + }, + "sort": [ + " 38-2002-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 38-39 (2002-2003)" + ], + "enumerationChronology_sort": [ + " 38-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272329" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 38-39 (2002-2003)", + "urn:barcode:33433078272329" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 38-39 (2002-2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272329", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 38-39 (2002-2003)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000038-39 (2002-2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 38, + "lte": 39 + } + ], + "uri": "i16753905" + }, + "sort": [ + " 38-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-01-01", + "lte": "2001-01-01" + } + ], + "enumerationChronology": [ + "No. 37 (2001)" + ], + "enumerationChronology_sort": [ + " 37-2001-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-14", + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ], + "volumeRaw": [ + "No. 37" + ] + }, + "sort": [ + " 37-2001-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2000-01-01", + "lte": "2000-01-01" + } + ], + "enumerationChronology": [ + "No. 36 (2000)" + ], + "enumerationChronology_sort": [ + " 36-2000-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-13", + "volumeRange": [ + { + "gte": 36, + "lte": 36 + } + ], + "volumeRaw": [ + "No. 36" + ] + }, + "sort": [ + " 36-2000-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2000-01-01", + "lte": "2009-01-01" + } + ], + "enumerationChronology": [ + "No. 36-45 (2000 - 2009)" + ], + "enumerationChronology_sort": [ + " 36-2000-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-26", + "volumeRange": [ + { + "gte": 36, + "lte": 45 + } + ], + "volumeRaw": [ + "No. 36-45" + ] + }, + "sort": [ + " 36-2000-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 36-45 (2000-2009) + index" + ], + "enumerationChronology_sort": [ + " 36-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433101083917" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 36-45 (2000-2009) + index", + "urn:barcode:33433101083917" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 36-45 (2000-2009) + index", + "type": "bf:ShelfMark" + }, + { + "value": "33433101083917", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 36-45 (2000-2009) + index" + ], + "shelfMark_sort": "aJQL 08-18 v. 000036-45 (2000-2009) + index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 36, + "lte": 45 + } + ], + "uri": "i30011859" + }, + "sort": [ + " 36-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1999-01-01", + "lte": "1999-01-01" + } + ], + "enumerationChronology": [ + "No. 35 (1999)" + ], + "enumerationChronology_sort": [ + " 35-1999-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-11", + "volumeRange": [ + { + "gte": 35, + "lte": 35 + } + ], + "volumeRaw": [ + "No. 35" + ] + }, + "sort": [ + " 35-1999-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1999", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 35-37 (1999-2001)" + ], + "enumerationChronology_sort": [ + " 35-1999" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272311" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 35-37 (1999-2001)", + "urn:barcode:33433078272311" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 35-37 (1999-2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272311", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 35-37 (1999-2001)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000035-37 (1999-2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 35, + "lte": 37 + } + ], + "uri": "i16753904" + }, + "sort": [ + " 35-1999" + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1998-01-01", + "lte": "1998-01-01" + } + ], + "enumerationChronology": [ + "No. 34 (1998)" + ], + "enumerationChronology_sort": [ + " 34-1998-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-10", + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ], + "volumeRaw": [ + "No. 34" + ] + }, + "sort": [ + " 34-1998-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1997-01-01", + "lte": "1997-01-01" + } + ], + "enumerationChronology": [ + "No. 33 (1997)" + ], + "enumerationChronology_sort": [ + " 33-1997-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-9", + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ], + "volumeRaw": [ + "No. 33" + ] + }, + "sort": [ + " 33-1997-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1996-01-01", + "lte": "1996-01-01" + } + ], + "enumerationChronology": [ + "No. 32 (1996)" + ], + "enumerationChronology_sort": [ + " 32-1996-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-8", + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ], + "volumeRaw": [ + "No. 32" + ] + }, + "sort": [ + " 32-1996-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 32-34 (1996-1998)" + ], + "enumerationChronology_sort": [ + " 32-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272303" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 32-34 (1996-1998)", + "urn:barcode:33433078272303" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 32-34 (1996-1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272303", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 32-34 (1996-1998)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000032-34 (1996-1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 32, + "lte": 34 + } + ], + "uri": "i16753903" + }, + "sort": [ + " 32-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1995-01-01", + "lte": "1995-01-01" + } + ], + "enumerationChronology": [ + "No. 31 (1995)" + ], + "enumerationChronology_sort": [ + " 31-1995-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-7", + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ], + "volumeRaw": [ + "No. 31" + ] + }, + "sort": [ + " 31-1995-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1995" + } + ], + "enumerationChronology": [ + "v. 31 (1995)" + ], + "enumerationChronology_sort": [ + " 31-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272295" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 31 (1995)", + "urn:barcode:33433078272295" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 31 (1995)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272295", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 31 (1995)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000031 (1995)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ], + "uri": "i16753902" + }, + "sort": [ + " 31-1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1994-01-01", + "lte": "1994-01-01" + } + ], + "enumerationChronology": [ + "No. 30 (1994)" + ], + "enumerationChronology_sort": [ + " 30-1994-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-6", + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "volumeRaw": [ + "No. 30" + ] + }, + "sort": [ + " 30-1994-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "enumerationChronology": [ + "v. 30 (1994)" + ], + "enumerationChronology_sort": [ + " 30-1994" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272287" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 30 (1994)", + "urn:barcode:33433078272287" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 30 (1994)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272287", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 30 (1994)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000030 (1994)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "uri": "i16753901" + }, + "sort": [ + " 30-1994" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "enumerationChronology": [ + "v. 29 (1993)" + ], + "enumerationChronology_sort": [ + " 29-1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272279" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 29 (1993)", + "urn:barcode:33433078272279" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 29 (1993)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272279", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 29 (1993)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000029 (1993)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "uri": "i16753900" + }, + "sort": [ + " 29-1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "enumerationChronology": [ + "v. 28 (1992)" + ], + "enumerationChronology_sort": [ + " 28-1992" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272261" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 28 (1992)", + "urn:barcode:33433078272261" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 28 (1992)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272261", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 28 (1992)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000028 (1992)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "uri": "i16753899" + }, + "sort": [ + " 28-1992" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "enumerationChronology": [ + "v. 27 (1991)" + ], + "enumerationChronology_sort": [ + " 27-1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272253" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 27 (1991)", + "urn:barcode:33433078272253" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 27 (1991)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272253", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 27 (1991)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000027 (1991)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "uri": "i16753898" + }, + "sort": [ + " 27-1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1990-01-01", + "lte": "1999-01-01" + } + ], + "enumerationChronology": [ + "No. 26-35 (1990 - 1999)" + ], + "enumerationChronology_sort": [ + " 26-1990-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-18", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-18" + ], + "shelfMark_sort": "aJQL 08-000018", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1066822-12", + "volumeRange": [ + { + "gte": 26, + "lte": 35 + } + ], + "volumeRaw": [ + "No. 26-35" + ] + }, + "sort": [ + " 26-1990-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "enumerationChronology": [ + "v. 23-24 (1987-1988)" + ], + "enumerationChronology_sort": [ + " 23-1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272238" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 23-24 (1987-1988)", + "urn:barcode:33433078272238" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 23-24 (1987-1988)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272238", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 23-24 (1987-1988)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000023-24 (1987-1988)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 23, + "lte": 24 + } + ], + "uri": "i16753896" + }, + "sort": [ + " 23-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1986" + } + ], + "enumerationChronology": [ + "v. 21-22 (1985-1986)" + ], + "enumerationChronology_sort": [ + " 21-1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272220" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 21-22 (1985-1986)", + "urn:barcode:33433078272220" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 21-22 (1985-1986)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272220", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 21-22 (1985-1986)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000021-22 (1985-1986)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 21, + "lte": 22 + } + ], + "uri": "i16753895" + }, + "sort": [ + " 21-1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1983", + "lte": "1984" + } + ], + "enumerationChronology": [ + "v. 19-20 (1983-1984)" + ], + "enumerationChronology_sort": [ + " 19-1983" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272212" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 19-20 (1983-1984)", + "urn:barcode:33433078272212" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 19-20 (1983-1984)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272212", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 19-20 (1983-1984)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000019-20 (1983-1984)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 19, + "lte": 20 + } + ], + "uri": "i16753894" + }, + "sort": [ + " 19-1983" + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "enumerationChronology": [ + "v. 18 (1982)" + ], + "enumerationChronology_sort": [ + " 18-1982" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272204" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 18 (1982)", + "urn:barcode:33433078272204" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 18 (1982)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272204", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 18 (1982)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000018 (1982)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ], + "uri": "i16753893" + }, + "sort": [ + " 18-1982" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1990" + } + ], + "enumerationChronology": [ + "v. 25-26 (1989-90) + Index v. 16-25 (1980-90)" + ], + "enumerationChronology_sort": [ + " 16-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272246" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 25-26 (1989-90) + Index v. 16-25 (1980-90)", + "urn:barcode:33433078272246" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 25-26 (1989-90) + Index v. 16-25 (1980-90)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272246", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 25-26 (1989-90) + Index v. 16-25 (1980-90)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000025-26 (1989-90) + Index v. 16-25 (1980-90)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 26 + }, + { + "gte": 16, + "lte": 25 + } + ], + "uri": "i16753897" + }, + "sort": [ + " 16-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1980", + "lte": "1981" + } + ], + "enumerationChronology": [ + "v. 16-17 (1980-1981)" + ], + "enumerationChronology_sort": [ + " 16-1980" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272196" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 16-17 (1980-1981)", + "urn:barcode:33433078272196" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 16-17 (1980-1981)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272196", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 16-17 (1980-1981)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000016-17 (1980-1981)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 16, + "lte": 17 + } + ], + "uri": "i16753892" + }, + "sort": [ + " 16-1980" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1978", + "lte": "1979" + } + ], + "enumerationChronology": [ + "v. 14-15 (1978-1979)" + ], + "enumerationChronology_sort": [ + " 14-1978" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272188" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 14-15 (1978-1979)", + "urn:barcode:33433078272188" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 14-15 (1978-1979)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272188", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 14-15 (1978-1979)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000014-15 (1978-1979)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 14, + "lte": 15 + } + ], + "uri": "i16753891" + }, + "sort": [ + " 14-1978" + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1977", + "lte": "1977" + } + ], + "enumerationChronology": [ + "v. 13 (1977)" + ], + "enumerationChronology_sort": [ + " 13-1977" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272170" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 13 (1977)", + "urn:barcode:33433078272170" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 13 (1977)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272170", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 13 (1977)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000013 (1977)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "uri": "i16753890" + }, + "sort": [ + " 13-1977" + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1975", + "lte": "1976" + } + ], + "enumerationChronology": [ + "v. 11-12 (1975-1976)" + ], + "enumerationChronology_sort": [ + " 11-1975" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272162" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 11-12 (1975-1976)", + "urn:barcode:33433078272162" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 11-12 (1975-1976)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272162", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 11-12 (1975-1976)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000011-12 (1975-1976)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "uri": "i16753889" + }, + "sort": [ + " 11-1975" + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1972", + "lte": "1973" + } + ], + "enumerationChronology": [ + "v. 8-9 (1972-1973)" + ], + "enumerationChronology_sort": [ + " 8-1972" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272147" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 8-9 (1972-1973)", + "urn:barcode:33433078272147" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 8-9 (1972-1973)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272147", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 8-9 (1972-1973)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000008-9 (1972-1973)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 9 + } + ], + "uri": "i16753887" + }, + "sort": [ + " 8-1972" + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1971", + "lte": "1971" + } + ], + "enumerationChronology": [ + "v. 7 (1971)" + ], + "enumerationChronology_sort": [ + " 7-1971" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272139" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 7 (1971)", + "urn:barcode:33433078272139" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 7 (1971)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272139", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 7 (1971)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000007 (1971)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "uri": "i16753886" + }, + "sort": [ + " 7-1971" + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1969", + "lte": "1970" + } + ], + "enumerationChronology": [ + "v. 5-6 (1969-1970)" + ], + "enumerationChronology_sort": [ + " 5-1969" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272121" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 5-6 (1969-1970)", + "urn:barcode:33433078272121" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 5-6 (1969-1970)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272121", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 5-6 (1969-1970)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000005-6 (1969-1970)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "uri": "i16753885" + }, + "sort": [ + " 5-1969" + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1974", + "lte": "1974" + } + ], + "enumerationChronology": [ + "v. 10 (1974) + Index v. 1-10" + ], + "enumerationChronology_sort": [ + " 1-1974" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272154" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 10 (1974) + Index v. 1-10", + "urn:barcode:33433078272154" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 10 (1974) + Index v. 1-10", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272154", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 10 (1974) + Index v. 1-10" + ], + "shelfMark_sort": "aJQL 08-18 v. 000010 (1974) + Index v. 1-10", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + }, + { + "gte": 1, + "lte": 10 + } + ], + "uri": "i16753888" + }, + "sort": [ + " 1-1974" + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1965", + "lte": "1968" + } + ], + "enumerationChronology": [ + "v. 1-4 (1965-1968)" + ], + "enumerationChronology_sort": [ + " 1-1965" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433078272113" + ], + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 1-4 (1965-1968)", + "urn:barcode:33433078272113" + ], + "identifierV2": [ + { + "value": "JQL 08-18 v. 1-4 (1965-1968)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078272113", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-18" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-18 v. 1-4 (1965-1968)" + ], + "shelfMark_sort": "aJQL 08-18 v. 000001-4 (1965-1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ], + "uri": "i16753884" + }, + "sort": [ + " 1-1965" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b16775643", + "_score": 15.845539, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title from cover.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "No. 16 (fall 1982)-" + ], + "subjectLiteral_exploded": [ + "Art", + "Art -- Research", + "Art -- Research -- Periodicals" + ], + "numItemDatesParsed": [ + 10 + ], + "publisherLiteral": [ + "University of Illinois Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 10 + ], + "createdYear": [ + 1982 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Visual arts research." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JQL 08-3" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83644328" + ], + "idIssn": [ + "0736-0770" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "idOclc": [ + "9069635" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-3" + }, + { + "type": "nypl:Bnumber", + "value": "16775643" + }, + { + "type": "nypl:Oclc", + "value": "9069635" + }, + { + "type": "bf:Lccn", + "value": "83644328" + }, + { + "type": "bf:Issn", + "value": "0736-0770" + }, + { + "type": "bf:Issn", + "identifierStatus": "incorrect", + "value": "0160-3221" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)9069635" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)S240000007" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "holdingStatement": [ + "9(1983)-27(2001)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JQL 08-3" + } + ], + "physicalLocation": [ + "JQL 08-3" + ], + "location": [ + { + "code": "loc:mab82", + "label": "Schwarzman Building M1 - Art & Architecture Room 300" + } + ], + "shelfMark": [ + "JQL 08-3" + ], + "uri": "h1090282" + } + ], + "updatedAt": 1699484187620, + "publicationStatement": [ + "[Champaign, Ill.] : University of Illinois Press, c1982-" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3", + "urn:bnum:16775643", + "urn:oclc:9069635", + "urn:lccn:83644328", + "urn:issn:0736-0770", + "urn:issn:0160-3221", + "urn:identifier:(OCoLC)9069635", + "urn:identifier:(WaOLN)S240000007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Art -- Research -- Periodicals." + ], + "titleDisplay": [ + "Visual arts research." + ], + "uri": "b16775643", + "lccClassification": [ + "N81 .R49" + ], + "placeOfPublication": [ + "[Champaign, Ill.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Vis. arts res.", + "Visual arts research" + ], + "dimensions": [ + "23 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 10, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 38, no. 1, Issue 74 (Sum. 2012)" + ], + "enumerationChronology_sort": [ + " 38-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433115147914" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)", + "urn:barcode:33433115147914" + ], + "identifierV2": [ + { + "value": "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433115147914", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 v. 38, no. 1, Issue 74 (Sum. 2012)" + ], + "shelfMark_sort": "aJQL 08-3 v. 000038, no. 1, Issue 74 (Sum. 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ], + "uri": "i29405160" + }, + "sort": [ + " 38-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1990" + } + ], + "enumerationChronology": [ + "v. 15-16 (1989-90)" + ], + "enumerationChronology_sort": [ + " 15-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433105255586" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 v. 15-16 (1989-90)", + "urn:barcode:33433105255586" + ], + "identifierV2": [ + { + "value": "JQL 08-3 v. 15-16 (1989-90)", + "type": "bf:ShelfMark" + }, + { + "value": "33433105255586", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 v. 15-16 (1989-90)" + ], + "shelfMark_sort": "aJQL 08-3 v. 000015-16 (1989-90)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 15, + "lte": 16 + } + ], + "uri": "i29627807" + }, + "sort": [ + " 15-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2001" + } + ], + "enumerationChronology": [ + "26-27 (2000-2001)" + ], + "enumerationChronology_sort": [ + " -2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083142" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 26-27 (2000-2001)", + "urn:barcode:33433074083142" + ], + "identifierV2": [ + { + "value": "JQL 08-3 26-27 (2000-2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083142", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 26-27 (2000-2001)" + ], + "shelfMark_sort": "aJQL 08-3 26-27 (2000-2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662016" + }, + "sort": [ + " -2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "enumerationChronology": [ + "24-25 (1998-1999)" + ], + "enumerationChronology_sort": [ + " -1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083191" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 24-25 (1998-1999)", + "urn:barcode:33433074083191" + ], + "identifierV2": [ + { + "value": "JQL 08-3 24-25 (1998-1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083191", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 24-25 (1998-1999)" + ], + "shelfMark_sort": "aJQL 08-3 24-25 (1998-1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662015" + }, + "sort": [ + " -1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1997" + } + ], + "enumerationChronology": [ + "21-23 (1995-1997)" + ], + "enumerationChronology_sort": [ + " -1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083217" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 21-23 (1995-1997)", + "urn:barcode:33433074083217" + ], + "identifierV2": [ + { + "value": "JQL 08-3 21-23 (1995-1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083217", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 21-23 (1995-1997)" + ], + "shelfMark_sort": "aJQL 08-3 21-23 (1995-1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662014" + }, + "sort": [ + " -1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1994" + } + ], + "enumerationChronology": [ + "19-20 (1993-1994)" + ], + "enumerationChronology_sort": [ + " -1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083209" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 19-20 (1993-1994)", + "urn:barcode:33433074083209" + ], + "identifierV2": [ + { + "value": "JQL 08-3 19-20 (1993-1994)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083209", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 19-20 (1993-1994)" + ], + "shelfMark_sort": "aJQL 08-3 19-20 (1993-1994)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662013" + }, + "sort": [ + " -1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1992" + } + ], + "enumerationChronology": [ + "17-18 (1991-1992)" + ], + "enumerationChronology_sort": [ + " -1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083225" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 17-18 (1991-1992)", + "urn:barcode:33433074083225" + ], + "identifierV2": [ + { + "value": "JQL 08-3 17-18 (1991-1992)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083225", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 17-18 (1991-1992)" + ], + "shelfMark_sort": "aJQL 08-3 17-18 (1991-1992)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662012" + }, + "sort": [ + " -1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "enumerationChronology": [ + "13-14 (1987-1988)" + ], + "enumerationChronology_sort": [ + " -1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083175" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 13-14 (1987-1988)", + "urn:barcode:33433074083175" + ], + "identifierV2": [ + { + "value": "JQL 08-3 13-14 (1987-1988)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083175", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 13-14 (1987-1988)" + ], + "shelfMark_sort": "aJQL 08-3 13-14 (1987-1988)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662011" + }, + "sort": [ + " -1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1986" + } + ], + "enumerationChronology": [ + "11-12 (1985-1986)" + ], + "enumerationChronology_sort": [ + " -1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083159" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 11-12 (1985-1986)", + "urn:barcode:33433074083159" + ], + "identifierV2": [ + { + "value": "JQL 08-3 11-12 (1985-1986)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083159", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 11-12 (1985-1986)" + ], + "shelfMark_sort": "aJQL 08-3 11-12 (1985-1986)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662010" + }, + "sort": [ + " -1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1983", + "lte": "1984" + } + ], + "enumerationChronology": [ + "9-10 (1983-1984)" + ], + "enumerationChronology_sort": [ + " -1983" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433074083183" + ], + "identifier": [ + "urn:shelfmark:JQL 08-3 9-10 (1983-1984)", + "urn:barcode:33433074083183" + ], + "identifierV2": [ + { + "value": "JQL 08-3 9-10 (1983-1984)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074083183", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-3" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-3 9-10 (1983-1984)" + ], + "shelfMark_sort": "aJQL 08-3 9-10 (1983-1984)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i17662009" + }, + "sort": [ + " -1983" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b21506221", + "_score": 15.659852, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"A magazine of art, design and architecture.\"", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Description based on: Issue 01 (2007/08); title from cover.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: Issue 01 (2007/08)", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Issue 01 (2007-08)-" + ], + "subjectLiteral_exploded": [ + "Art", + "Art -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Faculty of Art, Design and Architecture, Kingston University" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 2007 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kiosk." + ], + "shelfMark": [ + "JQL 18-4" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2007" + ], + "idIssn": [ + "1755-9626" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Kingston University (London, England). Faculty of Art, Design and Architecture." + ], + "dateStartYear": [ + 2007 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 18-4" + }, + { + "type": "nypl:Bnumber", + "value": "21506221" + }, + { + "type": "bf:Issn", + "value": "1755-9626" + }, + { + "type": "nypl:Oclc", + "value": "190792176" + }, + { + "type": "nypl:Oclc", + "value": "190792176" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)190792176" + } + ], + "idOclc": [ + "190792176" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1671766334241, + "publicationStatement": [ + "London : Faculty of Art, Design and Architecture, Kingston University, 2007-" + ], + "identifier": [ + "urn:bnum:21506221", + "urn:issn:1755-9626", + "urn:oclc:190792176", + "urn:undefined:(OCoLC)190792176" + ], + "genreForm": [ + "Periodicals." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2007" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Art -- Periodicals.", + "Art." + ], + "titleDisplay": [ + "Kiosk." + ], + "uri": "b21506221", + "lccClassification": [ + "N1 .K56" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "23 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433116522354" + ], + "physicalLocation": [ + "JQL 18-4" + ], + "shelfMark_sort": "aJQL 18-4 issue 1 (2007/08)", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i35913145", + "shelfMark": [ + "JQL 18-4 issue 1 (2007/08)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 18-4 issue 1 (2007/08)" + }, + { + "type": "bf:Barcode", + "value": "33433116522354" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "issue 1 (2007/08)" + ], + "idBarcode": [ + "33433116522354" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b12525718", + "_score": 13.062321, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Published: Fratelli Palombi Editori, 1954-1984; L'Erma di Bretschneider, 1985- .", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "RILA. Répertoire international de la littérature de l'art", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Anno 25 (1978)-27 (1980) combined.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Anno 1, n. 1-2 (1954)-anno 32 (1985) ; nuova serie, 1 (1987)-" + ], + "subjectLiteral_exploded": [ + "Rome (Italy)", + "Rome (Italy) -- Galleries and museums" + ], + "numItemDatesParsed": [ + 45 + ], + "publisherLiteral": [ + "Gli Amici" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "numItemsTotal": [ + 45 + ], + "createdYear": [ + 1954 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bollettino dei Musei comunali di Roma" + ], + "shelfMark": [ + "JQL 08-17" + ], + "numItemVolumesParsed": [ + 45 + ], + "createdString": [ + "1954" + ], + "idLccn": [ + "64036787 //r882" + ], + "idIssn": [ + "0523-9346" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Amici dei musei di Roma (Italy)" + ], + "dateStartYear": [ + 1954 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-17" + }, + { + "type": "nypl:Bnumber", + "value": "12525718" + }, + { + "type": "nypl:Oclc", + "value": "2785323" + }, + { + "type": "bf:Lccn", + "value": "64036787 //r882" + }, + { + "type": "bf:Issn", + "value": "0523-9346" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)S010000043" + } + ], + "idOclc": [ + "2785323" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 7 (1993)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 8 (1994)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 9 (1995)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 10 (1996)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 11 (1997)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 12 (1998)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 13 (1999)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 14 (2000)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 15 (2001)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 16 (2002)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 17 (2003)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 18 (2004)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 19 (2005)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 20 (2006)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 21 (2007)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 22 (2008)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 23 (2009)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 24 (2010)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 25 (2011)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 26 (2012)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 27 (2013)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 28 (2014)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 29 (2015)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 30 (2018)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 31 (2019)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 32 (2018)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Arrived" + }, + { + "coverage": "No. 33 (2021)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + }, + { + "coverage": "No. 34 (2022)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JQL 08-17" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "1(1954)-6(1959),8(1961)-32(1985) [N.S] 1(1987)-18(2004),25(2011)28(2014),32(2018)-", + "v. 25 (2011) - v. 28 (2014); v. 32 (2020)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JQL 08-17" + } + ], + "notes": [ + "Order transferred from GRD to ART per CCK/ART 7/29/04 ?EP" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "location": [ + { + "code": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "uri": "h1069076" + } + ], + "updatedAt": 1699485082718, + "publicationStatement": [ + "[Roma] : Gli Amici, [1954]-" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17", + "urn:bnum:12525718", + "urn:oclc:2785323", + "urn:lccn:64036787 //r882", + "urn:issn:0523-9346", + "urn:identifier:(WaOLN)S010000043" + ], + "numCheckinCardItems": [ + 28 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1954" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rome (Italy) -- Galleries and museums." + ], + "titleDisplay": [ + "Bollettino dei Musei comunali di Roma / a cura degli Amici dei musei di Roma." + ], + "uri": "b12525718", + "lccClassification": [ + "AM55.R6 B6" + ], + "placeOfPublication": [ + "[Roma]" + ], + "titleAlt": [ + "Boll. Mus. comunali Roma", + "Bollettino dei Musei comunali di Roma" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 45, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-01", + "lte": "2022-01-01" + } + ], + "enumerationChronology": [ + "No. 34 (2022)" + ], + "enumerationChronology_sort": [ + " 34-2022-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-0", + "volumeRange": [ + { + "gte": 34, + "lte": 34 + } + ], + "volumeRaw": [ + "No. 34" + ] + }, + "sort": [ + " 34-2022-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-01-01", + "lte": "2021-01-01" + } + ], + "enumerationChronology": [ + "No. 33 (2021)" + ], + "enumerationChronology_sort": [ + " 33-2021-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-1", + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ], + "volumeRaw": [ + "No. 33" + ] + }, + "sort": [ + " 33-2021-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2018-01-01", + "lte": "2018-01-01" + } + ], + "enumerationChronology": [ + "No. 32 (2018)" + ], + "enumerationChronology_sort": [ + " 32-2018-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-2", + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ], + "volumeRaw": [ + "No. 32" + ] + }, + "sort": [ + " 32-2018-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "N.S. v. 32 (2018)" + ], + "enumerationChronology_sort": [ + " 32-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433121729853" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 32 (2018)", + "urn:barcode:33433121729853" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 32 (2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121729853", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 32 (2018)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000032 (2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ], + "uri": "i37359040" + }, + "sort": [ + " 32-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2019-01-01", + "lte": "2019-01-01" + } + ], + "enumerationChronology": [ + "No. 31 (2019)" + ], + "enumerationChronology_sort": [ + " 31-2019-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-3", + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ], + "volumeRaw": [ + "No. 31" + ] + }, + "sort": [ + " 31-2019-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2018-01-01", + "lte": "2018-01-01" + } + ], + "enumerationChronology": [ + "No. 30 (2018)" + ], + "enumerationChronology_sort": [ + " 30-2018-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-4", + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "volumeRaw": [ + "No. 30" + ] + }, + "sort": [ + " 30-2018-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2015-01-01", + "lte": "2015-01-01" + } + ], + "enumerationChronology": [ + "No. 29 (2015)" + ], + "enumerationChronology_sort": [ + " 29-2015-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-5", + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "volumeRaw": [ + "No. 29" + ] + }, + "sort": [ + " 29-2015-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2014-01-01", + "lte": "2014-01-01" + } + ], + "enumerationChronology": [ + "No. 28 (2014)" + ], + "enumerationChronology_sort": [ + " 28-2014-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-6", + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "volumeRaw": [ + "No. 28" + ] + }, + "sort": [ + " 28-2014-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "N.S. v. 28 (2014)" + ], + "enumerationChronology_sort": [ + " 28-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433117119341" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 28 (2014)", + "urn:barcode:33433117119341" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 28 (2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433117119341", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 28 (2014)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000028 (2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "uri": "i33860628" + }, + "sort": [ + " 28-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2013-01-01", + "lte": "2013-01-01" + } + ], + "enumerationChronology": [ + "No. 27 (2013)" + ], + "enumerationChronology_sort": [ + " 27-2013-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-26", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "No. 27" + ] + }, + "sort": [ + " 27-2013-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "N.S. v. 27 (2013)" + ], + "enumerationChronology_sort": [ + " 27-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433117979173" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 27 (2013)", + "urn:barcode:33433117979173" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 27 (2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433117979173", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 27 (2013)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000027 (2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "uri": "i33682199" + }, + "sort": [ + " 27-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2012-01-01", + "lte": "2012-01-01" + } + ], + "enumerationChronology": [ + "No. 26 (2012)" + ], + "enumerationChronology_sort": [ + " 26-2012-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-27", + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ], + "volumeRaw": [ + "No. 26" + ] + }, + "sort": [ + " 26-2012-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "N.S. v. 26 (2012)" + ], + "enumerationChronology_sort": [ + " 26-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433112611961" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 26 (2012)", + "urn:barcode:33433112611961" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 26 (2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433112611961", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 26 (2012)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000026 (2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ], + "uri": "i32391069" + }, + "sort": [ + " 26-2012" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2011-01-01", + "lte": "2011-01-01" + } + ], + "enumerationChronology": [ + "No. 25 (2011)" + ], + "enumerationChronology_sort": [ + " 25-2011-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-25", + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ], + "volumeRaw": [ + "No. 25" + ] + }, + "sort": [ + " 25-2011-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "N.S. v. 25 (2011)" + ], + "enumerationChronology_sort": [ + " 25-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433101055220" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 25 (2011)", + "urn:barcode:33433101055220" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 25 (2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433101055220", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 25 (2011)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000025 (2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ], + "uri": "i30890910" + }, + "sort": [ + " 25-2011" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1978", + "lte": "1985" + } + ], + "enumerationChronology": [ + "v. 25-32 (1978-1985)" + ], + "enumerationChronology_sort": [ + " 25-1978" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857568" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 v. 25-32 (1978-1985)", + "urn:barcode:33433019857568" + ], + "identifierV2": [ + { + "value": "JQL 08-17 v. 25-32 (1978-1985)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857568", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 v. 25-32 (1978-1985)" + ], + "shelfMark_sort": "aJQL 08-17 v. 000025-32 (1978-1985)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 32 + } + ], + "uri": "i12757465" + }, + "sort": [ + " 25-1978" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2010-01-01", + "lte": "2010-01-01" + } + ], + "enumerationChronology": [ + "No. 24 (2010)" + ], + "enumerationChronology_sort": [ + " 24-2010-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-24", + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ], + "volumeRaw": [ + "No. 24" + ] + }, + "sort": [ + " 24-2010-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2009-01-01", + "lte": "2009-01-01" + } + ], + "enumerationChronology": [ + "No. 23 (2009)" + ], + "enumerationChronology_sort": [ + " 23-2009-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-23", + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ], + "volumeRaw": [ + "No. 23" + ] + }, + "sort": [ + " 23-2009-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2008-01-01", + "lte": "2008-01-01" + } + ], + "enumerationChronology": [ + "No. 22 (2008)" + ], + "enumerationChronology_sort": [ + " 22-2008-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-22", + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ], + "volumeRaw": [ + "No. 22" + ] + }, + "sort": [ + " 22-2008-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2007-01-01", + "lte": "2007-01-01" + } + ], + "enumerationChronology": [ + "No. 21 (2007)" + ], + "enumerationChronology_sort": [ + " 21-2007-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-21", + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ], + "volumeRaw": [ + "No. 21" + ] + }, + "sort": [ + " 21-2007-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2006-01-01", + "lte": "2006-01-01" + } + ], + "enumerationChronology": [ + "No. 20 (2006)" + ], + "enumerationChronology_sort": [ + " 20-2006-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-20", + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ], + "volumeRaw": [ + "No. 20" + ] + }, + "sort": [ + " 20-2006-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2005-01-01", + "lte": "2005-01-01" + } + ], + "enumerationChronology": [ + "No. 19 (2005)" + ], + "enumerationChronology_sort": [ + " 19-2005-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-19", + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ], + "volumeRaw": [ + "No. 19" + ] + }, + "sort": [ + " 19-2005-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2004-01-01", + "lte": "2004-01-01" + } + ], + "enumerationChronology": [ + "No. 18 (2004)" + ], + "enumerationChronology_sort": [ + " 18-2004-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-18", + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ], + "volumeRaw": [ + "No. 18" + ] + }, + "sort": [ + " 18-2004-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2003-01-01", + "lte": "2003-01-01" + } + ], + "enumerationChronology": [ + "No. 17 (2003)" + ], + "enumerationChronology_sort": [ + " 17-2003-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-17", + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ], + "volumeRaw": [ + "No. 17" + ] + }, + "sort": [ + " 17-2003-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "N.S. v. 17-18 (2003-2004)" + ], + "enumerationChronology_sort": [ + " 17-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433060930082" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 17-18 (2003-2004)", + "urn:barcode:33433060930082" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 17-18 (2003-2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433060930082", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 17-18 (2003-2004)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000017-18 (2003-2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 17, + "lte": 18 + } + ], + "uri": "i14288461" + }, + "sort": [ + " 17-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2002-01-01", + "lte": "2002-01-01" + } + ], + "enumerationChronology": [ + "No. 16 (2002)" + ], + "enumerationChronology_sort": [ + " 16-2002-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-16", + "volumeRange": [ + { + "gte": 16, + "lte": 16 + } + ], + "volumeRaw": [ + "No. 16" + ] + }, + "sort": [ + " 16-2002-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1969", + "lte": "1977" + } + ], + "enumerationChronology": [ + "v. 16-24 (1969-1977)" + ], + "enumerationChronology_sort": [ + " 16-1969" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857550" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 v. 16-24 (1969-1977)", + "urn:barcode:33433019857550" + ], + "identifierV2": [ + { + "value": "JQL 08-17 v. 16-24 (1969-1977)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857550", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 v. 16-24 (1969-1977)" + ], + "shelfMark_sort": "aJQL 08-17 v. 000016-24 (1969-1977)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 16, + "lte": 24 + } + ], + "uri": "i12757464" + }, + "sort": [ + " 16-1969" + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-01-01", + "lte": "2001-01-01" + } + ], + "enumerationChronology": [ + "No. 15 (2001)" + ], + "enumerationChronology_sort": [ + " 15-2001-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-15", + "volumeRange": [ + { + "gte": 15, + "lte": 15 + } + ], + "volumeRaw": [ + "No. 15" + ] + }, + "sort": [ + " 15-2001-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2000-01-01", + "lte": "2000-01-01" + } + ], + "enumerationChronology": [ + "No. 14 (2000)" + ], + "enumerationChronology_sort": [ + " 14-2000-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-14", + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ], + "volumeRaw": [ + "No. 14" + ] + }, + "sort": [ + " 14-2000-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2002" + } + ], + "enumerationChronology": [ + "N.S. v. 14-16 (2000-2002)" + ], + "enumerationChronology_sort": [ + " 14-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857634" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 14-16 (2000-2002)", + "urn:barcode:33433019857634" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 14-16 (2000-2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857634", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 14-16 (2000-2002)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000014-16 (2000-2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 14, + "lte": 16 + } + ], + "uri": "i12757472" + }, + "sort": [ + " 14-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1999-01-01", + "lte": "1999-01-01" + } + ], + "enumerationChronology": [ + "No. 13 (1999)" + ], + "enumerationChronology_sort": [ + " 13-1999-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-13", + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "volumeRaw": [ + "No. 13" + ] + }, + "sort": [ + " 13-1999-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1998-01-01", + "lte": "1998-01-01" + } + ], + "enumerationChronology": [ + "No. 12 (1998)" + ], + "enumerationChronology_sort": [ + " 12-1998-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-12", + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "volumeRaw": [ + "No. 12" + ] + }, + "sort": [ + " 12-1998-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "enumerationChronology": [ + "N.S. v. 12-13 (1998-1999)" + ], + "enumerationChronology_sort": [ + " 12-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019857626" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 12-13 (1998-1999)", + "urn:barcode:33433019857626" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 12-13 (1998-1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857626", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-17" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 12-13 (1998-1999)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000012-13 (1998-1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 13 + } + ], + "uri": "i12757471" + }, + "sort": [ + " 12-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1997-01-01", + "lte": "1997-01-01" + } + ], + "enumerationChronology": [ + "No. 11 (1997)" + ], + "enumerationChronology_sort": [ + " 11-1997-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-11", + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "volumeRaw": [ + "No. 11" + ] + }, + "sort": [ + " 11-1997-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1996-01-01", + "lte": "1996-01-01" + } + ], + "enumerationChronology": [ + "No. 10 (1996)" + ], + "enumerationChronology_sort": [ + " 10-1996-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-10", + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "volumeRaw": [ + "No. 10" + ] + }, + "sort": [ + " 10-1996-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1995-01-01", + "lte": "1995-01-01" + } + ], + "enumerationChronology": [ + "No. 9 (1995)" + ], + "enumerationChronology_sort": [ + " 9-1995-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-9", + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "volumeRaw": [ + "No. 9" + ] + }, + "sort": [ + " 9-1995-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1997" + } + ], + "enumerationChronology": [ + "N.S. v. 9-11 (1995-1997)" + ], + "enumerationChronology_sort": [ + " 9-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857618" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 9-11 (1995-1997)", + "urn:barcode:33433019857618" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 9-11 (1995-1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857618", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 9-11 (1995-1997)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000009-11 (1995-1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 11 + } + ], + "uri": "i12757470" + }, + "sort": [ + " 9-1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1994-01-01", + "lte": "1994-01-01" + } + ], + "enumerationChronology": [ + "No. 8 (1994)" + ], + "enumerationChronology_sort": [ + " 8-1994-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-8", + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "volumeRaw": [ + "No. 8" + ] + }, + "sort": [ + " 8-1994-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1961", + "lte": "1968" + } + ], + "enumerationChronology": [ + "v. 8-15 (1961-1968)" + ], + "enumerationChronology_sort": [ + " 8-1961" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857543" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 v. 8-15 (1961-1968)", + "urn:barcode:33433019857543" + ], + "identifierV2": [ + { + "value": "JQL 08-17 v. 8-15 (1961-1968)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857543", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 v. 8-15 (1961-1968)" + ], + "shelfMark_sort": "aJQL 08-17 v. 000008-15 (1961-1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 15 + } + ], + "uri": "i12757463" + }, + "sort": [ + " 8-1961" + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "1993-01-01", + "lte": "1993-01-01" + } + ], + "enumerationChronology": [ + "No. 7 (1993)" + ], + "enumerationChronology_sort": [ + " 7-1993-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab||Schwarzman Building - Art & Architecture Room 300" + ], + "identifierV2": [ + { + "value": "JQL 08-17", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JQL 08-17" + ], + "shelfMark_sort": "aJQL 08-000017", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1069076-7", + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "volumeRaw": [ + "No. 7" + ] + }, + "sort": [ + " 7-1993-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1994" + } + ], + "enumerationChronology": [ + "N.S. v. 7-8 (1993-1994)" + ], + "enumerationChronology_sort": [ + " 7-1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857600" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 7-8 (1993-1994)", + "urn:barcode:33433019857600" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 7-8 (1993-1994)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857600", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 7-8 (1993-1994)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000007-8 (1993-1994)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 8 + } + ], + "uri": "i12757469" + }, + "sort": [ + " 7-1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1992" + } + ], + "enumerationChronology": [ + "N.S. v. 5-6 (1991-1992)" + ], + "enumerationChronology_sort": [ + " 5-1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019857592" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 5-6 (1991-1992)", + "urn:barcode:33433019857592" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 5-6 (1991-1992)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857592", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-17" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 5-6 (1991-1992)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000005-6 (1991-1992)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "uri": "i12757468" + }, + "sort": [ + " 5-1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1990" + } + ], + "enumerationChronology": [ + "N.S. v. 3-4 (1989-1990)" + ], + "enumerationChronology_sort": [ + " 3-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019857584" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 3-4 (1989-1990)", + "urn:barcode:33433019857584" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 3-4 (1989-1990)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857584", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-17" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 3-4 (1989-1990)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000003-4 (1989-1990)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "uri": "i12757467" + }, + "sort": [ + " 3-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "enumerationChronology": [ + "N.S. v. 1-2 (1987-1988)" + ], + "enumerationChronology_sort": [ + " 1-1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857576" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 N.S. v. 1-2 (1987-1988)", + "urn:barcode:33433019857576" + ], + "identifierV2": [ + { + "value": "JQL 08-17 N.S. v. 1-2 (1987-1988)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857576", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 N.S. v. 1-2 (1987-1988)" + ], + "shelfMark_sort": "aJQL 08-17 N.S. v. 000001-2 (1987-1988)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 2 + } + ], + "uri": "i12757466" + }, + "sort": [ + " 1-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1954", + "lte": "1959" + } + ], + "enumerationChronology": [ + "v. 1-6 (1954-1959)" + ], + "enumerationChronology_sort": [ + " 1-1954" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019857535" + ], + "identifier": [ + "urn:shelfmark:JQL 08-17 v. 1-6 (1954-1959)", + "urn:barcode:33433019857535" + ], + "identifierV2": [ + { + "value": "JQL 08-17 v. 1-6 (1954-1959)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019857535", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-17" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-17 v. 1-6 (1954-1959)" + ], + "shelfMark_sort": "aJQL 08-17 v. 000001-6 (1954-1959)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 6 + } + ], + "uri": "i12757462" + }, + "sort": [ + " 1-1954" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b11560439", + "_score": 12.890203, + "_source": { + "extent": [ + "56 volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Source of Description", + "label": "Description based on: Jaarg. 16, nr. 1, published in 1968.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: Jaarg. 56, nr. 4 (2008).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began 1953; ceased in 2008." + ], + "subjectLiteral_exploded": [ + "Rijksmuseum (Netherlands)", + "Rijksmuseum (Netherlands) -- Periodicals", + "Art", + "Art -- Periodicals", + "Art -- Netherlands", + "Art -- Netherlands -- Amsterdam", + "Art -- Netherlands -- Amsterdam -- Periodicals", + "Art -- Netherlands -- Amsterdam -- Periodicals -- Art", + "Netherlands", + "Netherlands -- Amsterdam" + ], + "numItemDatesParsed": [ + 28 + ], + "publisherLiteral": [ + "Rijks-Museum" + ], + "language": [ + { + "id": "lang:dut", + "label": "Dutch" + } + ], + "numItemsTotal": [ + 28 + ], + "createdYear": [ + 1953 + ], + "dateEndString": [ + "2008" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bulletin van het Rijksmuseum." + ], + "shelfMark": [ + "JQL 08-19" + ], + "numItemVolumesParsed": [ + 28 + ], + "createdString": [ + "1953" + ], + "creatorLiteral": [ + "Rijksmuseum (Netherlands)" + ], + "idLccn": [ + "2009219042" + ], + "idIssn": [ + "0165-9510" + ], + "numElectronicResources": [ + 2 + ], + "dateStartYear": [ + 1953 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-19" + }, + { + "type": "nypl:Bnumber", + "value": "11560439" + }, + { + "type": "nypl:Oclc", + "value": "4272788" + }, + { + "type": "bf:Lccn", + "value": "2009219042" + }, + { + "type": "bf:Issn", + "value": "0165-9510" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)4272788" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1481032 (OCoLC)646828412 (OCoLC)1001937252 (OCoLC)1036735109 (OCoLC)1052909875 (OCoLC)1064861871" + } + ], + "idOclc": [ + "4272788" + ], + "dateEndYear": [ + 2008 + ], + "updatedAt": 1710165188363, + "publicationStatement": [ + "Amsterdam : Rijks-Museum, -©2008." + ], + "identifier": [ + "urn:shelfmark:JQL 08-19", + "urn:bnum:11560439", + "urn:oclc:4272788", + "urn:lccn:2009219042", + "urn:issn:0165-9510", + "urn:identifier:(OCoLC)4272788", + "urn:identifier:(OCoLC)1481032 (OCoLC)646828412 (OCoLC)1001937252 (OCoLC)1036735109 (OCoLC)1052909875 (OCoLC)1064861871" + ], + "genreForm": [ + "Catalogs.", + "Periodicals.", + "Art." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1953" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rijksmuseum (Netherlands) -- Periodicals.", + "Rijksmuseum (Netherlands)", + "Art -- Periodicals.", + "Art -- Netherlands -- Amsterdam -- Periodicals -- Art.", + "Art.", + "Netherlands -- Amsterdam." + ], + "titleDisplay": [ + "Bulletin van het Rijksmuseum." + ], + "uri": "b11560439", + "lccClassification": [ + "N2460 .A3" + ], + "electronicResources": [ + { + "url": "http://www.rijksmuseum.nl/bulletin?lang=en" + }, + { + "url": "http://www.jstor.org/journals/01659510.html" + } + ], + "placeOfPublication": [ + "Amsterdam" + ], + "titleAlt": [ + "Bull. Rÿksmus.", + "Bulletin van het Rÿksmuseum" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "24 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 28, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 56 (2008) & Index" + ], + "enumerationChronology_sort": [ + " 56-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433099607917" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 56 (2008) & Index", + "urn:barcode:33433099607917" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 56 (2008) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433099607917", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 56 (2008) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000056 (2008) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ], + "uri": "i28757051" + }, + "sort": [ + " 56-2008" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 55 (2007) & Index" + ], + "enumerationChronology_sort": [ + " 55-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433099608063" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 55 (2007) & Index", + "urn:barcode:33433099608063" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 55 (2007) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433099608063", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 55 (2007) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000055 (2007) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "uri": "i28756751" + }, + "sort": [ + " 55-2007" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 54 (2006) & Index" + ], + "enumerationChronology_sort": [ + " 54-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433099608188" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 54 (2006) & Index", + "urn:barcode:33433099608188" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 54 (2006) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433099608188", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 54 (2006) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000054 (2006) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ], + "uri": "i28756731" + }, + "sort": [ + " 54-2006" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 53 (2005)" + ], + "enumerationChronology_sort": [ + " 53-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433071526242" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 53 (2005)", + "urn:barcode:33433071526242" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 53 (2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433071526242", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 53 (2005)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000053 (2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ], + "uri": "i17508061" + }, + "sort": [ + " 53-2005" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 52 (2004)" + ], + "enumerationChronology_sort": [ + " 52-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433071526234" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 52 (2004)", + "urn:barcode:33433071526234" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 52 (2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433071526234", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 52 (2004)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000052 (2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ], + "uri": "i17508060" + }, + "sort": [ + " 52-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 51 (2003) & Index" + ], + "enumerationChronology_sort": [ + " 51-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433071526226" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 51 (2003) & Index", + "urn:barcode:33433071526226" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 51 (2003) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433071526226", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 51 (2003) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000051 (2003) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ], + "uri": "i17508059" + }, + "sort": [ + " 51-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 50 (2002) & Index" + ], + "enumerationChronology_sort": [ + " 50-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433071526218" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 50 (2002) & Index", + "urn:barcode:33433071526218" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 50 (2002) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433071526218", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 50 (2002) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000050 (2002) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ], + "uri": "i17508058" + }, + "sort": [ + " 50-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 49 (2001) & Index" + ], + "enumerationChronology_sort": [ + " 49-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433071526143" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 49 (2001) & Index", + "urn:barcode:33433071526143" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 49 (2001) & Index", + "type": "bf:ShelfMark" + }, + { + "value": "33433071526143", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 49 (2001) & Index" + ], + "shelfMark_sort": "aJQL 08-19 v. 000049 (2001) & Index", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 49, + "lte": 49 + } + ], + "uri": "i17508057" + }, + "sort": [ + " 49-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 48 (2000)" + ], + "enumerationChronology_sort": [ + " 48-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433105255578" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 48 (2000)", + "urn:barcode:33433105255578" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 48 (2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433105255578", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 48 (2000)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000048 (2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ], + "uri": "i17508056" + }, + "sort": [ + " 48-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1999" + } + ], + "enumerationChronology": [ + "v. 46-47 (1998-1999)" + ], + "enumerationChronology_sort": [ + " 46-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846223" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 46-47 (1998-1999)", + "urn:barcode:33433019846223" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 46-47 (1998-1999)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846223", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 46-47 (1998-1999)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000046-47 (1998-1999)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 47 + } + ], + "uri": "i12693382" + }, + "sort": [ + " 46-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1995", + "lte": "1997" + } + ], + "enumerationChronology": [ + "v. 43-45 (1995-1997)" + ], + "enumerationChronology_sort": [ + " 43-1995" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846215" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 43-45 (1995-1997)", + "urn:barcode:33433019846215" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 43-45 (1995-1997)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846215", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 43-45 (1995-1997)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000043-45 (1995-1997)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 43, + "lte": 45 + } + ], + "uri": "i12693381" + }, + "sort": [ + " 43-1995" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1994", + "lte": "1994" + } + ], + "enumerationChronology": [ + "v. 42 (1994)" + ], + "enumerationChronology_sort": [ + " 42-1994" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846207" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 42 (1994)", + "urn:barcode:33433019846207" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 42 (1994)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846207", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 42 (1994)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000042 (1994)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 42, + "lte": 42 + } + ], + "uri": "i12693380" + }, + "sort": [ + " 42-1994" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1993", + "lte": "1993" + } + ], + "enumerationChronology": [ + "v. 41 (1993)" + ], + "enumerationChronology_sort": [ + " 41-1993" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846199" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 41 (1993)", + "urn:barcode:33433019846199" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 41 (1993)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846199", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 41 (1993)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000041 (1993)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 41, + "lte": 41 + } + ], + "uri": "i12693379" + }, + "sort": [ + " 41-1993" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "enumerationChronology": [ + "v. 40 (1992)" + ], + "enumerationChronology_sort": [ + " 40-1992" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846181" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 40 (1992)", + "urn:barcode:33433019846181" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 40 (1992)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846181", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 40 (1992)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000040 (1992)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 40, + "lte": 40 + } + ], + "uri": "i12693378" + }, + "sort": [ + " 40-1992" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1991" + } + ], + "enumerationChronology": [ + "v. 39 (1991)" + ], + "enumerationChronology_sort": [ + " 39-1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846173" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 39 (1991)", + "urn:barcode:33433019846173" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 39 (1991)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846173", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 39 (1991)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000039 (1991)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 39, + "lte": 39 + } + ], + "uri": "i12693377" + }, + "sort": [ + " 39-1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1990", + "lte": "1990" + } + ], + "enumerationChronology": [ + "v. 38 (1990)" + ], + "enumerationChronology_sort": [ + " 38-1990" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846165" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 38 (1990)", + "urn:barcode:33433019846165" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 38 (1990)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846165", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 38 (1990)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000038 (1990)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 38, + "lte": 38 + } + ], + "uri": "i12693376" + }, + "sort": [ + " 38-1990" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1989" + } + ], + "enumerationChronology": [ + "v. 37 (1989)" + ], + "enumerationChronology_sort": [ + " 37-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846157" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 37 (1989)", + "urn:barcode:33433019846157" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 37 (1989)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846157", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 37 (1989)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000037 (1989)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 37, + "lte": 37 + } + ], + "uri": "i12693375" + }, + "sort": [ + " 37-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "dueDate": [ + "2024-06-09" + ], + "enumerationChronology": [ + "v. 35-36 (1987-1988)" + ], + "enumerationChronology_sort": [ + " 35-1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846140" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 35-36 (1987-1988)", + "urn:barcode:33433019846140" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 35-36 (1987-1988)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846140", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-19 v. 35-36 (1987-1988)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000035-36 (1987-1988)", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 35, + "lte": 36 + } + ], + "uri": "i12693374" + }, + "sort": [ + " 35-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1986" + } + ], + "dueDate": [ + "2024-05-12" + ], + "enumerationChronology": [ + "v. 33-34 (1985-1986)" + ], + "enumerationChronology_sort": [ + " 33-1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846132" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 33-34 (1985-1986)", + "urn:barcode:33433019846132" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 33-34 (1985-1986)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846132", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-19 v. 33-34 (1985-1986)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000033-34 (1985-1986)", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 33, + "lte": 34 + } + ], + "uri": "i12693373" + }, + "sort": [ + " 33-1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1982", + "lte": "1984" + } + ], + "enumerationChronology": [ + "v. 30-32 (1982-1984)" + ], + "enumerationChronology_sort": [ + " 30-1982" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846124" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 30-32 (1982-1984)", + "urn:barcode:33433019846124" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 30-32 (1982-1984)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846124", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 30-32 (1982-1984)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000030-32 (1982-1984)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 30, + "lte": 32 + } + ], + "uri": "i12693372" + }, + "sort": [ + " 30-1982" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1979", + "lte": "1981" + } + ], + "enumerationChronology": [ + "v. 27-29 (1979-1981)" + ], + "enumerationChronology_sort": [ + " 27-1979" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846116" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 27-29 (1979-1981)", + "urn:barcode:33433019846116" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 27-29 (1979-1981)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846116", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 27-29 (1979-1981)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000027-29 (1979-1981)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 29 + } + ], + "uri": "i12693371" + }, + "sort": [ + " 27-1979" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1975", + "lte": "1978" + } + ], + "enumerationChronology": [ + "v. 23-26 (1975-1978)" + ], + "enumerationChronology_sort": [ + " 23-1975" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846108" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 23-26 (1975-1978)", + "urn:barcode:33433019846108" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 23-26 (1975-1978)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846108", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 23-26 (1975-1978)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000023-26 (1975-1978)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 23, + "lte": 26 + } + ], + "uri": "i12693370" + }, + "sort": [ + " 23-1975" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1971", + "lte": "1974" + } + ], + "enumerationChronology": [ + "v. 19-22 (1971-1974)" + ], + "enumerationChronology_sort": [ + " 19-1971" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846090" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 19-22 (1971-1974)", + "urn:barcode:33433019846090" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 19-22 (1971-1974)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846090", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 19-22 (1971-1974)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000019-22 (1971-1974)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 19, + "lte": 22 + } + ], + "uri": "i12693369" + }, + "sort": [ + " 19-1971" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1968", + "lte": "1970" + } + ], + "enumerationChronology": [ + "v. 16-18 (1968-1970)" + ], + "enumerationChronology_sort": [ + " 16-1968" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846082" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 16-18 (1968-1970)", + "urn:barcode:33433019846082" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 16-18 (1968-1970)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846082", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 16-18 (1968-1970)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000016-18 (1968-1970)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 16, + "lte": 18 + } + ], + "uri": "i12693368" + }, + "sort": [ + " 16-1968" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1965", + "lte": "1967" + } + ], + "enumerationChronology": [ + "v. 13-15 (1965-1967)" + ], + "enumerationChronology_sort": [ + " 13-1965" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmb2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433019846074" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 13-15 (1965-1967)", + "urn:barcode:33433019846074" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 13-15 (1965-1967)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846074", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1110", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + } + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + ], + "physicalLocation": [ + "JQL 08-19" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JQL 08-19 v. 13-15 (1965-1967)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000013-15 (1965-1967)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 15 + } + ], + "uri": "i12693367" + }, + "sort": [ + " 13-1965" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1961", + "lte": "1964" + } + ], + "enumerationChronology": [ + "v. 9-12 (1961-1964)" + ], + "enumerationChronology_sort": [ + " 9-1961" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019846066" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 9-12 (1961-1964)", + "urn:barcode:33433019846066" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 9-12 (1961-1964)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846066", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-19" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-19 v. 9-12 (1961-1964)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000009-12 (1961-1964)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 12 + } + ], + "uri": "i12693366" + }, + "sort": [ + " 9-1961" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1957", + "lte": "1960" + } + ], + "enumerationChronology": [ + "v. 5-8 (1957-1960)" + ], + "enumerationChronology_sort": [ + " 5-1957" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019846058" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 5-8 (1957-1960)", + "urn:barcode:33433019846058" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 5-8 (1957-1960)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846058", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-19" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-19 v. 5-8 (1957-1960)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000005-8 (1957-1960)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 8 + } + ], + "uri": "i12693365" + }, + "sort": [ + " 5-1957" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1953", + "lte": "1956" + } + ], + "enumerationChronology": [ + "v. 1-4 (1953-1956)" + ], + "enumerationChronology_sort": [ + " 1-1953" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab92", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433019846041" + ], + "identifier": [ + "urn:shelfmark:JQL 08-19 v. 1-4 (1953-1956)", + "urn:barcode:33433019846041" + ], + "identifierV2": [ + { + "value": "JQL 08-19 v. 1-4 (1953-1956)", + "type": "bf:ShelfMark" + }, + { + "value": "33433019846041", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JQL 08-19" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JQL 08-19 v. 1-4 (1953-1956)" + ], + "shelfMark_sort": "aJQL 08-19 v. 000001-4 (1953-1956)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ], + "uri": "i12693364" + }, + "sort": [ + " 1-1953" + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:13 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "212345", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"JQL 08\\\\-18\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"JQL 08\\\\-18\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"JQL 08\\\\-18\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1039" + }, + "timeout": 30000 + }, + "options": {}, + "id": 71 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-602d854de6556f3e37a31574d484bebb.json b/test/fixtures/query-602d854de6556f3e37a31574d484bebb.json deleted file mode 100644 index 409d0570..00000000 --- a/test/fixtures/query-602d854de6556f3e37a31574d484bebb.json +++ /dev/null @@ -1,14078 +0,0 @@ -{ - "took": 1352, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 16371537, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000005", - "_score": null, - "_source": { - "extent": [ - "1 score (43 p.) + 1 part (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Acc. arr. for piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Soch. 22\"--Caption.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: 11049.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Concertos (Violin)", - "Concertos (Violin) -- Solo with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muzyka" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" - ], - "shelfMark": [ - "JMF 83-336" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wieniawski, Henri, 1835-1880." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-336" - }, - { - "type": "nypl:Bnumber", - "value": "10000005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-C" - }, - { - "type": "bf:Identifier", - "value": "11049. Muzyka" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100551" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200004" - } - ], - "idOclc": [ - "NYPG001000001-C" - ], - "uniformTitle": [ - "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Moskva : Muzyka, 1980." - ], - "identifier": [ - "urn:bnum:10000005", - "urn:oclc:NYPG001000001-C", - "urn:undefined:11049. Muzyka", - "urn:undefined:NNSZ00100551", - "urn:undefined:(WaOLN)nyp0200004" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Concertos (Violin) -- Solo with piano." - ], - "titleDisplay": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." - ], - "uri": "b10000005", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Concertos, no. 2, op. 22" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10000005" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-336" - ], - "identifierV2": [ - { - "value": "JMF 83-336", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032711909" - } - ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032711909" - ], - "idBarcode": [ - "33433032711909" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000007", - "_score": null, - "_source": { - "extent": [ - "14 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 7:35.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: Z.8917.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Guitar music", - "Guitar", - "Guitar -- Studies and exercises" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editio Musica" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Due studi per chitarra" - ], - "shelfMark": [ - "JMG 83-276" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Patachich, Iván." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-276" - }, - { - "type": "nypl:Bnumber", - "value": "10000007" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-C" - }, - { - "type": "bf:Identifier", - "value": "Z.8917. Editio Musica" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100552" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200006" - } - ], - "idOclc": [ - "NYPG001000002-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Budapest : Editio Musica, c1981." - ], - "identifier": [ - "urn:bnum:10000007", - "urn:oclc:NYPG001000002-C", - "urn:undefined:Z.8917. Editio Musica", - "urn:undefined:NNSZ00100552", - "urn:undefined:(WaOLN)nyp0200006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Guitar music.", - "Guitar -- Studies and exercises." - ], - "titleDisplay": [ - "Due studi per chitarra / Patachich Iván." - ], - "uri": "b10000007", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-276" - ], - "identifierV2": [ - { - "value": "JMG 83-276", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883591" - } - ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883591" - ], - "idBarcode": [ - "33433032883591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000276" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000009", - "_score": null, - "_source": { - "extent": [ - "30 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Edition Peters Nr. 5489.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: E.P. 13028.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Peters ; C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miniaturen II : 13 kleine Klavierstücke" - ], - "shelfMark": [ - "JMG 83-278" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Golle, Jürgen, 1942-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-278" - }, - { - "type": "nypl:Bnumber", - "value": "10000009" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters Nr. 5489 Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "E.P. 13028. Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100553" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200008" - } - ], - "idOclc": [ - "NYPG001000003-C" - ], - "uniformTitle": [ - "Miniaturen, no. 2" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000009", - "urn:oclc:NYPG001000003-C", - "urn:undefined:Edition Peters Nr. 5489 Edition Peters", - "urn:undefined:E.P. 13028. Edition Peters", - "urn:undefined:NNSZ00100553", - "urn:undefined:(WaOLN)nyp0200008" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." - ], - "uri": "b10000009", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen, no. 2" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000009" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-278" - ], - "identifierV2": [ - { - "value": "JMG 83-278", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883617" - } - ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883617" - ], - "idBarcode": [ - "33433032883617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000278" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000011", - "_score": null, - "_source": { - "extent": [ - "46 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Boeijenga" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1982" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Passie en pasen : suite voor orgel, opus 50" - ], - "shelfMark": [ - "JMG 83-279" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Berg, Jan J. van den." - ], - "createdString": [ - "1976" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-279" - }, - { - "type": "nypl:Bnumber", - "value": "10000011" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-C" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200010" - } - ], - "idOclc": [ - "NYPG001000004-C" - ], - "dateEndYear": [ - 1982 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." - ], - "identifier": [ - "urn:bnum:10000011", - "urn:oclc:NYPG001000004-C", - "urn:undefined:(WaOLN)nyp0200010" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music." - ], - "titleDisplay": [ - "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." - ], - "uri": "b10000011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sneek [Netherlands]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-279" - ], - "identifierV2": [ - { - "value": "JMG 83-279", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883625" - } - ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883625" - ], - "idBarcode": [ - "33433032883625" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000013", - "_score": null, - "_source": { - "extent": [ - "32 p. of music : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Arr. for piano with chord symbols; superlinear German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Germany (East)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harth Musik Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Disko Treff 1 : Klavier." - ], - "shelfMark": [ - "JMF 83-366" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-366" - }, - { - "type": "nypl:Bnumber", - "value": "10000013" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100555" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200012" - } - ], - "idOclc": [ - "NYPG001000005-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Leipzig : Harth Musik Verlag, c1980." - ], - "identifier": [ - "urn:bnum:10000013", - "urn:oclc:NYPG001000005-C", - "urn:undefined:NNSZ00100555", - "urn:undefined:(WaOLN)nyp0200012" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Germany (East)" - ], - "titleDisplay": [ - "Disko Treff 1 : Klavier." - ], - "uri": "b10000013", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Disko Treff eins." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000013" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-366" - ], - "identifierV2": [ - { - "value": "JMF 83-366", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032712204" - } - ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032712204" - ], - "idBarcode": [ - "33433032712204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000366" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000015", - "_score": null, - "_source": { - "extent": [ - "25 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For organ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A McAfee Music Publication.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: DM 220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Belwin-Mills" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suite no. 1 : 1977" - ], - "shelfMark": [ - "JNG 83-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hampton, Calvin." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 83-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000015" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-C" - }, - { - "type": "bf:Identifier", - "value": "DM 220. Belwin-Mills" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100556" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200014" - } - ], - "idOclc": [ - "NYPG001000006-C" - ], - "uniformTitle": [ - "Suite, organ, no. 1" - ], - "updatedAt": 1678726416948, - "publicationStatement": [ - "Melville, NY : Belwin-Mills, [1980?]" - ], - "identifier": [ - "urn:bnum:10000015", - "urn:oclc:NYPG001000006-C", - "urn:undefined:DM 220. Belwin-Mills", - "urn:undefined:NNSZ00100556", - "urn:undefined:(WaOLN)nyp0200014" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)" - ], - "titleDisplay": [ - "Suite no. 1 : 1977 / Calvin Hampton." - ], - "uri": "b10000015", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Melville, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Suite, no. 1" - ], - "tableOfContents": [ - "Fanfares -- Antiphon -- Toccata." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000015" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000017", - "_score": null, - "_source": { - "extent": [ - "1 score (17 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For baritone and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Words printed also as text.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 3:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Corbière, Tristan, 1845-1875", - "Corbière, Tristan, 1845-1875 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lettre du Mexique : pour baryton et piano, 1942" - ], - "shelfMark": [ - "JMG 83-395" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Escher, Rudolf." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Corbière, Tristan, 1845-1875." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-395" - }, - { - "type": "nypl:Bnumber", - "value": "10000017" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100557" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200016" - } - ], - "idOclc": [ - "NYPG001000007-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Amsterdam : Donemus, c1981." - ], - "identifier": [ - "urn:bnum:10000017", - "urn:oclc:NYPG001000007-C", - "urn:undefined:NNSZ00100557", - "urn:undefined:(WaOLN)nyp0200016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Corbière, Tristan, 1845-1875 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." - ], - "uri": "b10000017", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000017" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-395" - ], - "identifierV2": [ - { - "value": "JMG 83-395", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032735007" - } - ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032735007" - ], - "idBarcode": [ - "33433032735007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000395" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000019", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: M 18.487.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Waltzes (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zwölf Walzer und ein Epilog : für Klavier" - ], - "shelfMark": [ - "JMG 83-111" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Benary, Peter." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-111" - }, - { - "type": "nypl:Bnumber", - "value": "10000019" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-C" - }, - { - "type": "bf:Identifier", - "value": "Möseler M 18.487." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200018" - } - ], - "idOclc": [ - "NYPG001000008-C" - ], - "uniformTitle": [ - "Walzer und ein Epilog" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000019", - "urn:oclc:NYPG001000008-C", - "urn:undefined:Möseler M 18.487.", - "urn:undefined:NNSZ00100558", - "urn:undefined:(WaOLN)nyp0200018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Waltzes (Piano)" - ], - "titleDisplay": [ - "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." - ], - "uri": "b10000019", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Walzer und ein Epilog", - "Walzer und ein Epilog." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-111" - ], - "identifierV2": [ - { - "value": "JMG 83-111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845053" - } - ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845053" - ], - "idBarcode": [ - "33433032845053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000111" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000021", - "_score": null, - "_source": { - "extent": [ - "1 score (51 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: NM 384.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Neue Musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aurora : sinfonischer Prolog : Partitur" - ], - "shelfMark": [ - "JMG 83-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Weitzendorf, Heinz." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000021" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-C" - }, - { - "type": "bf:Identifier", - "value": "NM 384. Verlag Neue Musik" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200020" - } - ], - "idOclc": [ - "NYPG001000009-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Berlin : Verlag Neue Musik, c1978." - ], - "identifier": [ - "urn:bnum:10000021", - "urn:oclc:NYPG001000009-C", - "urn:undefined:NM 384. Verlag Neue Musik", - "urn:undefined:NNSZ00100559", - "urn:undefined:(WaOLN)nyp0200020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." - ], - "uri": "b10000021", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Berlin" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000021" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-113" - ], - "identifierV2": [ - { - "value": "JMG 83-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845079" - } - ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845079" - ], - "idBarcode": [ - "33433032845079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000023", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (18 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For band or wind ensemble.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Based on the composer's Veni creator spiritus.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: KC913.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Band music", - "Band music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shawnee Press" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica sacra" - ], - "shelfMark": [ - "JMF 83-38" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zaninelli, Luigi." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-38" - }, - { - "type": "nypl:Bnumber", - "value": "10000023" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-C" - }, - { - "type": "bf:Identifier", - "value": "KC913 Shawnee Press" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100560" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200022" - } - ], - "idOclc": [ - "NYPG001000010-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Delaware Water Gap, Pa. : Shawnee Press, c1979." - ], - "identifier": [ - "urn:bnum:10000023", - "urn:oclc:NYPG001000010-C", - "urn:undefined:KC913 Shawnee Press", - "urn:undefined:NNSZ00100560", - "urn:undefined:(WaOLN)nyp0200022" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Band music -- Scores." - ], - "titleDisplay": [ - "Musica sacra / Luigi Zaninelli." - ], - "uri": "b10000023", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delaware Water Gap, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-38" - ], - "identifierV2": [ - { - "value": "JMF 83-38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709028" - } - ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709028" - ], - "idBarcode": [ - "33433032709028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000038" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000025", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei Sonatinen für Klavier" - ], - "shelfMark": [ - "JMF 83-107" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stockmeier, Wolfgang." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-107" - }, - { - "type": "nypl:Bnumber", - "value": "10000025" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100561" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200024" - } - ], - "idOclc": [ - "NYPG001000011-C" - ], - "uniformTitle": [ - "Sonatinas, piano" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000025", - "urn:oclc:NYPG001000011-C", - "urn:undefined:NNSZ00100561", - "urn:undefined:(WaOLN)nyp0200024" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Drei Sonatinen für Klavier / Wolfgang Stockmeier." - ], - "uri": "b10000025", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatinas" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-107" - ], - "identifierV2": [ - { - "value": "JMF 83-107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709697" - } - ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709697" - ], - "idBarcode": [ - "33433032709697" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000027", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Violin)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei kleine Sonaten : für Violine solo" - ], - "shelfMark": [ - "JMF 83-95" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Köhler, Friedemann." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 172" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-95" - }, - { - "type": "nypl:Bnumber", - "value": "10000027" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100562" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200026" - } - ], - "idOclc": [ - "NYPG001000012-C" - ], - "uniformTitle": [ - "Kleine Sonaten, violin" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Wolfenbüttel : Möseler Verlag, c1979." - ], - "identifier": [ - "urn:bnum:10000027", - "urn:oclc:NYPG001000012-C", - "urn:undefined:NNSZ00100562", - "urn:undefined:(WaOLN)nyp0200026" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Violin)" - ], - "titleDisplay": [ - "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." - ], - "uri": "b10000027", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kleine Sonaten" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000027" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-95" - ], - "identifierV2": [ - { - "value": "JMF 83-95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709572" - } - ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709572" - ], - "idBarcode": [ - "33433032709572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000095" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000029", - "_score": null, - "_source": { - "extent": [ - "16 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: 29589.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Organ music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Hansen ; Distribution, Magnamusic-Baton" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cruor : for organ solo, 1977" - ], - "shelfMark": [ - "JMF 83-93" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lorentzen, Bent." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82771131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-93" - }, - { - "type": "nypl:Bnumber", - "value": "10000029" - }, - { - "type": "bf:Lccn", - "value": "82771131" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-C" - }, - { - "type": "bf:Identifier", - "value": "Wilhelm Hansen edition no. 4372." - }, - { - "type": "bf:Identifier", - "value": "29589." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100563" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200028" - } - ], - "idOclc": [ - "NYPG001000013-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." - ], - "identifier": [ - "urn:bnum:10000029", - "urn:lccn:82771131", - "urn:oclc:NYPG001000013-C", - "urn:undefined:Wilhelm Hansen edition no. 4372.", - "urn:undefined:29589.", - "urn:undefined:NNSZ00100563", - "urn:undefined:(WaOLN)nyp0200028" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Organ music." - ], - "titleDisplay": [ - "Cruor : for organ solo, 1977 / B. Lorentzen." - ], - "uri": "b10000029", - "lccClassification": [ - "M11 .L" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen ; New York : [s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-93" - ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709556" - } - ], - "physicalLocation": [ - "JMF 83-93" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709556" - ], - "idBarcode": [ - "33433032709556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000093" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000031", - "_score": null, - "_source": { - "extent": [ - "21 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Müller" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Neun Miniaturen : für Klavier : op. 52" - ], - "shelfMark": [ - "JMG 83-17" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Petersen, Wilhelm, 1890-1957." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-17" - }, - { - "type": "nypl:Bnumber", - "value": "10000031" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-C" - }, - { - "type": "bf:Identifier", - "value": "W. Müller WM 1713 SM." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100564" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200030" - } - ], - "idOclc": [ - "NYPG001000014-C" - ], - "uniformTitle": [ - "Miniaturen" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Heidelberg : W. Müller, c1979." - ], - "identifier": [ - "urn:bnum:10000031", - "urn:oclc:NYPG001000014-C", - "urn:undefined:W. Müller WM 1713 SM.", - "urn:undefined:NNSZ00100564", - "urn:undefined:(WaOLN)nyp0200030" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." - ], - "uri": "b10000031", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Heidelberg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen", - "Miniaturen." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-17" - ], - "identifierV2": [ - { - "value": "JMG 83-17", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841631" - } - ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841631" - ], - "idBarcode": [ - "33433032841631" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000017" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000033", - "_score": null, - "_source": { - "extent": [ - "1 score (20 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For voice and organ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs (Medium voice) with organ", - "Psalms (Music)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Agápe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Psalm settings" - ], - "shelfMark": [ - "JMG 83-59" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nelhybel, Vaclav." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-59" - }, - { - "type": "nypl:Bnumber", - "value": "10000033" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100565" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200032" - } - ], - "idOclc": [ - "NYPG001000015-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Carol Stream, Ill. : Agápe, c1981." - ], - "identifier": [ - "urn:bnum:10000033", - "urn:oclc:NYPG001000015-C", - "urn:undefined:NNSZ00100565", - "urn:undefined:(WaOLN)nyp0200032" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs (Medium voice) with organ.", - "Psalms (Music)" - ], - "titleDisplay": [ - "Psalm settings / Vaclav Nelhybel." - ], - "uri": "b10000033", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Carol Stream, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000033" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842035" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842035" - ], - "idBarcode": [ - "33433032842035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000035", - "_score": null, - "_source": { - "extent": [ - "22 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Suite.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 12:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Serenade voor piano : 1980" - ], - "shelfMark": [ - "JMG 83-6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kasbergen, Marinus, 1936-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-6" - }, - { - "type": "nypl:Bnumber", - "value": "10000035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100566" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200034" - } - ], - "idOclc": [ - "NYPG001000016-C" - ], - "uniformTitle": [ - "Serenade, piano" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000035", - "urn:oclc:NYPG001000016-C", - "urn:undefined:NNSZ00100566", - "urn:undefined:(WaOLN)nyp0200034" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Piano)" - ], - "titleDisplay": [ - "Serenade voor piano : 1980 / Marinus Kasbergen." - ], - "uri": "b10000035", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Serenade" - ], - "tableOfContents": [ - "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841490" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841490" - ], - "idBarcode": [ - "33433032841490" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000037", - "_score": null, - "_source": { - "extent": [ - "13a p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 15:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Guitar)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Eight studies for guitar : in form of a suite : 1979" - ], - "shelfMark": [ - "JMG 83-5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hekster, Walter." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-5" - }, - { - "type": "nypl:Bnumber", - "value": "10000037" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200036" - } - ], - "idOclc": [ - "NYPG001000017-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000037", - "urn:oclc:NYPG001000017-C", - "urn:undefined:NNSZ00100567", - "urn:undefined:(WaOLN)nyp0200036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Guitar)" - ], - "titleDisplay": [ - "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." - ], - "uri": "b10000037", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000037" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-5" - ], - "identifierV2": [ - { - "value": "JMG 83-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841482" - } - ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841482" - ], - "idBarcode": [ - "33433032841482" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000005" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000039", - "_score": null, - "_source": { - "extent": [ - "49 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five sonatas for pianoforte" - ], - "shelfMark": [ - "JMG 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hässler, Johann Wilhelm, 1747-1822." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Oberdoerffer, Fritz." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000039" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters no. 66799. C.F. Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200038" - } - ], - "idOclc": [ - "NYPG001000018-C" - ], - "uniformTitle": [ - "Sonatas, piano. Selections" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000039", - "urn:oclc:NYPG001000018-C", - "urn:undefined:Edition Peters no. 66799. C.F. Peters", - "urn:undefined:NNSZ00100568", - "urn:undefined:(WaOLN)nyp0200038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." - ], - "uri": "b10000039", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatas" - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-66" - ], - "identifierV2": [ - { - "value": "JMG 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842100" - } - ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842100" - ], - "idBarcode": [ - "33433032842100" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000041", - "_score": null, - "_source": { - "extent": [ - "1 score (23 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 5 clarinets.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Woodwind quintets (Clarinets (5))", - "Woodwind quintets (Clarinets (5)) -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Primavera" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Encounter" - ], - "shelfMark": [ - "JMF 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Usher, Julia." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81770739" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000041" - }, - { - "type": "bf:Lccn", - "value": "81770739" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100569" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200040" - } - ], - "idOclc": [ - "NYPG001000019-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Primavera, c1980." - ], - "identifier": [ - "urn:bnum:10000041", - "urn:lccn:81770739", - "urn:oclc:NYPG001000019-C", - "urn:undefined:NNSZ00100569", - "urn:undefined:(WaOLN)nyp0200040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Woodwind quintets (Clarinets (5)) -- Scores." - ], - "titleDisplay": [ - "Encounter / Julia Usher." - ], - "uri": "b10000041", - "lccClassification": [ - "M557.2.U8 E5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Greeting -- Circular argument -- Escape." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-66" - ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709291" - } - ], - "physicalLocation": [ - "JMF 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709291" - ], - "idBarcode": [ - "33433032709291" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000043", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (28 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 5:00-6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: D.15 579.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wind ensembles", - "Wind ensembles -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Doblinger" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Capriccio : für 10 Blasinstrumente" - ], - "shelfMark": [ - "JMC 83-9" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Eröd, Iván." - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Doblingers Studienpartituren ; Stp. 410" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMC 83-9" - }, - { - "type": "nypl:Bnumber", - "value": "10000043" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-C" - }, - { - "type": "bf:Identifier", - "value": "Stp. 410 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "D.15 579 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200042" - } - ], - "idOclc": [ - "NYPG001000020-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wien : Verlag Doblinger, c1980." - ], - "identifier": [ - "urn:bnum:10000043", - "urn:oclc:NYPG001000020-C", - "urn:undefined:Stp. 410 Verlag Doblinger", - "urn:undefined:D.15 579 Verlag Doblinger", - "urn:undefined:NNSZ00100570", - "urn:undefined:(WaOLN)nyp0200042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wind ensembles -- Scores." - ], - "titleDisplay": [ - "Capriccio : für 10 Blasinstrumente / Iván Eröd." - ], - "uri": "b10000043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wien" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMC 83-9" - ], - "identifierV2": [ - { - "value": "JMC 83-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004744128" - } - ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433004744128" - ], - "idBarcode": [ - "33433004744128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMC 83-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000044", - "_score": null, - "_source": { - "extent": [ - "[99] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ngawang Sopa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77901316" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2361" - }, - { - "type": "nypl:Bnumber", - "value": "10000044" - }, - { - "type": "bf:Lccn", - "value": "77901316" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100021" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200043" - } - ], - "idOclc": [ - "NYPG001000021-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Ngawang Sopa, 1976." - ], - "identifier": [ - "urn:bnum:10000044", - "urn:lccn:77901316", - "urn:oclc:NYPG001000021-B", - "urn:undefined:NNSZ00100021", - "urn:undefined:(WaOLN)nyp0200043" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." - ], - "uri": "b10000044", - "lccClassification": [ - "BQ942.Y367 R47 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000044" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000011", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2361" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080645" - } - ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080645" - ], - "idBarcode": [ - "33433015080645" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000045", - "_score": null, - "_source": { - "extent": [ - "12 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Violin music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sole selling agents, Or-Tav" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Thoughts & feelings : for violin solo" - ], - "shelfMark": [ - "JMG 82-688" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stutschewsky, Joachim, 1891-1982." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "80770813" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 82-688" - }, - { - "type": "nypl:Bnumber", - "value": "10000045" - }, - { - "type": "bf:Lccn", - "value": "80770813" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100571" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200044" - } - ], - "idOclc": [ - "NYPG001000021-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tel-Aviv : Sole selling agents, Or-Tav, c1979." - ], - "identifier": [ - "urn:bnum:10000045", - "urn:lccn:80770813", - "urn:oclc:NYPG001000021-C", - "urn:undefined:NNSZ00100571", - "urn:undefined:(WaOLN)nyp0200044" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Violin music." - ], - "titleDisplay": [ - "Thoughts & feelings : for violin solo / Joachim Stutschewsky." - ], - "uri": "b10000045", - "lccClassification": [ - "M42 .S" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tel-Aviv" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000045" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942043", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 82-688" - ], - "identifierV2": [ - { - "value": "JMG 82-688", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032707568" - } - ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032707568" - ], - "idBarcode": [ - "33433032707568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 82-000688" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000046", - "_score": null, - "_source": { - "extent": [ - "[83] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kye rdor rnam bśad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", - "Tripiṭaka.", - "Tripiṭaka. -- Commentaries", - "Sa-skya-pa lamas", - "Sa-skya-pa lamas -- Tibet", - "Sa-skya-pa lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trayang and Jamyang Samten" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2362" - }, - { - "type": "nypl:Bnumber", - "value": "10000046" - }, - { - "type": "bf:Lccn", - "value": "77900893" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100022" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200045" - } - ], - "idOclc": [ - "NYPG001000022-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Trayang and Jamyang Samten, 1976." - ], - "identifier": [ - "urn:bnum:10000046", - "urn:lccn:77900893", - "urn:oclc:NYPG001000022-B", - "urn:undefined:NNSZ00100022", - "urn:undefined:(WaOLN)nyp0200045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", - "Tripiṭaka. -- Commentaries.", - "Sa-skya-pa lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." - ], - "uri": "b10000046", - "lccClassification": [ - "BG974.0727 T75" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "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" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000046" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080413" - } - ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080413" - ], - "idBarcode": [ - "33433015080413" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000047", - "_score": null, - "_source": { - "extent": [ - "1 score (30 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 15 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vocalises (High voice) with instrumental ensemble", - "Vocalises (High voice) with instrumental ensemble -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" - ], - "shelfMark": [ - "JMG 83-79" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "81770634" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-79" - }, - { - "type": "nypl:Bnumber", - "value": "10000047" - }, - { - "type": "bf:Lccn", - "value": "81770634" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200046" - } - ], - "idOclc": [ - "NYPG001000022-C" - ], - "uniformTitle": [ - "Vocalise, soprano, instrumental ensemble, op. 38" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." - ], - "identifier": [ - "urn:bnum:10000047", - "urn:lccn:81770634", - "urn:oclc:NYPG001000022-C", - "urn:undefined:NNSZ00100572", - "urn:undefined:(WaOLN)nyp0200046" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vocalises (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." - ], - "uri": "b10000047", - "lccClassification": [ - "M1613.3 .R8 op.38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London, England (Arlington Park House, London W4)" - ], - "titleAlt": [ - "Vocalise, op. 38" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "38 cm." - ] - }, - "sort": [ - "b10000047" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-79" - ], - "identifierV2": [ - { - "value": "JMG 83-79", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842233" - } - ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842233" - ], - "idBarcode": [ - "33433032842233" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000079" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000048", - "_score": null, - "_source": { - "extent": [ - "[150] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kunzang Topgey" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901012" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2382" - }, - { - "type": "nypl:Bnumber", - "value": "10000048" - }, - { - "type": "bf:Lccn", - "value": "76901012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100023" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200047" - } - ], - "idOclc": [ - "NYPG001000023-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Thimphu : Kunzang Topgey, 1976." - ], - "identifier": [ - "urn:bnum:10000048", - "urn:lccn:76901012", - "urn:oclc:NYPG001000023-B", - "urn:undefined:NNSZ00100023", - "urn:undefined:(WaOLN)nyp0200047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000048", - "lccClassification": [ - "BQ7695 .B55" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Thimphu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 38 cm." - ] - }, - "sort": [ - "b10000048" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000013", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080439" - } - ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080439" - ], - "idBarcode": [ - "33433015080439" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002382" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000049", - "_score": null, - "_source": { - "extent": [ - "1 score (105 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 25 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Symphony, op. 26 : full score" - ], - "shelfMark": [ - "JMG 83-80" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "81770641" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-80" - }, - { - "type": "nypl:Bnumber", - "value": "10000049" - }, - { - "type": "bf:Lccn", - "value": "81770641" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100573" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200048" - } - ], - "idOclc": [ - "NYPG001000023-C" - ], - "uniformTitle": [ - "Symphony, op. 26" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." - ], - "identifier": [ - "urn:bnum:10000049", - "urn:lccn:81770641", - "urn:oclc:NYPG001000023-C", - "urn:undefined:NNSZ00100573", - "urn:undefined:(WaOLN)nyp0200048" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "Symphony, op. 26 : full score / Francis Routh." - ], - "uri": "b10000049", - "lccClassification": [ - "M1001 .R8615 op.26" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London (Arlington Park House, London W4 4HD)" - ], - "titleAlt": [ - "Symphony, op. 26" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000049" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-80" - ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842241" - } - ], - "physicalLocation": [ - "JMG 83-80" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842241" - ], - "idBarcode": [ - "33433032842241" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000080" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000050", - "_score": null, - "_source": { - "extent": [ - "[188] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas", - "Bkaʼ-brgyud-pa lamas -- Tibet", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", - "Spiritual life", - "Spiritual life -- Buddhism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Urgyan Dorje" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901747" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2381" - }, - { - "type": "nypl:Bnumber", - "value": "10000050" - }, - { - "type": "bf:Lccn", - "value": "76901747" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100024" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200049" - } - ], - "idOclc": [ - "NYPG001000024-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New Delhi : Urgyan Dorje, 1976." - ], - "identifier": [ - "urn:bnum:10000050", - "urn:lccn:76901747", - "urn:oclc:NYPG001000024-B", - "urn:undefined:NNSZ00100024", - "urn:undefined:(WaOLN)nyp0200049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", - "Spiritual life -- Buddhism." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000050", - "lccClassification": [ - "BQ942.A187 A35 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000014", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080421" - } - ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080421" - ], - "idBarcode": [ - "33433015080421" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002381" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000051", - "_score": null, - "_source": { - "extent": [ - "score (64 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Samfundet til udgivelse af dansk musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" - ], - "shelfMark": [ - "JMG 83-75" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Christiansen, Henning." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "78770955" - ], - "seriesStatement": [ - "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-75" - }, - { - "type": "nypl:Bnumber", - "value": "10000051" - }, - { - "type": "bf:Lccn", - "value": "78770955" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100574" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200050" - } - ], - "idOclc": [ - "NYPG001000024-C" - ], - "uniformTitle": [ - "Symphony, no. 2, op. 69c", - "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "København : Samfundet til udgivelse af dansk musik, 1977." - ], - "identifier": [ - "urn:bnum:10000051", - "urn:lccn:78770955", - "urn:oclc:NYPG001000024-C", - "urn:undefined:NNSZ00100574", - "urn:undefined:(WaOLN)nyp0200050" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." - ], - "uri": "b10000051", - "lccClassification": [ - "M1001 .C533 op.69c" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "København" - ], - "titleAlt": [ - "Symphony, no. 2, op. 69c", - "Den forsvundne." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "37 cm." - ] - }, - "sort": [ - "b10000051" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942046", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-75" - ], - "identifierV2": [ - { - "value": "JMG 83-75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842191" - } - ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842191" - ], - "idBarcode": [ - "33433032842191" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000075" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json b/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json index 53811bf6..1e9993ac 100644 --- a/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json +++ b/test/fixtures/query-611d6d3ca022d6d4732d52a0821eb41f.json @@ -1,32 +1,80 @@ { - "took": 5, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 0, - "hits": [] - }, - "aggregations": { - "statuses": { - "doc_count": 5, - "nonrecap_statuses": { - "doc_count": 3, - "nonrecap_status_buckets": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 2 - } - ] + "body": { + "took": 5, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 0, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 5, + "nonrecap_statuses": { + "doc_count": 3, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 2 + } + ] + } } } } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:57 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "341", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":0,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10011374\"}}]}},\"_source\":{\"includes\":[\"uri\"]},\"aggs\":{\"statuses\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"nonrecap_statuses\":{\"filter\":{\"bool\":{\"must_not\":{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}}}},\"aggs\":{\"nonrecap_status_buckets\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "347" + }, + "timeout": 30000 + }, + "options": {}, + "id": 38 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-62de0489db3c24b174806d72649004c5.json b/test/fixtures/query-62de0489db3c24b174806d72649004c5.json deleted file mode 100644 index 2573cea9..00000000 --- a/test/fixtures/query-62de0489db3c24b174806d72649004c5.json +++ /dev/null @@ -1,15346 +0,0 @@ -{ - "took": 604, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 9413527, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000109", - "_score": null, - "_source": { - "extent": [ - "xxii, 321 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [305]-321).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Americans", - "Americans -- History", - "Americans -- History -- China", - "Americans -- History -- China -- 19th century", - "Public opinion", - "Public opinion -- United States", - "Public opinion -- United States -- History", - "Public opinion -- United States -- History -- 19th century", - "United States", - "United States -- Chinese influences", - "United States -- Intellectual life", - "United States -- Intellectual life -- 19th century", - "China", - "China -- History", - "China -- History -- 19th century", - "China -- Description and travel", - "China -- In popular culture", - "United States -- Relations", - "United States -- Relations -- China", - "China -- Relations", - "China -- Relations -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Columbia University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2008 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Haddad, John Rogers." - ], - "createdString": [ - "2008" - ], - "idLccn": [ - "2008037637" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2008 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 09-1362" - }, - { - "type": "nypl:Bnumber", - "value": "10000109" - }, - { - "type": "bf:Isbn", - "value": "9780231130943 (cloth : alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "0231130945 (cloth : alk. paper)" - }, - { - "type": "bf:Lccn", - "value": "2008037637" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)184821618" - } - ], - "idOclc": [ - "184821618" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "New York : Columbia University Press, c2008." - ], - "identifier": [ - "urn:bnum:10000109", - "urn:isbn:9780231130943 (cloth : alk. paper)", - "urn:isbn:0231130945 (cloth : alk. paper)", - "urn:lccn:2008037637", - "urn:oclc:184821618", - "urn:undefined:(OCoLC)184821618" - ], - "idIsbn": [ - "9780231130943 (cloth : alk. paper)", - "0231130945 (cloth : alk. paper)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Americans -- History -- China -- 19th century.", - "Public opinion -- United States -- History -- 19th century.", - "United States -- Chinese influences.", - "United States -- Intellectual life -- 19th century.", - "China -- History -- 19th century.", - "China -- Description and travel.", - "China -- In popular culture.", - "United States -- Relations -- China.", - "China -- Relations -- United States." - ], - "titleDisplay": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." - ], - "uri": "b10000109", - "lccClassification": [ - "E183.8.C5 H175 2008" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." - ], - "idIsbn_clean": [ - "9780231130943", - "0231130945" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000109" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i23117386", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "identifierV2": [ - { - "value": "JFE 09-1362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084847221" - } - ], - "physicalLocation": [ - "JFE 09-1362" - ], - "identifier": [ - "urn:barcode:33433084847221" - ], - "idBarcode": [ - "33433084847221" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 09-001362" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783799", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLF 82-5145" - ], - "identifierV2": [ - { - "value": "*OLF 82-5145", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061318089" - } - ], - "physicalLocation": [ - "*OLF 82-5145" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061318089" - ], - "idBarcode": [ - "33433061318089" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLF 82-005145" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000432", - "_score": null, - "_source": { - "extent": [ - "94 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Amīr Kabīr" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah" - ], - "shelfMark": [ - "*OMO 84-1527" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Yūshīj, Nīmā." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMO 84-1527" - }, - { - "type": "nypl:Bnumber", - "value": "10000432" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000386-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100386" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200431" - } - ], - "idOclc": [ - "NYPG001000386-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10000432", - "urn:oclc:NYPG001000386-B", - "urn:undefined:NNSZ00100386", - "urn:undefined:(WaOLN)nyp0200431" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah / az Nīmā yūshīj." - ], - "uri": "b10000432", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Khānah-ʼi Sarīvaylī." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000432" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000245", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMO 84-1527" - ], - "identifierV2": [ - { - "value": "*OMO 84-1527", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001898497" - } - ], - "physicalLocation": [ - "*OMO 84-1527" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001898497" - ], - "idBarcode": [ - "33433001898497" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMO 84-001527" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001333", - "_score": null, - "_source": { - "extent": [ - "v. : ill., folded maps ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Geomorphology", - "Geomorphology -- Libya" - ], - "publisherLiteral": [ - "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" - ], - "shelfMark": [ - "*OFO 82-5116" - ], - "creatorLiteral": [ - "Jawdah, Jawdah Ḥasanayn." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75960642" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFO 82-5116" - }, - { - "type": "nypl:Bnumber", - "value": "10001333" - }, - { - "type": "bf:Lccn", - "value": "75960642" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201348" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201331" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636070536203, - "publicationStatement": [ - "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" - ], - "identifier": [ - "urn:bnum:10001333", - "urn:lccn:75960642", - "urn:undefined:NNSZ00201348", - "urn:undefined:(WaOLN)nyp0201331" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Geomorphology -- Libya." - ], - "titleDisplay": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." - ], - "uri": "b10001333", - "lccClassification": [ - "GB440.L5 J38" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Binghāzī] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - "b10001333" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000872", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode: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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000871", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001377", - "_score": null, - "_source": { - "extent": [ - "71 p. : ill., music ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 69).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Silbermann, Gottfried, 1683-1753", - "Organ (Musical instrument)", - "Organ (Musical instrument) -- Instruction and study", - "Improvisation (Music)", - "Improvisation (Music) -- Instruction and study", - "Organ music", - "Organ music -- Interpretation (Phrasing, dynamics, etc.)", - "Organ builders", - "Organ builders -- Germany" - ], - "publisherLiteral": [ - "Verlag Klaus-Jürgen Kamprad" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 2007 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Choralimprovisation auf Orgeln Gottfried Silbermanns" - ], - "shelfMark": [ - "JMG 09-710" - ], - "creatorLiteral": [ - "Wagler, Dietrich, 1940-" - ], - "createdString": [ - "2007" - ], - "seriesStatement": [ - "Freiberger Studien zur Orgel ; 10" - ], - "contributorLiteral": [ - "Gottfried-Silbermann-Gesellschaft." - ], - "dateStartYear": [ - 2007 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 09-710" - }, - { - "type": "nypl:Bnumber", - "value": "10001377" - }, - { - "type": "bf:Isbn", - "value": "9783930550494 (pbk.)" - }, - { - "type": "bf:Isbn", - "value": "3930550490 (pbk.)" - }, - { - "type": "nypl:Oclc", - "value": "439765611" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)439765611" - } - ], - "idOclc": [ - "439765611" - ], - "updatedAt": 1652323426362, - "publicationStatement": [ - "[Altenburg] : Verlag Klaus-Jürgen Kamprad, c2007." - ], - "identifier": [ - "urn:bnum:10001377", - "urn:isbn:9783930550494 (pbk.)", - "urn:isbn:3930550490 (pbk.)", - "urn:oclc:439765611", - "urn:undefined:(OCoLC)439765611" - ], - "idIsbn": [ - "9783930550494 (pbk.)", - "3930550490 (pbk.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2007" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Silbermann, Gottfried, 1683-1753.", - "Organ (Musical instrument) -- Instruction and study.", - "Improvisation (Music) -- Instruction and study.", - "Organ music -- Interpretation (Phrasing, dynamics, etc.)", - "Organ builders -- Germany." - ], - "titleDisplay": [ - "Choralimprovisation auf Orgeln Gottfried Silbermanns / Dietrich Wagler ; [Hrsg.: Gottfried-Silbermann-Gesellschaft]." - ], - "uri": "b10001377", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Altenburg]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "9783930550494", - "3930550490" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10001377" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433089337251" - ], - "physicalLocation": [ - "JMG 09-710" - ], - "shelfMark_sort": "aJMG 09-000710", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i24299761", - "shelfMark": [ - "JMG 09-710" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 09-710" - }, - { - "type": "bf:Barcode", - "value": "33433089337251" - } - ], - "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" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001657", - "_score": null, - "_source": { - "extent": [ - "v. : ill., maps ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on p. [4] of cover: Village gazetteer.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English and Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Gazetteers", - "Villages", - "Villages -- Iran", - "Villages -- Iran -- Statistics" - ], - "publisherLiteral": [ - "Markaz-i Āmār-i Īrān," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "shelfMark": [ - "Map Div. 84-146" - ], - "creatorLiteral": [ - "Markaz-i Āmār-i Īrān." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "81464564" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146" - }, - { - "type": "nypl:Bnumber", - "value": "10001657" - }, - { - "type": "bf:Lccn", - "value": "81464564" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201692" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201655" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636095534719, - "publicationStatement": [ - "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" - ], - "identifier": [ - "urn:bnum:10001657", - "urn:lccn:81464564", - "urn:undefined:NNSZ00201692", - "urn:undefined:(WaOLN)nyp0201655" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Gazetteers.", - "Villages -- Iran -- Statistics." - ], - "titleDisplay": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "uri": "b10001657", - "lccClassification": [ - "DS253 .M37" - ], - "numItems": [ - 11 - ], - "numAvailable": [ - 11 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Village gazetteer." - ], - "tableOfContents": [ - "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." - ], - "dimensions": [ - "42x54 cm." - ] - }, - "sort": [ - "b10001657" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 11, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030870" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000017", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784147", - "shelfMark": [ - "Map Div. 84-146 v. 17" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030862" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000015", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784146", - "shelfMark": [ - "Map Div. 84-146 v. 15" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030854" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784145", - "shelfMark": [ - "Map Div. 84-146 v. 14" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030847" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000010", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784144", - "shelfMark": [ - "Map Div. 84-146 v. 10" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 10" - }, - { - "type": "bf:Barcode", - "value": "33433057030847" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 10" - ], - "idBarcode": [ - "33433057030847" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030839" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000009", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784143", - "shelfMark": [ - "Map Div. 84-146 v. 9" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 9" - }, - { - "type": "bf:Barcode", - "value": "33433057030839" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 9" - ], - "idBarcode": [ - "33433057030839" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030821" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000006", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784142", - "shelfMark": [ - "Map Div. 84-146 v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433057030821" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433057030821" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030813" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784141", - "shelfMark": [ - "Map Div. 84-146 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433057030813" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433057030813" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030805" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784140", - "shelfMark": [ - "Map Div. 84-146 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433057030805" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433057030805" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030797" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784139", - "shelfMark": [ - "Map Div. 84-146 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057030797" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057030797" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030789" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784138", - "shelfMark": [ - "Map Div. 84-146 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057030789" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057030789" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030771" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784137", - "shelfMark": [ - "Map Div. 84-146 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057030771" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057030771" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001844", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu philosophy", - "Vedanta" - ], - "publisherLiteral": [ - "Chaukhambā Vidyābhavana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." - ], - "shelfMark": [ - "*OKN 82-2276" - ], - "creatorLiteral": [ - "Bādarāyaṇa." - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 65007118" - ], - "seriesStatement": [ - "Vidyābhavara Saṃskrta granthamālā, 124" - ], - "contributorLiteral": [ - "Sastri, Hanumanadas, Swami.", - "Śaṅkarācārya." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "nypl:Bnumber", - "value": "10001844" - }, - { - "type": "bf:Lccn", - "value": "sa 65007118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201882" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201842" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636079011965, - "publicationStatement": [ - "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" - ], - "identifier": [ - "urn:bnum:10001844", - "urn:lccn:sa 65007118", - "urn:undefined:NNSZ00201882", - "urn:undefined:(WaOLN)nyp0201842" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu philosophy.", - "Vedanta." - ], - "titleDisplay": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." - ], - "uri": "b10001844", - "lccClassification": [ - "B132.V3 B22" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasī," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Brahmasūtra Śaṅkarbhāṣya." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10001844" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058617816" - ], - "physicalLocation": [ - "*OKN 82-2276" - ], - "shelfMark_sort": "a*OKN 82-002276", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784177", - "shelfMark": [ - "*OKN 82-2276" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "bf:Barcode", - "value": "33433058617816" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058617816" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002118", - "_score": null, - "_source": { - "extent": [ - "204 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Wakālat Nāy," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1999" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Awlād bi-al-jumlah" - ], - "shelfMark": [ - "*OFD 82-4488" - ], - "creatorLiteral": [ - "Gilbreth, Frank B. (Frank Bunker), 1911-2001." - ], - "createdString": [ - "1900" - ], - "contributorLiteral": [ - "Carey, Ernestine Moller, 1908-", - "Ṭāhā, Aḥmad." - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "nypl:Bnumber", - "value": "10002118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202160" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202114" - } - ], - "uniformTitle": [ - "Cheaper by the dozen. Arabic" - ], - "dateEndYear": [ - 1999 - ], - "updatedAt": 1636076222810, - "publicationStatement": [ - "Dimashq : Wakālat Nāy, 19--." - ], - "identifier": [ - "urn:bnum:10002118", - "urn:undefined:NNSZ00202160", - "urn:undefined:(WaOLN)nyp0202114" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." - ], - "uri": "b10002118", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Cheaper by the dozen." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10002118" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001997497" - ], - "physicalLocation": [ - "*OFD 82-4488" - ], - "shelfMark_sort": "a*OFD 82-004488", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001459", - "shelfMark": [ - "*OFD 82-4488" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "bf:Barcode", - "value": "33433001997497" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001997497" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002297", - "_score": null, - "_source": { - "extent": [ - "199 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Politics and government", - "Iran -- Politics and government -- 20th century" - ], - "publisherLiteral": [ - "Intishārāt-i Firdawsī," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." - ], - "shelfMark": [ - "*OMZ 84-1529" - ], - "creatorLiteral": [ - "Dawlatābādī, Àlī Muḥammad." - ], - "createdString": [ - "1983" - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1529" - }, - { - "type": "nypl:Bnumber", - "value": "10002297" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202345" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202293" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636109324448, - "publicationStatement": [ - "Tihrān : Intishārāt-i Firdawsī, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10002297", - "urn:undefined:NNSZ00202345", - "urn:undefined:(WaOLN)nyp0202293" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Politics and government -- 20th century." - ], - "titleDisplay": [ - "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." - ], - "uri": "b10002297", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10002297" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539872" - ], - "physicalLocation": [ - "*OMZ 84-1529" - ], - "shelfMark_sort": "a*OMZ 84-001529", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942128", - "shelfMark": [ - "*OMZ 84-1529" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1529" - }, - { - "type": "bf:Barcode", - "value": "33433014539872" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539872" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002303", - "_score": null, - "_source": { - "extent": [ - "280 p. : facsim. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Politics and government", - "Iran -- Politics and government -- 20th century", - "Political prisoners", - "Political prisoners -- Iran", - "Political prisoners -- Iran -- Biography" - ], - "publisherLiteral": [ - "Intishārāt-i Haftah," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad" - ], - "shelfMark": [ - "*OMZ 84-1538" - ], - "creatorLiteral": [ - "Khāmahʼī, Anvar." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1538" - }, - { - "type": "nypl:Bnumber", - "value": "10002303" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202351" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202299" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636121044994, - "publicationStatement": [ - "Tihrān : Intishārāt-i Haftah, [198-?]" - ], - "identifier": [ - "urn:bnum:10002303", - "urn:undefined:NNSZ00202351", - "urn:undefined:(WaOLN)nyp0202299" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Politics and government -- 20th century.", - "Political prisoners -- Iran -- Biography." - ], - "titleDisplay": [ - "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad / khāṭirāt-i Anvar Khāmah'ī." - ], - "uri": "b10002303", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10002303" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539880" - ], - "physicalLocation": [ - "*OMZ 84-1538" - ], - "shelfMark_sort": "a*OMZ 84-001538", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942130", - "shelfMark": [ - "*OMZ 84-1538" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1538" - }, - { - "type": "bf:Barcode", - "value": "33433014539880" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539880" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003134", - "_score": null, - "_source": { - "extent": [ - "397 p. : ill., port., facsim. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- History", - "Iran -- History -- Qajar dynasty, 1794-1925", - "Statesmen", - "Statesmen -- Iran", - "Statesmen -- Iran -- Biography" - ], - "publisherLiteral": [ - "Intishārāt-i Amīr Kabīr," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī" - ], - "shelfMark": [ - "*OMZ 84-1427" - ], - "creatorLiteral": [ - "Mumtaḥin al-Dawlah Shaqāqī, Mahdī Khān." - ], - "createdString": [ - "1983" - ], - "seriesStatement": [ - "Majmūʻah-ʼi guzashtah-ʼi Īrān dar nivishtah-ʼi pīshīnīyān, 1" - ], - "contributorLiteral": [ - "Khānshaqāqī, Ḥusaynqulī." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1427" - }, - { - "type": "nypl:Bnumber", - "value": "10003134" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303485" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203127" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636109324448, - "publicationStatement": [ - "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003134", - "urn:undefined:NNSZ00303485", - "urn:undefined:(WaOLN)nyp0203127" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- History -- Qajar dynasty, 1794-1925.", - "Statesmen -- Iran -- Biography." - ], - "titleDisplay": [ - "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī / bi-kūshish-i Ḥusaynqulī Khānshaqāqī." - ], - "uri": "b10003134", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - "b10003134" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539856" - ], - "physicalLocation": [ - "*OMZ 84-1427" - ], - "shelfMark_sort": "a*OMZ 84-001427", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942159", - "shelfMark": [ - "*OMZ 84-1427" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1427" - }, - { - "type": "bf:Barcode", - "value": "33433014539856" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539856" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003171", - "_score": null, - "_source": { - "extent": [ - "412 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Naw" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āvāz-i kushtigān" - ], - "shelfMark": [ - "*OMP 84-2030" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Baraheni, Reza, 1935-2022." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2030" - }, - { - "type": "nypl:Bnumber", - "value": "10003171" - }, - { - "type": "nypl:Oclc", - "value": "NYPG003000626-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303522" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203164" - } - ], - "idOclc": [ - "NYPG003000626-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1675110792889, - "publicationStatement": [ - "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003171", - "urn:oclc:NYPG003000626-B", - "urn:undefined:NNSZ00303522", - "urn:undefined:(WaOLN)nyp0203164" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Āvāz-i kushtigān / Rizā Barāhinī." - ], - "uri": "b10003171", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm." - ] - }, - "sort": [ - "b10003171" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10002196", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2030" - ], - "identifierV2": [ - { - "value": "*OMP 84-2030", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173038" - } - ], - "physicalLocation": [ - "*OMP 84-2030" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173038" - ], - "idBarcode": [ - "33433013173038" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002030" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003179", - "_score": null, - "_source": { - "extent": [ - "101 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Naw" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Chāh bih chāh" - ], - "shelfMark": [ - "*OMP 84-2039" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Baraheni, Reza, 1935-2022." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2039" - }, - { - "type": "nypl:Bnumber", - "value": "10003179" - }, - { - "type": "nypl:Oclc", - "value": "NYPG003000634-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303530" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203172" - } - ], - "idOclc": [ - "NYPG003000634-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1675110792235, - "publicationStatement": [ - "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003179", - "urn:oclc:NYPG003000634-B", - "urn:undefined:NNSZ00303530", - "urn:undefined:(WaOLN)nyp0203172" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Chāh bih chāh / Rizā Barāhinī." - ], - "uri": "b10003179", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003179" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10002203", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2039" - ], - "identifierV2": [ - { - "value": "*OMP 84-2039", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173053" - } - ], - "physicalLocation": [ - "*OMP 84-2039" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173053" - ], - "idBarcode": [ - "33433013173053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002039" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003180", - "_score": null, - "_source": { - "extent": [ - "235 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam and state", - "Islam and state -- Iran", - "Khomeini, Ruhollah" - ], - "publisherLiteral": [ - "Org. of Act. Constitutionalist Iranians," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1989" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Qizāvat" - ], - "shelfMark": [ - "*OMZ 84-965" - ], - "creatorLiteral": [ - "ʻAbd al-Raḥmān." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-965" - }, - { - "type": "nypl:Bnumber", - "value": "10003180" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303531" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203173" - } - ], - "dateEndYear": [ - 1989 - ], - "updatedAt": 1636124389229, - "publicationStatement": [ - "Los Angeles : Org. of Act. Constitutionalist Iranians, [198-?]" - ], - "identifier": [ - "urn:bnum:10003180", - "urn:undefined:NNSZ00303531", - "urn:undefined:(WaOLN)nyp0203173" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam and state -- Iran.", - "Khomeini, Ruhollah." - ], - "titleDisplay": [ - "Qizāvat / ʻAbd al-Raḥmān..." - ], - "uri": "b10003180", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Los Angeles :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10003180" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539666" - ], - "physicalLocation": [ - "*OMZ 84-965" - ], - "shelfMark_sort": "a*OMZ 84-000965", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942161", - "shelfMark": [ - "*OMZ 84-965" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-965" - }, - { - "type": "bf:Barcode", - "value": "33433014539666" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539666" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003410", - "_score": null, - "_source": { - "extent": [ - "v. facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Introd. in Arabic and English ; text in Arabic.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: v. 1, p. [313]-314.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic law" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ikhtilāf al-fuqahāʼ," - ], - "shelfMark": [ - "*OGM 84-702" - ], - "creatorLiteral": [ - "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72930954" - ], - "seriesStatement": [ - "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" - ], - "contributorLiteral": [ - "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "nypl:Bnumber", - "value": "10003410" - }, - { - "type": "bf:Lccn", - "value": "72930954" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303765" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203402" - } - ], - "uniformTitle": [ - "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636104747880, - "publicationStatement": [ - "Islām Ābād [1971-" - ], - "identifier": [ - "urn:bnum:10003410", - "urn:lccn:72930954", - "urn:undefined:NNSZ00303765", - "urn:undefined:(WaOLN)nyp0203402" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic law." - ], - "titleDisplay": [ - "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." - ], - "uri": "b10003410", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Islām Ābād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003410" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001944960" - ], - "physicalLocation": [ - "*OGM 84-702" - ], - "shelfMark_sort": "a*OGM 84-000702", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002358", - "shelfMark": [ - "*OGM 84-702" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "bf:Barcode", - "value": "33433001944960" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001944960" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003414", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Skandamahāpurāṇam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added t.p. in English or Hindi.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Manasukharāya Mora," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Skandamahāpurāṇam" - ], - "shelfMark": [ - "*OKOK 84-641" - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "73902099" - ], - "seriesStatement": [ - "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641" - }, - { - "type": "nypl:Bnumber", - "value": "10003414" - }, - { - "type": "bf:Lccn", - "value": "73902099" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303769" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203406" - } - ], - "uniformTitle": [ - "Puranas Skanda Purāṇa." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636124303127, - "publicationStatement": [ - "Kalakattā : Manasukharāya Mora, 1960-" - ], - "identifier": [ - "urn:bnum:10003414", - "urn:lccn:73902099", - "urn:undefined:NNSZ00303769", - "urn:undefined:(WaOLN)nyp0203406" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." - ], - "uri": "b10003414", - "lccClassification": [ - "PK3621 .S5 1960" - ], - "numItems": [ - 6 - ], - "numAvailable": [ - 6 - ], - "placeOfPublication": [ - "Kalakattā :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Skanda-Purāṇam." - ], - "tableOfContents": [ - "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10003414" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 6, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002364", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002363", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221407" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002362", - "shelfMark": [ - "*OKOK 84-641 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013221407" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013221407" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221399" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002365", - "shelfMark": [ - "*OKOK 84-641 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433013221399" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433013221399" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221381" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002361", - "shelfMark": [ - "*OKOK 84-641 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433013221381" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433013221381" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221373" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002360", - "shelfMark": [ - "*OKOK 84-641 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013221373" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013221373" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003502", - "_score": null, - "_source": { - "extent": [ - "v. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Partly translations from German poetry (with German texts included).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Liesma," - ], - "language": [ - { - "id": "lang:lav", - "label": "Latvian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dziesmiņas" - ], - "shelfMark": [ - "*QYN 82-2046" - ], - "creatorLiteral": [ - "Alunāns, Juris, 1832-1864." - ], - "createdString": [ - "1981" - ], - "seriesStatement": [ - "Literārā mantojuma mazā bibliotēka" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046" - }, - { - "type": "nypl:Bnumber", - "value": "10003502" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303857" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203494" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636091475285, - "publicationStatement": [ - "Riga : Liesma, 1981-" - ], - "identifier": [ - "urn:bnum:10003502", - "urn:undefined:NNSZ00303857", - "urn:undefined:(WaOLN)nyp0203494" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dziesmiņas / Juris Alunāns." - ], - "uri": "b10003502", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Riga :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "17 cm." - ] - }, - "sort": [ - "b10003502" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002421", - "shelfMark": [ - "*QYN 82-2046 Dala 1." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046 Dala 1." - }, - { - "type": "bf:Barcode", - "value": "33433013501782" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013501782" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003671", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Egypt", - "Egypt -- Politics and government", - "Egypt -- Politics and government -- 640-1882" - ], - "publisherLiteral": [ - "Maktabat al-Anjlū al-Miṣrīyah," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." - ], - "shelfMark": [ - "*OFP 82-1931" - ], - "creatorLiteral": [ - "Mājid, ʻAbd al-Munʻim." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "73960873" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10003671" - }, - { - "type": "bf:Lccn", - "value": "73960873" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304029" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203663" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636119319155, - "publicationStatement": [ - "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" - ], - "identifier": [ - "urn:bnum:10003671", - "urn:lccn:73960873", - "urn:undefined:NNSZ00304029", - "urn:undefined:(WaOLN)nyp0203663" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Egypt -- Politics and government -- 640-1882." - ], - "titleDisplay": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." - ], - "uri": "b10003671", - "lccClassification": [ - "JQ3824 .M34 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Institutions et cérémonial des Fatimides en Égypte." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003671" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001937121" - ], - "physicalLocation": [ - "*OFP 82-1931" - ], - "shelfMark_sort": "a*OFP 82-001931", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002566", - "shelfMark": [ - "*OFP 82-1931" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "bf:Barcode", - "value": "33433001937121" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001937121" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003719", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 2 & 4: pariṣkarta Puripanda.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Telugu literature", - "Telugu literature -- History and criticism" - ], - "publisherLiteral": [ - "Āndhrapradēś Sāhitya Akāḍami" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." - ], - "shelfMark": [ - "*OLC 83-35" - ], - "creatorLiteral": [ - "Subrahmanyam, G. V., 1935-" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "71912553" - ], - "contributorLiteral": [ - "Appalaswamy, Puripanda, 1904-", - "Āndhra Pradēśa Sāhitya Akāḍami." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35" - }, - { - "type": "nypl:Bnumber", - "value": "10003719" - }, - { - "type": "bf:Lccn", - "value": "71912553" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304078" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203711" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132209400, - "publicationStatement": [ - "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" - ], - "identifier": [ - "urn:bnum:10003719", - "urn:lccn:71912553", - "urn:undefined:NNSZ00304078", - "urn:undefined:(WaOLN)nyp0203711" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Telugu literature -- History and criticism." - ], - "titleDisplay": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." - ], - "uri": "b10003719", - "lccClassification": [ - "PL4780.05 S79" - ], - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Haidrābādu," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003719" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197476" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002605", - "shelfMark": [ - "*OLC 83-35 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433011197476" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433011197476" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197468" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002604", - "shelfMark": [ - "*OLC 83-35 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433011197468" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433011197468" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197450" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002603", - "shelfMark": [ - "*OLC 83-35 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433011197450" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433011197450" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197443" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002602", - "shelfMark": [ - "*OLC 83-35 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433011197443" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433011197443" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197435" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002601", - "shelfMark": [ - "*OLC 83-35 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433011197435" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433011197435" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003958", - "_score": null, - "_source": { - "extent": [ - "39, 18, 83, 3 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Original Version", - "label": "Reprint of the 1910 ? ed.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Logic", - "Logic -- Early works to 1800" - ], - "publisherLiteral": [ - "Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1910" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn," - ], - "shelfMark": [ - "*OGL 83-2455" - ], - "creatorLiteral": [ - "Avicenna, 980-1037." - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "73960850" - ], - "contributorLiteral": [ - "Avicenna, 980-1037." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGL 83-2455" - }, - { - "type": "nypl:Bnumber", - "value": "10003958" - }, - { - "type": "bf:Lccn", - "value": "73960850" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304319" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203950" - } - ], - "dateEndYear": [ - 1910 - ], - "updatedAt": 1636072413178, - "publicationStatement": [ - "Qum : Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī, 1405 [1984 or 1985]" - ], - "identifier": [ - "urn:bnum:10003958", - "urn:lccn:73960850", - "urn:undefined:NNSZ00304319", - "urn:undefined:(WaOLN)nyp0203950" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Logic -- Early works to 1800." - ], - "titleDisplay": [ - "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn, taṣnīf Abī ʻAlī ibn Sīnā." - ], - "uri": "b10003958", - "lccClassification": [ - "B751 .M4 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Qum :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10003958" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058069919" - ], - "physicalLocation": [ - "*OGL 83-2455" - ], - "shelfMark_sort": "a*OGL 83-002455", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858216", - "shelfMark": [ - "*OGL 83-2455" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGL 83-2455" - }, - { - "type": "bf:Barcode", - "value": "33433058069919" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058069919" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004373", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994" - ], - "publisherLiteral": [ - "Karnāṭaka Sahakārī Prakāśana Mandira" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu." - ], - "shelfMark": [ - "*OLA 83-3417" - ], - "creatorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902119" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417" - }, - { - "type": "nypl:Bnumber", - "value": "10004373" - }, - { - "type": "bf:Lccn", - "value": "72902119" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304738" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204365" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636109940889, - "publicationStatement": [ - "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" - ], - "identifier": [ - "urn:bnum:10004373", - "urn:lccn:72902119", - "urn:undefined:NNSZ00304738", - "urn:undefined:(WaOLN)nyp0204365" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994." - ], - "titleDisplay": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." - ], - "uri": "b10004373", - "lccClassification": [ - "PL4659.P797 S7934" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004373" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003188", - "shelfMark": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417 Library has: Vol. 1, 3." - }, - { - "type": "bf:Barcode", - "value": "33433001707623" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001707623" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057523718" - ], - "physicalLocation": [ - "*OLA 83-341" - ], - "shelfMark_sort": "a*OLA 83-341 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858227", - "shelfMark": [ - "*OLA 83-341 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-341 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057523718" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057523718" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004788", - "_score": null, - "_source": { - "extent": [ - "277 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Plon" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Le château du soleil couchant : roman" - ], - "shelfMark": [ - "JFE 84-3450" - ], - "creatorLiteral": [ - "Grey, Marina." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "La saga de l'exil / Marina Grey ; [3]", - "Grey, Marina. Saga de l'exil ; \\[3]" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 84-3450" - }, - { - "type": "nypl:Bnumber", - "value": "10004788" - }, - { - "type": "bf:Isbn", - "value": "2259011187 :" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405900" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204778" - } - ], - "updatedAt": 1652324535423, - "publicationStatement": [ - "Paris : Plon, 1984." - ], - "identifier": [ - "urn:bnum:10004788", - "urn:isbn:2259011187 :", - "urn:undefined:NNSZ00405900", - "urn:undefined:(WaOLN)nyp0204778" - ], - "idIsbn": [ - "2259011187 " - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Le château du soleil couchant : roman / Marina Grey." - ], - "uri": "b10004788", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "2259011187" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10004788" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858280", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 84-3450" - ], - "identifierV2": [ - { - "value": "JFE 84-3450", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113944" - } - ], - "physicalLocation": [ - "JFE 84-3450" - ], - "identifier": [ - "urn:barcode:33433046113944" - ], - "idBarcode": [ - "33433046113944" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJFE 84-003450" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004816", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Martins Livreiro-Editor," - ], - "language": [ - { - "id": "lang:por", - "label": "Portuguese" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A outra face de J. Simões Lopes Neto" - ], - "shelfMark": [ - "JFK 84-291" - ], - "creatorLiteral": [ - "Lopes Neto, J. Simões (João Simões), 1865-1916." - ], - "createdString": [ - "1983" - ], - "idLccn": [ - "84227211" - ], - "contributorLiteral": [ - "Moreira, Angelo Pires." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291" - }, - { - "type": "nypl:Bnumber", - "value": "10004816" - }, - { - "type": "bf:Lccn", - "value": "84227211" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204806" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636069640817, - "publicationStatement": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" - ], - "identifier": [ - "urn:bnum:10004816", - "urn:lccn:84227211", - "urn:undefined:(WaOLN)nyp0204806" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." - ], - "uri": "b10004816", - "lccClassification": [ - "PQ9697.L7223 A6 1983" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004816" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003418559" - ], - "physicalLocation": [ - "JFK 84-291" - ], - "shelfMark_sort": "aJFK 84-291 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003383", - "shelfMark": [ - "JFK 84-291 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433003418559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433003418559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004947", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Geografi︠i︡a.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 170.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1926 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-221 no. 8" - ], - "creatorLiteral": [ - "Räshad, Gafyr." - ], - "createdString": [ - "1926" - ], - "dateStartYear": [ - 1926 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-221 no. 8" - }, - { - "type": "nypl:Bnumber", - "value": "10004947" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406058" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204937" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403668, - "publicationStatement": [ - "Baqï : Azärnäshr, 1926-" - ], - "identifier": [ - "urn:bnum:10004947", - "urn:undefined:NNSZ00406058", - "urn:undefined:(WaOLN)nyp0204937" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1926" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Gafyr Räshad." - ], - "uri": "b10004947", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Geografi︠i︡a." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10004947" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105673499" - ], - "physicalLocation": [ - "*ZO-221" - ], - "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30081242", - "shelfMark": [ - "*ZO-221 11 Azerbaijani monographs" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005127", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 151.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1928 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-216 no. 15" - ], - "creatorLiteral": [ - "Ivanov, G." - ], - "createdString": [ - "1928" - ], - "dateStartYear": [ - 1928 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-216 no. 15" - }, - { - "type": "nypl:Bnumber", - "value": "10005127" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406243" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205116" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403606, - "publicationStatement": [ - "Baqï : Azärnäshr, 1928-" - ], - "identifier": [ - "urn:bnum:10005127", - "urn:undefined:NNSZ00406243", - "urn:undefined:(WaOLN)nyp0205116" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1928" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." - ], - "uri": "b10005127", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Nachalʹnyĭ kurs geografii." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005211", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Khaos.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 586.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1929 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Xaos [microform]" - ], - "shelfMark": [ - "*ZO-220 no. 9" - ], - "creatorLiteral": [ - "Shirvanzade, 1858-1935." - ], - "createdString": [ - "1929" - ], - "dateStartYear": [ - 1929 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10005211" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406328" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205200" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636144501921, - "publicationStatement": [ - "Bagï : Azärnäshr, 1929" - ], - "identifier": [ - "urn:bnum:10005211", - "urn:undefined:NNSZ00406328", - "urn:undefined:(WaOLN)nyp0205200" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1929" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts." - ], - "titleDisplay": [ - "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." - ], - "uri": "b10005211", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bagï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Khaos." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005211" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105674059" - ], - "physicalLocation": [ - "*ZO-220" - ], - "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30087469", - "shelfMark": [ - "*ZO-220 collection of 10 titles (monographs)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 collection of 10 titles (monographs)" - }, - { - "type": "bf:Barcode", - "value": "33433105674059" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "collection of 10 titles (monographs)" - ], - "idBarcode": [ - "33433105674059" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005860", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Swahili.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Swahili language", - "Swahili language -- Texts" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:swa", - "label": "Swahili" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "shelfMark": [ - "Sc Ser.-N .Z288" - ], - "creatorLiteral": [ - "Zanzibar." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-N .Z288" - }, - { - "type": "nypl:Bnumber", - "value": "10005860" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205850" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636116169694, - "publicationStatement": [ - "[Zanzibar : s.n., 1980- ]" - ], - "identifier": [ - "urn:bnum:10005860", - "urn:undefined:NNSZ00507074", - "urn:undefined:(WaOLN)nyp0205850" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Swahili language -- Texts." - ], - "titleDisplay": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "uri": "b10005860", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Zanzibar :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Kitabu cha 1-9." - ], - "dimensions": [ - "13-31 cm." - ] - }, - "sort": [ - "b10005860" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942241", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-N .Z288 Kituba cha 1-9" - ], - "identifierV2": [ - { - "value": "Sc Ser.-N .Z288 Kituba cha 1-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030859007" - } - ], - "physicalLocation": [ - "Sc Ser.-N .Z288" - ], - "enumerationChronology": [ - "Kituba cha 1-9" - ], - "identifier": [ - "urn:barcode:33433030859007" - ], - "idBarcode": [ - "33433030859007" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005862", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Editor: Gerald A. McWorter.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Study and teaching", - "African Americans -- Study and teaching -- Congresses", - "Black people", - "Black people -- Study and teaching", - "Black people -- Study and teaching -- Congresses" - ], - "publisherLiteral": [ - "Afro-American Studies and Research Program, University of Illinois," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Proceedings" - ], - "shelfMark": [ - "Sc Ser.-M .N3674" - ], - "creatorLiteral": [ - "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" - ], - "createdString": [ - "1983" - ], - "contributorLiteral": [ - "McWorter, Gerald A." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .N3674" - }, - { - "type": "nypl:Bnumber", - "value": "10005862" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507076" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205852" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144093", - "shelfMark": [ - "Sc Ser.-M .N3674" - ] - } - ], - "updatedAt": 1643270732538, - "publicationStatement": [ - "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" - ], - "identifier": [ - "urn:bnum:10005862", - "urn:undefined:NNSZ00507076", - "urn:undefined:(WaOLN)nyp0205852" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Study and teaching -- Congresses.", - "Black people -- Study and teaching -- Congresses." - ], - "titleDisplay": [ - "Proceedings / National Council for Black Studies, 6th annual national conference." - ], - "uri": "b10005862", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Urbana, Ill. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005862" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i17447316", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 3-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219805" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 3-5" - ], - "identifier": [ - "urn:barcode:33433072219805" - ], - "idBarcode": [ - "33433072219805" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000003-5" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746590", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219797" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 1-2" - ], - "identifier": [ - "urn:barcode:33433072219797" - ], - "idBarcode": [ - "33433072219797" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000001-2" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005870", - "_score": null, - "_source": { - "extent": [ - "71 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"D'après le livre et le montage audiovisual 'L'Evolution de l'amour' por D. Sonet, légèrement adapté avec l'aimable autorisation de l'auteur.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sex instruction", - "Sex instruction -- Haiti", - "Sonet, D" - ], - "publisherLiteral": [ - "Action familiale d'Haïti," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A quel age peut-on aimer? : pour une éducation à l'amour responsable" - ], - "shelfMark": [ - "Sc D 84-595" - ], - "createdString": [ - "1980" - ], - "contributorLiteral": [ - "Action familiale d'Haïti." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-595" - }, - { - "type": "nypl:Bnumber", - "value": "10005870" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507084" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205860" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636069688379, - "publicationStatement": [ - "Port-au-Prince : Action familiale d'Haïti, [198-?]" - ], - "identifier": [ - "urn:bnum:10005870", - "urn:undefined:NNSZ00507084", - "urn:undefined:(WaOLN)nyp0205860" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sex instruction -- Haiti.", - "Sonet, D." - ], - "titleDisplay": [ - "A quel age peut-on aimer? : pour une éducation à l'amour responsable / Action familiale d'Haïti." - ], - "uri": "b10005870", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Port-au-Prince :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10005870" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900461", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-595" - ], - "identifierV2": [ - { - "value": "Sc D 84-595", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036649329" - } - ], - "physicalLocation": [ - "Sc D 84-595" - ], - "identifier": [ - "urn:barcode:33433036649329" - ], - "idBarcode": [ - "33433036649329" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000595" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005876", - "_score": null, - "_source": { - "extent": [ - "xxvii, 751 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: Unesco International Scientific Committee for the Drafting of a General History of Africa.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 692-733.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa", - "Africa -- History", - "Africa -- History -- To 1884" - ], - "publisherLiteral": [ - "Heinemann ; University of California Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Africa from the twelfth to the sixteenth century" - ], - "shelfMark": [ - "Sc E 84-288" - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "84256508 //r86" - ], - "seriesStatement": [ - "General history of Africa ; 4" - ], - "contributorLiteral": [ - "Niane, Djibril Tamsir.", - "Unesco. International Scientific Committee for the Drafting of a General History of Africa." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc E 84-288" - }, - { - "type": "nypl:Bnumber", - "value": "10005876" - }, - { - "type": "bf:Isbn", - "value": "0435948105" - }, - { - "type": "bf:Isbn", - "value": "0520039157 (University of California Press)" - }, - { - "type": "bf:Lccn", - "value": "84256508 //r86" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205866" - } - ], - "updatedAt": 1652323261637, - "publicationStatement": [ - "London : Heinemann ; Berkeley, Calif. : University of California Press, 1984." - ], - "identifier": [ - "urn:bnum:10005876", - "urn:isbn:0435948105", - "urn:isbn:0520039157 (University of California Press)", - "urn:lccn:84256508 //r86", - "urn:undefined:(WaOLN)nyp0205866" - ], - "idIsbn": [ - "0435948105", - "0520039157 (University of California Press)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa -- History -- To 1884." - ], - "titleDisplay": [ - "Africa from the twelfth to the sixteenth century / editor, D.T. Niane." - ], - "uri": "b10005876", - "lccClassification": [ - "DT20 .G45 1981 vol. 4 DT25" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London : Berkeley, Calif." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0435948105", - "0520039157" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10005876" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10003888", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc E 84-288" - ], - "identifierV2": [ - { - "value": "Sc E 84-288", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433021813997" - } - ], - "physicalLocation": [ - "Sc E 84-288" - ], - "identifier": [ - "urn:barcode:33433021813997" - ], - "idBarcode": [ - "33433021813997" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc E 84-000288" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10003889", - "status": [ - { - "id": "status:m", - "label": "Missing" - } - ], - "status_packed": [ - "status:m||Missing" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "*R-BK 90-2407" - ], - "identifierV2": [ - { - "value": "*R-BK 90-2407", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*R-BK 90-2407" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], - "accessMessage_packed": [ - "accessMessage:-||No restrictions" - ], - "shelfMark_sort": "a*R-BK 90-002407" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005898", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Creole dialects, French", - "Creole dialects, French -- Haiti", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" - ], - "publisherLiteral": [ - "I.L.A. de Port-au-Prince," - ], - "language": [ - { - "id": "lang:crp", - "label": "Creoles and Pidgins (Other)" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Leson kreyòl pou etranje ki pale franse \\" - ], - "shelfMark": [ - "Sc Ser.-M .M468" - ], - "creatorLiteral": [ - "Mirville, Ernst." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Collection Coucoville", - "Siwolin; \\t.2" - ], - "contributorLiteral": [ - "Institut de linguistique appliquée de Port-au-Prince." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .M468" - }, - { - "type": "nypl:Bnumber", - "value": "10005898" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507113" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205888" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144290", - "shelfMark": [ - "Sc Ser.-M .M468" - ] - } - ], - "updatedAt": 1636113236627, - "publicationStatement": [ - "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" - ], - "identifier": [ - "urn:bnum:10005898", - "urn:undefined:NNSZ00507113", - "urn:undefined:(WaOLN)nyp0205888" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." - ], - "titleDisplay": [ - "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." - ], - "uri": "b10005898", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Port-au-Prince :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005898" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900486", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .M468 t. 2, ptie 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .M468 t. 2, ptie 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017863220" - } - ], - "physicalLocation": [ - "Sc Ser.-M .M468" - ], - "enumerationChronology": [ - "t. 2, ptie 1" - ], - "identifier": [ - "urn:barcode:33433017863220" - ], - "idBarcode": [ - "33433017863220" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005902", - "_score": null, - "_source": { - "extent": [ - "76 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs, English", - "Sacred songs, English -- Caribbean Area", - "Sacred songs, English -- Caribbean Area -- Texts", - "Sacred songs, English -- Jamaica", - "Sacred songs, English -- Jamaica -- Texts" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Modern Jamaican-Caribbean religious folk music." - ], - "shelfMark": [ - "Sc D 84-602" - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-602" - }, - { - "type": "nypl:Bnumber", - "value": "10005902" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507117" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205892" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636116687148, - "publicationStatement": [ - "[S.l. : s.n., 19--]" - ], - "identifier": [ - "urn:bnum:10005902", - "urn:undefined:NNSZ00507117", - "urn:undefined:(WaOLN)nyp0205892" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs, English -- Caribbean Area -- Texts.", - "Sacred songs, English -- Jamaica -- Texts." - ], - "titleDisplay": [ - "Modern Jamaican-Caribbean religious folk music." - ], - "uri": "b10005902", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10005902" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900490", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-602" - ], - "identifierV2": [ - { - "value": "Sc D 84-602", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058825831" - } - ], - "physicalLocation": [ - "Sc D 84-602" - ], - "identifier": [ - "urn:barcode:33433058825831" - ], - "idBarcode": [ - "33433058825831" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000602" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005905", - "_score": null, - "_source": { - "extent": [ - "52 p. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\" - ], - "shelfMark": [ - "Sc C 85-2" - ], - "creatorLiteral": [ - "Passavant, Camille." - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc C 85-2" - }, - { - "type": "nypl:Bnumber", - "value": "10005905" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507120" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205895" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636132396392, - "publicationStatement": [ - "[Fort-de-France? Martinique : s.n., 19--] 52" - ], - "identifier": [ - "urn:bnum:10005905", - "urn:undefined:NNSZ00507120", - "urn:undefined:(WaOLN)nyp0205895" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\ Camille Passavant." - ], - "uri": "b10005905", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Fort-de-France? Martinique :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 x 21 cm." - ] - }, - "sort": [ - "b10005905" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900493", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc C 85-2" - ], - "identifierV2": [ - { - "value": "Sc C 85-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036604563" - } - ], - "physicalLocation": [ - "Sc C 85-2" - ], - "identifier": [ - "urn:barcode:33433036604563" - ], - "idBarcode": [ - "33433036604563" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc C 85-000002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005907", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Discography: p. 115-122.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- History and criticism" - ], - "publisherLiteral": [ - "Producciones Don Pedro," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "En torno al jazz" - ], - "shelfMark": [ - "Sc Ser.-L .V354" - ], - "creatorLiteral": [ - "Vélez, Ana." - ], - "createdString": [ - "1978" - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-L .V354" - }, - { - "type": "nypl:Bnumber", - "value": "10005907" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507122" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205897" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636093384929, - "publicationStatement": [ - "San Juan, P.R. : Producciones Don Pedro, 1978-" - ], - "identifier": [ - "urn:bnum:10005907", - "urn:undefined:NNSZ00507122", - "urn:undefined:(WaOLN)nyp0205897" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- History and criticism." - ], - "titleDisplay": [ - "En torno al jazz / Ana Vélez." - ], - "uri": "b10005907", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "San Juan, P.R. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10005907" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900496", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017895651" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433017895651" - ], - "idBarcode": [ - "33433017895651" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900495", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030890481" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 1" - ], - "identifier": [ - "urn:barcode:33433030890481" - ], - "idBarcode": [ - "33433030890481" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005910", - "_score": null, - "_source": { - "extent": [ - "xvi, 99 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 99.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Universities and colleges", - "Universities and colleges -- Africa", - "Universities and colleges -- Zambia" - ], - "publisherLiteral": [ - "Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The African university : issues and perspectives : speeches" - ], - "shelfMark": [ - "Sc D 84-502" - ], - "creatorLiteral": [ - "Goma, L. K. H." - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "84980558" - ], - "seriesStatement": [ - "Zambian papers ; no. 14" - ], - "contributorLiteral": [ - "Tembo, L. P.", - "University of Zambia. Institute for African Studies." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-502" - }, - { - "type": "nypl:Bnumber", - "value": "10005910" - }, - { - "type": "bf:Lccn", - "value": "84980558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205900" - } - ], - "updatedAt": 1636133189056, - "publicationStatement": [ - "Lusaka, Zambia : Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia, 1984." - ], - "identifier": [ - "urn:bnum:10005910", - "urn:lccn:84980558", - "urn:undefined:(WaOLN)nyp0205900" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Universities and colleges -- Africa.", - "Universities and colleges -- Zambia." - ], - "titleDisplay": [ - "The African university : issues and perspectives : speeches / by L.H.K. [i.e. L.K.H.] Goma ; selected and edited by L.P. Tembo." - ], - "uri": "b10005910", - "lccClassification": [ - "DT963.A3 Z3 no. 14 LA1503" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Lusaka, Zambia :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10005910" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433021791029" - ], - "physicalLocation": [ - "Sc D 84-502" - ], - "shelfMark_sort": "aSc D 84-000502", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003896", - "shelfMark": [ - "Sc D 84-502" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-502" - }, - { - "type": "bf:Barcode", - "value": "33433021791029" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433021791029" - ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003630815" - ], - "physicalLocation": [ - "JFK 86-224" - ], - "shelfMark_sort": "aJFK 86-224 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003897", - "shelfMark": [ - "JFK 86-224 v. 14" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 86-224 v. 14" - }, - { - "type": "bf:Barcode", - "value": "33433003630815" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 14" - ], - "idBarcode": [ - "33433003630815" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006007", - "_score": null, - "_source": { - "extent": [ - "2 microfilm reels ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes biographical notes, scope and contents note and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm of Mss.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington, Fredi, 1903-1994", - "African American actresses", - "African American actresses -- Correspondence", - "African American women journalists", - "African American women journalists -- Correspondence", - "African Americans in the performing arts", - "African American actors", - "African American journalists" - ], - "publisherLiteral": [ - "Amistad Research Center" - ], - "description": [ - "Contains approximately one hundred pieces of correspondence, news clippings containing reviews of productions in which Fredi Washington appeared, and Washington's columns for The People's voice. Other groups in the collection are theatre programs, scripts, photographs and documentation of honors conferred on Fredi Washington." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Fredi Washington papers, 1925-1979." - ], - "shelfMark": [ - "Sc Micro R-4205" - ], - "creatorLiteral": [ - "Washington, Fredi, 1903-1994." - ], - "createdString": [ - "1980" - ], - "contributorLiteral": [ - "Amistad Research Center." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro R-4205" - }, - { - "type": "nypl:Bnumber", - "value": "10006007" - }, - { - "type": "nypl:Oclc", - "value": "11780064" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11780064" - } - ], - "idOclc": [ - "11780064" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1651087265505, - "publicationStatement": [ - "New Orleans, La. : Amistad Research Center, [198-?]" - ], - "identifier": [ - "urn:bnum:10006007", - "urn:oclc:11780064", - "urn:undefined:(OCoLC)11780064" - ], - "genreForm": [ - "Personal correspondence." - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington, Fredi, 1903-1994.", - "African American actresses -- Correspondence.", - "African American women journalists -- Correspondence.", - "African Americans in the performing arts.", - "African American actors.", - "African American journalists." - ], - "titleDisplay": [ - "Fredi Washington papers, 1925-1979." - ], - "uri": "b10006007", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New Orleans, La." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 mm" - ] - }, - "sort": [ - "b10006007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900582", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4205 r. 2" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4205 r. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031242500" - } - ], - "physicalLocation": [ - "Sc Micro R-4205" - ], - "enumerationChronology": [ - "r. 2" - ], - "identifier": [ - "urn:barcode:33433031242500" - ], - "idBarcode": [ - "33433031242500" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-4205 r. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900581", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4205 r. 1" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4205 r. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031242492" - } - ], - "physicalLocation": [ - "Sc Micro R-4205" - ], - "enumerationChronology": [ - "r. 1" - ], - "identifier": [ - "urn:barcode:33433031242492" - ], - "idBarcode": [ - "33433031242492" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-4205 r. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006011", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tem language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tem" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Der-Houssikian, Haig." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .T425" - }, - { - "type": "nypl:Bnumber", - "value": "10006011" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507231" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206003" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132578775, - "publicationStatement": [ - "Brattleboro, vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006011", - "urn:undefined:NNSZ00507231", - "urn:undefined:(WaOLN)nyp0206003" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tem language." - ], - "titleDisplay": [ - "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Communication and culture handbook/by Haig Der-Houssikian.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i23169346", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .T425", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076233265" - } - ], - "physicalLocation": [ - "Sc Ser.-M .T425" - ], - "identifier": [ - "urn:barcode:33433076233265" - ], - "idBarcode": [ - "33433076233265" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .T000425" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006012", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kabre language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kabiye" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Experiment in International Living.", - "Jassor, Essogoye.", - "Sedlak, Philip Alan Stephen, 1939-" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc F 84-135" - }, - { - "type": "nypl:Bnumber", - "value": "10006012" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507232" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206004" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108841395, - "publicationStatement": [ - "Brattleboro, Vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006012", - "urn:undefined:NNSZ00507232", - "urn:undefined:(WaOLN)nyp0206004" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kabre language." - ], - "titleDisplay": [ - "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, Vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900585", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "identifierV2": [ - { - "value": "Sc F 84-135", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036872368" - } - ], - "physicalLocation": [ - "Sc F 84-135" - ], - "identifier": [ - "urn:barcode:33433036872368" - ], - "idBarcode": [ - "33433036872368" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 84-000135" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006018", - "_score": null, - "_source": { - "extent": [ - "v. : ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Corrections to volume I\": v. 2, p. 69.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iota Phi Lambda" - ], - "publisherLiteral": [ - "The Sorority," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1959 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A History of Iota Phi Lambda Sorority." - ], - "shelfMark": [ - "Sc Ser.-M .H592" - ], - "createdString": [ - "1959" - ], - "contributorLiteral": [ - "Greene, Ethel K.", - "Sims, Sarah B." - ], - "dateStartYear": [ - 1959 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .H592" - }, - { - "type": "nypl:Bnumber", - "value": "10006018" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507238" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206010" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1142937", - "shelfMark": [ - "Sc Ser.-M .H592" - ] - } - ], - "updatedAt": 1636069378411, - "publicationStatement": [ - "Washington : The Sorority, 1959-" - ], - "identifier": [ - "urn:bnum:10006018", - "urn:undefined:NNSZ00507238", - "urn:undefined:(WaOLN)nyp0206010" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iota Phi Lambda." - ], - "titleDisplay": [ - "A History of Iota Phi Lambda Sorority." - ], - "uri": "b10006018", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Washington :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746595", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061038323" - } - ], - "physicalLocation": [ - "Sc Ser.-M .H592" - ], - "enumerationChronology": [ - "v. 1, 2 (1928-19, 1959-69)" - ], - "identifier": [ - "urn:barcode:33433061038323" - ], - "idBarcode": [ - "33433061038323" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006034", - "_score": null, - "_source": { - "extent": [ - "79 p. : ill., maps ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa", - "Africa -- Portuguese", - "Cão, Diogo, active 15th century", - "Dias, Bartolomeu", - "Gama, Vasco da, 1469-1524", - "Portuguese", - "Portuguese -- India", - "Portuguese -- India -- History" - ], - "publisherLiteral": [ - "Basler Afrika Bibliographien," - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen" - ], - "shelfMark": [ - "Sc D 84-477" - ], - "creatorLiteral": [ - "Kalthammer, Wilhelm." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Beiträge zur Afrikakunde, 0171-1660; 5" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-477" - }, - { - "type": "nypl:Bnumber", - "value": "10006034" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507257" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206027" - } - ], - "updatedAt": 1636088600902, - "publicationStatement": [ - "Basel : Basler Afrika Bibliographien, 1978." - ], - "identifier": [ - "urn:bnum:10006034", - "urn:undefined:NNSZ00507257", - "urn:undefined:(WaOLN)nyp0206027" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa -- Portuguese.", - "Cão, Diogo, active 15th century.", - "Dias, Bartolomeu.", - "Gama, Vasco da, 1469-1524.", - "Portuguese -- India -- History." - ], - "titleDisplay": [ - "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen / Wilhelm Kalthammer." - ], - "uri": "b10006034", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Basel :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900606", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-477" - ], - "identifierV2": [ - { - "value": "Sc D 84-477", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036649683" - } - ], - "physicalLocation": [ - "Sc D 84-477" - ], - "identifier": [ - "urn:barcode:33433036649683" - ], - "idBarcode": [ - "33433036649683" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000477" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006043", - "_score": null, - "_source": { - "extent": [ - "205 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa, Sub-Saharan", - "Africa, Sub-Saharan -- Relations", - "Africa, Sub-Saharan -- Relations -- Arab countries", - "Arab countries", - "Arab countries -- Relations", - "Arab countries -- Relations -- Africa, Sub-Saharan" - ], - "publisherLiteral": [ - "Unesco," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." - ], - "shelfMark": [ - "Sc E 84-236" - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "General history of Africa: studies and documents; 7" - ], - "contributorLiteral": [ - "Unesco." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc E 84-236" - }, - { - "type": "nypl:Bnumber", - "value": "10006043" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206036" - } - ], - "updatedAt": 1636103134727, - "publicationStatement": [ - "Paris : Unesco, 1984." - ], - "identifier": [ - "urn:bnum:10006043", - "urn:undefined:(WaOLN)nyp0206036" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa, Sub-Saharan -- Relations -- Arab countries.", - "Arab countries -- Relations -- Africa, Sub-Saharan." - ], - "titleDisplay": [ - "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." - ], - "uri": "b10006043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10006043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900614", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc E 84-236" - ], - "identifierV2": [ - { - "value": "Sc E 84-236", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036807315" - } - ], - "physicalLocation": [ - "Sc E 84-236" - ], - "identifier": [ - "urn:barcode:33433036807315" - ], - "idBarcode": [ - "33433036807315" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc E 84-000236" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006159", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Civil rights", - "Civil rights", - "Civil rights -- United States", - "Violence", - "Violence -- United States" - ], - "publisherLiteral": [ - "American Foundation for Negro Affairs," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Law and disorder [microform] : a research position paper" - ], - "shelfMark": [ - "Sc Micro R-4202, no. 16" - ], - "creatorLiteral": [ - "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." - ], - "createdString": [ - "1970" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro R-4202, no. 16" - }, - { - "type": "nypl:Bnumber", - "value": "10006159" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507384" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206150" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636111916018, - "publicationStatement": [ - "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" - ], - "identifier": [ - "urn:bnum:10006159", - "urn:undefined:NNSZ00507384", - "urn:undefined:(WaOLN)nyp0206150" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Civil rights.", - "Civil rights -- United States.", - "Violence -- United States." - ], - "titleDisplay": [ - "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." - ], - "uri": "b10006159", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Philadelphia, Pa. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 x 28 cm." - ] - }, - "sort": [ - "b10006159" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i24023455", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4202" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4202", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059035760" - } - ], - "physicalLocation": [ - "Sc Micro R-4202" - ], - "identifier": [ - "urn:barcode:33433059035760" - ], - "idBarcode": [ - "33433059035760" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-004202" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006344", - "_score": null, - "_source": { - "extent": [ - "11 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Black people", - "Black people -- Caribbean Area", - "Black people -- Caribbean Area -- Social conditions", - "Middle class", - "Middle class -- Caribbean Area" - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1999" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The making of a middle class" - ], - "shelfMark": [ - "Sc Micro F-10459" - ], - "creatorLiteral": [ - "Franks, W. Stanley." - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro F-10459" - }, - { - "type": "nypl:Bnumber", - "value": "10006344" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206335" - } - ], - "dateEndYear": [ - 1999 - ], - "updatedAt": 1657974959186, - "publicationStatement": [ - "[S.l. : s.n., 19--]" - ], - "identifier": [ - "urn:bnum:10006344", - "urn:undefined:NNSZ00507572", - "urn:undefined:(WaOLN)nyp0206335" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Black people -- Caribbean Area -- Social conditions.", - "Middle class -- Caribbean Area." - ], - "titleDisplay": [ - "The making of a middle class [microform] / by W. S. Franks ; with a foreword by Lee Llewellyn Moore." - ], - "uri": "b10006344", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - "b10006344" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540203", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:26", - "label": "microfiche" - } - ], - "catalogItemType_packed": [ - "catalogItemType:26||microfiche" - ], - "holdingLocation": [ - { - "id": "loc:scff3", - "label": "Schomburg Center - Research & Reference - Desk" - } - ], - "holdingLocation_packed": [ - "loc:scff3||Schomburg Center - Research & Reference - Desk" - ], - "shelfMark": [ - "Sc Micro F-10459" - ], - "identifierV2": [ - { - "value": "Sc Micro F-10459", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058831748" - } - ], - "physicalLocation": [ - "Sc Micro F-10459" - ], - "identifier": [ - "urn:barcode:33433058831748" - ], - "idBarcode": [ - "33433058831748" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro F-010459" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006540", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 issued without edition statement has imprint date 1972.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Germany", - "Germany -- History", - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945", - "World War, 1939-1945 -- Germany" - ], - "publisherLiteral": [ - "Selbstverlag," - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Was geschah nach 1945?" - ], - "shelfMark": [ - "JFK 84-184" - ], - "creatorLiteral": [ - "Roth, Heinz." - ], - "createdString": [ - "1970" - ], - "seriesStatement": [ - "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", - "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184" - }, - { - "type": "nypl:Bnumber", - "value": "10006540" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507771" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206529" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636143161690, - "publicationStatement": [ - "Odenhausen/Lumda : Selbstverlag, [197-?-" - ], - "identifier": [ - "urn:bnum:10006540", - "urn:undefined:NNSZ00507771", - "urn:undefined:(WaOLN)nyp0206529" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945 -- Germany." - ], - "titleDisplay": [ - "Was geschah nach 1945? / Heinz Roth." - ], - "uri": "b10006540", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Odenhausen/Lumda :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Was geschah nach neunzehnhundertfünfundvierzig." - ], - "tableOfContents": [ - "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006540" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003841073" - ], - "physicalLocation": [ - "JFK 84-184" - ], - "shelfMark_sort": "aJFK 84-184 v. 000001-2", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003927", - "shelfMark": [ - "JFK 84-184 v. 1-2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184 v. 1-2" - }, - { - "type": "bf:Barcode", - "value": "33433003841073" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1-2" - ], - "idBarcode": [ - "33433003841073" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006622", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Caldas (Colombia : Department)", - "Caldas (Colombia : Department) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Biblioteca de Escritores Caldenses" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Historia del Gran Caldas" - ], - "shelfMark": [ - "HDK 84-1693" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Ríos Tobón, Ricardo de los." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "HDK 84-1693" - }, - { - "type": "nypl:Bnumber", - "value": "10006622" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000779-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507853" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206611" - } - ], - "idOclc": [ - "NYPG005000779-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1676385946742, - "publicationStatement": [ - "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" - ], - "identifier": [ - "urn:bnum:10006622", - "urn:oclc:NYPG005000779-B", - "urn:undefined:NNSZ00507853", - "urn:undefined:(WaOLN)nyp0206611" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Caldas (Colombia : Department) -- History." - ], - "titleDisplay": [ - "Historia del Gran Caldas / Ricardo de los Ríos Tobón." - ], - "uri": "b10006622", - "numItems": [ - 1 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Manizales, Colombia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Origenes y colonización hasta 1850." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006622" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746647", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "HDK 84-1693 v. 1" - ], - "identifierV2": [ - { - "value": "HDK 84-1693 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433097665214" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "HDK 84-1693" - ], - "identifier": [ - "urn:barcode:33433097665214" - ], - "idBarcode": [ - "33433097665214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-02-15" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aHDK 84-1693 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006645", - "_score": null, - "_source": { - "extent": [ - "a, 257 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Translation of: Algoritmy upravlen︠i︡a rabotami-manipul︠i︡atorami.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"JPRS 59717.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 245-252.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Photocopy.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Manipulators (Mechanism)", - "Robots, Industrial" - ], - "publisherLiteral": [ - "Joint Publications Research Service," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1973" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Robot-manipulator control algorithms" - ], - "shelfMark": [ - "JSF 83-552" - ], - "creatorLiteral": [ - "Ignatʹev, M. B. (Mikhail Borisovich)" - ], - "createdString": [ - "1984" - ], - "contributorLiteral": [ - "Kulakov, F. M. (Feliks Mikhaĭlovich)", - "Pokrovskiĭ, A. M." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 83-552" - }, - { - "type": "nypl:Bnumber", - "value": "10006645" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206634" - } - ], - "uniformTitle": [ - "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami. English" - ], - "dateEndYear": [ - 1973 - ], - "updatedAt": 1636073144930, - "publicationStatement": [ - "Arlington, Va. : Joint Publications Research Service, 1973." - ], - "identifier": [ - "urn:bnum:10006645", - "urn:undefined:(WaOLN)nyp0206634" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Manipulators (Mechanism)", - "Robots, Industrial." - ], - "titleDisplay": [ - "Robot-manipulator control algorithms / by M.B. Ignatʹyev, F.M. Kulakov, A.M. Pokrovskiy." - ], - "uri": "b10006645", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Arlington, Va. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami." - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10006645" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433037693748" - ], - "physicalLocation": [ - "JSF 83-552" - ], - "shelfMark_sort": "aJSF 83-000552", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12540383", - "shelfMark": [ - "JSF 83-552" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 83-552" - }, - { - "type": "bf:Barcode", - "value": "33433037693748" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433037693748" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006687", - "_score": null, - "_source": { - "extent": [ - "v. : ill., ports, ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "publisherLiteral": [ - "Bókaútgáfan Skjaldborg," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-217" - ], - "creatorLiteral": [ - "Eiður Guðmundsson, 1888-1984." - ], - "createdString": [ - "1982" - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217" - }, - { - "type": "nypl:Bnumber", - "value": "10006687" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507920" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206676" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Akureyri : Bókaútgáfan Skjaldborg, 1982-" - ], - "identifier": [ - "urn:bnum:10006687", - "urn:undefined:NNSZ00507920", - "urn:undefined:(WaOLN)nyp0206676" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "titleDisplay": [ - "Ritsafn / Eidur Gudmundsson Púfnav;ollum." - ], - "uri": "b10006687", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Akureyri :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10006687" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069567" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003946", - "shelfMark": [ - "JFL 84-217 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069567" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069567" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069559" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003945", - "shelfMark": [ - "JFL 84-217 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006688", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iceland", - "Iceland -- Economic conditions", - "Iceland -- History", - "Iceland -- Social conditions" - ], - "publisherLiteral": [ - "Mál og Menning," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-216" - ], - "creatorLiteral": [ - "Sverrir Kristjánsson, 1908-" - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216" - }, - { - "type": "nypl:Bnumber", - "value": "10006688" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507921" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206677" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Reykjavík : Mál og Menning, 1981-" - ], - "identifier": [ - "urn:bnum:10006688", - "urn:undefined:NNSZ00507921", - "urn:undefined:(WaOLN)nyp0206677" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iceland -- Economic conditions.", - "Iceland -- History.", - "Iceland -- Social conditions." - ], - "titleDisplay": [ - "Ritsafn / Sverrir Kristjánsson." - ], - "uri": "b10006688", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Reykjavík :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10006688" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069542" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003948", - "shelfMark": [ - "JFL 84-216 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069542" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069542" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069534" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003947", - "shelfMark": [ - "JFL 84-216 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069534" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069534" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006699", - "_score": null, - "_source": { - "extent": [ - "483 p. : ill., ports ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 476-483.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dominican literature", - "Dominican literature -- Manuals, handbooks, etc", - "Latin American literature", - "Latin American literature -- Study and teaching", - "Latin American literature -- Study and teaching -- Handbooks, manuals, etc" - ], - "publisherLiteral": [ - "s.n.]," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media" - ], - "shelfMark": [ - "JFF 84-820" - ], - "createdString": [ - "1984" - ], - "contributorLiteral": [ - "Gómez de Michel, Fiume." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 84-820" - }, - { - "type": "nypl:Bnumber", - "value": "10006699" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507932" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206688" - } - ], - "updatedAt": 1636114816670, - "publicationStatement": [ - "[Santo Domingo, R. D. : s.n.], 1984" - ], - "identifier": [ - "urn:bnum:10006699", - "urn:undefined:NNSZ00507932", - "urn:undefined:(WaOLN)nyp0206688" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dominican literature -- Manuals, handbooks, etc.", - "Latin American literature -- Study and teaching -- Handbooks, manuals, etc." - ], - "titleDisplay": [ - "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media / [compilación] Fiumé Gómez de Michel." - ], - "uri": "b10006699", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Santo Domingo, R. D. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10006699" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784848", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 84-820" - ], - "identifierV2": [ - { - "value": "JFF 84-820", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050352214" - } - ], - "physicalLocation": [ - "JFF 84-820" - ], - "identifier": [ - "urn:barcode:33433050352214" - ], - "idBarcode": [ - "33433050352214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJFF 84-000820" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-6420fa3c29a11c684c79018e357e753c.json b/test/fixtures/query-6420fa3c29a11c684c79018e357e753c.json deleted file mode 100644 index fcfbc07f..00000000 --- a/test/fixtures/query-6420fa3c29a11c684c79018e357e753c.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "took": 14, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } -} \ No newline at end of file diff --git a/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json b/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json index 4fdb1e68..fd16616c 100644 --- a/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json +++ b/test/fixtures/query-69b0dc828a8d3231402658b40516e83c.json @@ -1,265 +1,313 @@ { - "took": 4, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.956224, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10022950", - "_score": 14.956224, - "_source": { - "extent": [ - "224 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Christianity and other religions", - "Christianity and other religions -- Judaism" - ], - "publisherLiteral": [ - "[D. Kirshenbaum]," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Religion--love or hate?" - ], - "shelfMark": [ - "*PGZ 81-1452" - ], - "creatorLiteral": [ - "Kirshenbaum, D. (David), 1902-" - ], - "createdString": [ - "1974" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*PGZ 81-1452" - }, - { - "type": "nypl:Bnumber", - "value": "10022950" + "body": { + "took": 3, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.04615, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10022950", + "_score": 15.04615, + "_source": { + "extent": [ + "224 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Christianity and other religions", + "Christianity and other religions -- Judaism" + ], + "publisherLiteral": [ + "[D. Kirshenbaum]," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Religion--love or hate?" + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "creatorLiteral": [ + "Kirshenbaum, D. (David), 1902-" + ], + "createdString": [ + "1974" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" + }, + { + "type": "nypl:Bnumber", + "value": "10022950" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0023028" + } + ], + "updatedAt": 1636125721057, + "publicationStatement": [ + "New York : [D. Kirshenbaum], 1974." + ], + "identifier": [ + "urn:bnum:10022950", + "urn:undefined:(WaOLN)nyp0023028" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Christianity and other religions -- Judaism." + ], + "titleDisplay": [ + "Religion--love or hate? / by David Kirshenbaum." + ], + "uri": "b10022950", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Love or hate." + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0023028" - } - ], - "updatedAt": 1636125721057, - "publicationStatement": [ - "New York : [D. Kirshenbaum], 1974." - ], - "identifier": [ - "urn:bnum:10022950", - "urn:undefined:(WaOLN)nyp0023028" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433103848853" + ], + "physicalLocation": [ + "*PGZ 81-1452" + ], + "shelfMark_sort": "a*PGZ 81-001452", + "m2CustomerCode": [ + "XH" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14749981", + "shelfMark": [ + "*PGZ 81-1452" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" + }, + { + "type": "bf:Barcode", + "value": "33433103848853" + } + ], + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" + ], + "idBarcode": [ + "33433103848853" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:maf92", + "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" + } + ] + }, + "sort": [ + null + ] + } + ] + } } - ], - "dateString": [ - "1974" - ], - "mediaType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111", + "doc_count": 1 } - ], - "subjectLiteral": [ - "Christianity and other religions -- Judaism." - ], - "titleDisplay": [ - "Religion--love or hate? / by David Kirshenbaum." - ], - "uri": "b10022950", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York :" - ], - "issuance": [ + ] + } + }, + "item_format": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 1, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 1 } - ], - "titleAlt": [ - "Love or hate." - ], - "dimensions": [ - "24 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433103848853" - ], - "physicalLocation": [ - "*PGZ 81-1452" - ], - "shelfMark_sort": "a*PGZ 81-001452", - "m2CustomerCode": [ - "XH" - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14749981", - "shelfMark": [ - "*PGZ 81-1452" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*PGZ 81-1452" - }, - { - "type": "bf:Barcode", - "value": "33433103848853" - } - ], - "holdingLocation_packed": [ - "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" - ], - "idBarcode": [ - "33433103848853" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:maf92", - "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:56 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "3138", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10022950\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 32 }, - "item_format": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 1, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json b/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json index 0727b18c..0653185b 100644 --- a/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json +++ b/test/fixtures/query-6bcf4623953f18ea854a3a9ae2106d25.json @@ -1,13231 +1,12462 @@ { - "took": 1460, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 13.705951, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10833141", - "_score": 13.705951, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Some issues bear also thematic titles.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Vol. 73, no. 1 never published.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Has occasional supplements.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Vol. 90, no. 24 (Aug. 25, 2014).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with issue for Feb. 21, 1925." - ], - "subjectLiteral_exploded": [ - "Literature", - "Literature -- Periodicals", - "Intellectual life", - "Electronic journals", - "New York (N.Y.)", - "New York (N.Y.) -- Intellectual life", - "New York (N.Y.) -- Intellectual life -- Directories", - "New York (State)", - "New York (State) -- New York" - ], - "numItemDatesParsed": [ - 911 - ], - "publisherLiteral": [ - "F-R Pub. Corp.", - "D. Carey", - "Condé Nast Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 917 - ], - "createdYear": [ - 1925 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The New Yorker." - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "numItemVolumesParsed": [ - 847 - ], - "createdString": [ - "1925" - ], - "idLccn": [ - " 28005329" - ], - "idIssn": [ - "0028-792X" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ross, Harold Wallace, 1892-1951", - "Shawn, William", - "Brown, Tina", - "Remnick, David", - "White, Katharine Sergeant Angell", - "White, E. B. (Elwyn Brooks), 1899-1985", - "Irvin, Rea, 1881-1972", - "Angell, Roger" - ], - "dateStartYear": [ - 1925 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DA+ (New Yorker)" - }, - { - "type": "nypl:Bnumber", - "value": "10833141" - }, - { - "type": "bf:Issn", - "value": "0028-792X" - }, - { - "type": "bf:Lccn", - "value": " 28005329" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1760231" - }, - { - "type": "bf:Identifier", - "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" - } - ], - "idOclc": [ - "1760231" - ], - "uniformTitle": [ - "New Yorker (New York, N.Y. : 1925)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "97(2021)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 1 (Feb. 14, 2022)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 2 (Feb. 28, 2022)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 3 (Mar. 7, 2022)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 4 (Mar. 14, 2022)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 5 (Mar. 21, 2022)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 6 (Mar. 28, 2022)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 7 (Apr. 4, 2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 8 (Apr. 11, 2022)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 9 (Apr. 18, 2022)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 10 (Apr. 25, 2022)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 11 (May. 9, 2022)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 12 (May. 16, 2022)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 13 (May. 23, 2022)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 14 (May. 30, 2022)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 15 (Jun. 6, 2022)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 16 (Jun. 13, 2022)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 17 (Jun. 20, 2022)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 18 (Jun. 27, 2022)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 19 (Jul. 4, 2022)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 20 (Jul. 11, 2022)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 21 (Jul. 25, 2022)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 22 (Aug. 1, 2022)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 23 (Aug. 8, 2022)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 24 (Aug. 15, 2022)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 25 (Aug. 22, 2022)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 26 (Aug. 29, 2022)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 27 (Sep. 5, 2022)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 28 (Sep. 12, 2022)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 29 (Sep. 19, 2022)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 30 (Sep. 26, 2022)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 31 (Oct. 3, 2022)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 32 (Oct. 10, 2022)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 33 (Oct. 17, 2022)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 34 (Oct. 24, 2022)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 35 (Oct. 31, 2022)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 36 (Nov. 7, 2022)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 37 (Nov. 14, 2022)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 38 (Nov. 21, 2022)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 39 (Nov. 28, 2022)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 40 (Dec. 5, 2022)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 41 (Dec. 12, 2022)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 98 No. 42 (Dec. 19, 2022)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 43 (Dec. 26, 2022)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 44 (Jan. 2, 2023)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 45 (Jan. 16, 2023)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 47 (Jan. 23, 2023)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 48 (Jan. 30, 2023)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 49 (Feb. 6, 2023)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 01 (Feb. 13, 2023 - Feb. 20, 2023)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 11 (May. 8, 2023)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 12 (May. 15, 2023)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 13 (May. 22, 2023)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 14 (May. 29, 2023)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 23 (Jul. 31, 2023)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "Room 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1144777", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - }, - { - "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)-94(2018/19)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 95 No. 1 (Feb. 18, 2019)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 2 (Mar. 4, 2019)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 3 (Mar. 11, 2019)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 4 (Mar. 18, 2019)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 5 (Mar. 25, 2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 6 (Apr. 1, 2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 7 (Apr. 8, 2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 8 (Apr. 15, 2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 9 (Apr. 22, 2019)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 10 (Apr. 29, 2019)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 11 (May. 6, 2019)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 12 (May. 13, 2019)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 13 (May. 20, 2019)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 14 (May. 27, 2019)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 15 (Jun. 3, 2019)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 16 (Jun. 10, 2019)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 17 (Jun. 24, 2019)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 18 (Jul. 1, 2019)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 19 (Jul. 8, 2019)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 20 (Jul. 22, 2019)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 21 (Jul. 29, 2019)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 22 (Aug. 5, 2019)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 23 (Aug. 19, 2019)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 24 (Aug. 26, 2019)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 25 (Sep. 2, 2019)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 26 (Sep. 9, 2019)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 27 (Sep. 16, 2019)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 28 (Sep. 23, 2019)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 29 (Sep. 30, 2019)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 30 (Oct. 7, 2019)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 31 (Oct. 14, 2019)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 32 (Oct. 21, 2019)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 33 (Oct. 28, 2019)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 34 (Nov. 4, 2019)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 35 (Nov. 11, 2019)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 36 (Nov. 18, 2019)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 37 (Nov. 25, 2019)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 38 (Dec. 2, 2019)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 39 (Dec. 9, 2019)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 40 (Dec. 16, 2019)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 41 (Dec. 23, 2019)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 42 (Dec. 30, 2019)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 43 (Jan. 6, 2020)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 44 (Jan. 13, 2020)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 45 (Jan. 20, 2020)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 46 (Jan. 27, 2020)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 47 (Feb. 3, 2020)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 48 (Feb. 10, 2020)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 1 (Feb. 17, 2020 - Feb. 24, 2020)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 2 (Mar. 2, 2020)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 3 (Mar. 9, 2020)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 4 (Mar. 16, 2020)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 5 (Mar. 23, 2020)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 6 (Mar. 30, 2020)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 7 (Apr. 6, 2020)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 8 (Apr. 13, 2020)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 09 (Apr. 20, 2020)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 10 (Apr. 27, 2020)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 11 (May. 4, 2020)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 12 (May. 11, 2020)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 13 (May. 18, 2020)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 14 (May. 23, 2020)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 15 (Jun. 1, 2020)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 16 (Jun. 8, 2020)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 17 (Jun. 22, 2020)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 18 (Jun. 29, 2020)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 19 (Jul. 6, 2020 - Jul. 13, 2020)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 20 (Jul. 20, 2020)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 21 (Jul. 27, 2020)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 22 (Aug. 3, 2020)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 23 (Aug. 17, 2020)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 24 (Aug. 24, 2020)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 25 (Aug. 31, 2020)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 26 (Sep. 7, 2020)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 27 (Sep. 14, 2020)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 28 (Sep. 21, 2020)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 29 (Sep. 28, 2020)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 30 (Oct. 5, 2020)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 31 (Oct. 12, 2020)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 32 (Oct. 19, 2020)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 33 (Oct. 26, 2020)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 34 (Nov. 2, 2020)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 35 (Nov. 9, 2020)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 36 (Nov. 16, 2020)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 37 (Nov. 23, 2020)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 38 (Nov. 30, 2020)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 39 (Dec. 7, 2020)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 40 (Dec. 14, 2020)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 41 (Dec. 21, 2020)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 42 (Dec. 28, 2020)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 43 (Jan. 4, 2021)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 44 (Jan. 18, 2021)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 45 (Jan. 25, 2021)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 46 (Feb. 1, 2021)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 47 (Feb. 8, 2021)", - "position": "95", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", - "position": "96", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", - "position": "97", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", - "position": "98", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", - "position": "99", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", - "position": "100", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", - "position": "101", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", - "position": "102", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", - "position": "103", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", - "position": "104", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", - "position": "105", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 11 (May. 10, 2021)", - "position": "106", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 12 (May. 17, 2021)", - "position": "107", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 13 (May. 24, 2021)", - "position": "108", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 14 (May. 31, 2021)", - "position": "109", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", - "position": "110", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", - "position": "111", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", - "position": "112", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", - "position": "113", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", - "position": "114", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", - "position": "115", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", - "position": "116", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", - "position": "117", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", - "position": "118", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", - "position": "119", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "ROOM 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1059671", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - } - ], - "updatedAt": 1690905757761, - "publicationStatement": [ - "New York : F-R Pub. Corp., 1925-", - "[New York] : D. Carey", - "[New York] : Condé Nast Publications" - ], - "identifier": [ - "urn:bnum:10833141", - "urn:issn:0028-792X", - "urn:lccn: 28005329", - "urn:oclc:1760231", - "urn:undefined:(OCoLC)1760231", - "urn:undefined:(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" - ], - "genreForm": [ - "Collections.", - "Directories.", - "Periodicals." - ], - "numCheckinCardItems": [ - 213 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Literature -- Periodicals.", - "Intellectual life.", - "Literature.", - "Electronic journals.", - "New York (N.Y.) -- Intellectual life -- Directories.", - "New York (State) -- New York." - ], - "titleDisplay": [ - "The New Yorker." - ], - "uri": "b10833141", - "lccClassification": [ - "AP2 .N6763" - ], - "numItems": [ - 704 - ], - "numAvailable": [ - 789 - ], - "placeOfPublication": [ - "New York", - "[New York]" - ], - "titleAlt": [ - "New Yorker", - "The New Yorker" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28-31 cm" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 704, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 916 - }, - "_score": null, - "_source": { - "uri": "i40269792", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "body": { + "took": 1236, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 13.416573, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 13.416573, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 811 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 816 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 746 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "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" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742404" - } - ], - "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742404" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742404" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2021" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 915 - }, - "_score": null, - "_source": { - "uri": "i40269798", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742420" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (May-July 2020)" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742420" + "status": "To Bind" + } + ], + "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)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742420" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 914 - }, - "_score": null, - "_source": { - "uri": "i40269804", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742438" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742438" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433136742438" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - false + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 96-2020" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 913 - }, - "_score": null, - "_source": { - "uri": "i40269794", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742412" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 96 (Aug-Oct 2020)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433136742412" - ], - "idBarcode": [ - "33433136742412" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)" - }, - "sort": [ - " 96-2020" - ] - }, - { - "_nested": { - "field": "items", - "offset": 912 - }, - "_score": null, - "_source": { - "uri": "i40232403", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033321" - } - ], - "enumerationChronology": [ - "v. 95 (Oct-Nov. 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033321" - ], - "idBarcode": [ - "33433130033321" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 911 - }, - "_score": null, - "_source": { - "uri": "i40232398", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (May-July 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033305" - } - ], - "enumerationChronology": [ - "v. 95 (May-July 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033305" - ], - "idBarcode": [ - "33433130033305" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 910 - }, - "_score": null, - "_source": { - "uri": "i40232353", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033297" - } - ], - "enumerationChronology": [ - "v. 95 (Feb 18-April 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033297" - ], - "idBarcode": [ - "33433130033297" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 909 - }, - "_score": null, - "_source": { - "uri": "i40232406", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033339" - } - ], - "enumerationChronology": [ - "v. 95 (Dec. 2019-Feb. 10, 2020)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033339" - ], - "idBarcode": [ - "33433130033339" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 908 - }, - "_score": null, - "_source": { - "uri": "i40232401", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433130033313" - } - ], - "enumerationChronology": [ - "v. 95 (Aug.-Sept. 2019)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433130033313" - ], - "idBarcode": [ - "33433130033313" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 95, - "lte": 95 - } - ], - "dateRange": [ - { - "gte": "2019", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ - " 95-2019" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)" - }, - "sort": [ - " 95-2019" - ] - }, - { - "_nested": { - "field": "items", - "offset": 907 - }, - "_score": null, - "_source": { - "uri": "i37530724", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128201161" - } - ], - "enumerationChronology": [ - "v. 94 (Oct.-Nov. 2018)" - ], - "physicalLocation": [ "*DA+ (New Yorker)" ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433128201161" - ], - "idBarcode": [ - "33433128201161" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 94, - "lte": 94 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ - " 94-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Oct.-Nov. 2018)" - }, - "sort": [ - " 94-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 906 - }, - "_score": null, - "_source": { - "uri": "i37539307", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 94 (May-June 2018)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 94 (May-June 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128201310" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 94 (May-June 2018)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "recapCustomerCode": [ - "NA" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433128201310" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "idBarcode": [ - "33433128201310" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "requestable": [ - true + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 94, - "lte": 94 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 94-2018" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "bf:Item" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "formatLiteral": [ - "Text" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (May-June 2018)" - }, - "sort": [ - " 94-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 905 - }, - "_score": null, - "_source": { - "uri": "i37539308", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", "shelfMark": [ - "*DA+ (New Yorker) v. 94 (July-Sept. 2018)" + "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 94 (July-Sept. 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128201302" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "v. 94 (July-Sept. 2018)" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "physicalLocation": [ + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ "*DA+ (New Yorker)" ], - "recapCustomerCode": [ - "NA" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "identifier": [ - "urn:barcode:33433128201302" - ], - "idBarcode": [ - "33433128201302" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 94, - "lte": 94 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ + "status": "Expected" + } + ], + "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)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1710006791578, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(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" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 112 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 704, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Aug-Oct 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742412" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742412", + "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. 96 (Aug-Oct 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269794" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (Feb 17-April 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742438" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742438", + "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. 96 (Feb 17-April 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269804" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 96 (May-July 2020)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742420" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742420", + "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. 96 (May-July 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269798" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2020", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 96 (Nov 2020-Feb 8, 2021)" + ], + "enumerationChronology_sort": [ + " 96-2020" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136742404" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136742404", + "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. 96 (Nov 2020-Feb 8, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 96, + "lte": 96 + } + ], + "uri": "i40269792" + }, + "sort": [ + " 96-2020" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Aug.-Sept. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033313" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033313", + "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. 95 (Aug.-Sept. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232401" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2020" + } + ], + "enumerationChronology": [ + "v. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033339" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033339", + "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. 95 (Dec. 2019-Feb. 10, 2020)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232406" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Feb 18-April 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033297" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033297", + "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. 95 (Feb 18-April 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232353" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (May-July 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033305" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033305", + "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. 95 (May-July 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232398" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2019", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 95 (Oct-Nov. 2019)" + ], + "enumerationChronology_sort": [ + " 95-2019" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433130033321" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433130033321", + "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. 95 (Oct-Nov. 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 95, + "lte": 95 + } + ], + "uri": "i40232403" + }, + "sort": [ + " 95-2019" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2019" + } + ], + "enumerationChronology": [ + "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128200973" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "urn:barcode:33433128200973" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200973", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Dec. 3, 2018-Feb. 11, 2019)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37529513" + }, + "sort": [ " 94-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (July-Sept. 2018)" - }, - "sort": [ - " 94-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 904 - }, - "_score": null, - "_source": { - "uri": "i37529511", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128200965" - } - ], - "enumerationChronology": [ - "v. 94 (Feb. 12-Apr. 30, 2018)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433128200965" - ], - "idBarcode": [ - "33433128200965" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 94, - "lte": 94 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128200965" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "urn:barcode:33433128200965" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128200965", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Feb. 12-Apr. 30, 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Feb. 12-Apr. 30, 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37529511" + }, + "sort": [ " 94-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Feb. 12-Apr. 30, 2018)" - }, - "sort": [ - " 94-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 903 - }, - "_score": null, - "_source": { - "uri": "i37529513", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 94 (Dec. 3, 2018-Feb. 11, 2019)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433128200973" - } - ], - "enumerationChronology": [ - "v. 94 (Dec. 3, 2018-Feb. 11, 2019)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433128200973" - ], - "idBarcode": [ - "33433128200973" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 94, - "lte": 94 - } - ], - "dateRange": [ - { - "gte": "2018", - "lte": "2019" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (July-Sept. 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "urn:barcode:33433128201302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (July-Sept. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201302", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (July-Sept. 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (July-Sept. 2018)", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37539308" + }, + "sort": [ " 94-2018" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Dec. 3, 2018-Feb. 11, 2019)" - }, - "sort": [ - " 94-2018" - ] - }, - { - "_nested": { - "field": "items", - "offset": 902 - }, - "_score": null, - "_source": { - "uri": "i36790458", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121911253" - } - ], - "enumerationChronology": [ - "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121911253" - ], - "idBarcode": [ - "33433121911253" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 93, - "lte": 93 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2018" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (May-June 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (May-June 2018)", + "urn:barcode:33433128201310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (May-June 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201310", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (May-June 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (May-June 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37539307" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2018", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 94 (Oct.-Nov. 2018)" + ], + "enumerationChronology_sort": [ + " 94-2018" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433128201161" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "urn:barcode:33433128201161" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433128201161", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 94 (Oct.-Nov. 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000094 (Oct.-Nov. 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 94, + "lte": 94 + } + ], + "uri": "i37530724" + }, + "sort": [ + " 94-2018" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Aug-Oct 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911097" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "urn:barcode:33433121911097" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911097", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Aug-Oct 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790462" + }, + "sort": [ " 93-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Nov. 6, 2017-Feb. 5, 2018)" - }, - "sort": [ - " 93-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 901 - }, - "_score": null, - "_source": { - "uri": "i36790460", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 93 (May-July 2017)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 93 (May-July 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121911105" - } - ], - "enumerationChronology": [ - "v. 93 (May-July 2017)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121911105" - ], - "idBarcode": [ - "33433121911105" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 93, - "lte": 93 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911246" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "urn:barcode:33433121911246" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911246", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Feb. 13-Apr. 24, 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790455" + }, + "sort": [ " 93-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (May-July 2017)" - }, - "sort": [ - " 93-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 900 - }, - "_score": null, - "_source": { - "uri": "i36790455", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121911246" - } - ], - "enumerationChronology": [ - "v. 93 (Feb. 13-Apr. 24, 2017)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121911246" - ], - "idBarcode": [ - "33433121911246" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 93, - "lte": 93 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 93 (May-July 2017)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911105" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (May-July 2017)", + "urn:barcode:33433121911105" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (May-July 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911105", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (May-July 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (May-July 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790460" + }, + "sort": [ " 93-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Feb. 13-Apr. 24, 2017)" - }, - "sort": [ - " 93-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 899 - }, - "_score": null, - "_source": { - "uri": "i36790462", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 93 (Aug-Oct 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121911097" - } - ], - "enumerationChronology": [ - "v. 93 (Aug-Oct 2017)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121911097" - ], - "idBarcode": [ - "33433121911097" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 93, - "lte": 93 - } - ], - "dateRange": [ - { - "gte": "2017", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2017", + "lte": "2018" + } + ], + "enumerationChronology": [ + "v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "enumerationChronology_sort": [ + " 93-2017" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121911253" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "urn:barcode:33433121911253" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121911253", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 93 (Nov. 6, 2017-Feb. 5, 2018)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Nov. 6, 2017-Feb. 5, 2018)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 93, + "lte": 93 + } + ], + "uri": "i36790458" + }, + "sort": [ " 93-2017" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Aug-Oct 2017)" - }, - "sort": [ - " 93-2017" - ] - }, - { - "_nested": { - "field": "items", - "offset": 898 - }, - "_score": null, - "_source": { - "uri": "i36118780", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. " - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119892341" - } - ], - "enumerationChronology": [ - "v. 92 (Oct. -Nov. 2016) Inc. " - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119892341" - ], - "idBarcode": [ - "33433119892341" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2017" + } + ], + "enumerationChronology": [ + "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892333" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "urn:barcode:33433119892333" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Dec. 5, 2016-Feb. 6, 2017)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36118763" + }, + "sort": [ " 92-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Oct. -Nov. 2016) Inc. " - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 897 - }, - "_score": null, - "_source": { - "uri": "i36058799", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 92 (May-June 2016)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (May-June 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119855561" - } - ], - "enumerationChronology": [ - "v. 92 (May-June 2016)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119855561" - ], - "idBarcode": [ - "33433119855561" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Feb. 8-April 25, 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119872103" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "urn:barcode:33433119872103" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872103", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Feb. 8-April 25, 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060543" + }, + "sort": [ " 92-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (May-June 2016)" - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 896 - }, - "_score": null, - "_source": { - "uri": "i36060542", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119872095" - } - ], - "enumerationChronology": [ - "v. 92 (July-Sept. 2016)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433119872095" - ], - "idBarcode": [ - "33433119872095" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 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" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (July-Sept. 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872095" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872095", + "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. 92 (July-Sept. 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36060542" + }, + "sort": [ " 92-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)" - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 895 - }, - "_score": null, - "_source": { - "uri": "i36060543", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (Feb. 8-April 25, 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119872103" - } - ], - "enumerationChronology": [ - "v. 92 (Feb. 8-April 25, 2016)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119872103" - ], - "idBarcode": [ - "33433119872103" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (May-June 2016)" + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119855561" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (May-June 2016)", + "urn:barcode:33433119855561" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (May-June 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855561", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (May-June 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (May-June 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36058799" + }, + "sort": [ " 92-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Feb. 8-April 25, 2016)" - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 894 - }, - "_score": null, - "_source": { - "uri": "i36118763", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 92 (Dec. 5, 2016-Feb. 6, 2017)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119892333" - } - ], - "enumerationChronology": [ - "v. 92 (Dec. 5, 2016-Feb. 6, 2017)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119892333" - ], - "idBarcode": [ - "33433119892333" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 92, - "lte": 92 - } - ], - "dateRange": [ - { - "gte": "2016", - "lte": "2017" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2016", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 92 (Oct. -Nov. 2016) Inc. " + ], + "enumerationChronology_sort": [ + " 92-2016" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892341" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "urn:barcode:33433119892341" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. ", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892341", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 92 (Oct. -Nov. 2016) Inc. " + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Oct. -Nov. 2016) Inc. ", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 92, + "lte": 92 + } + ], + "uri": "i36118780" + }, + "sort": [ " 92-2016" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (Dec. 5, 2016-Feb. 6, 2017)" - }, - "sort": [ - " 92-2016" - ] - }, - { - "_nested": { - "field": "items", - "offset": 893 - }, - "_score": null, - "_source": { - "uri": "i36060538", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119872087" - } - ], - "enumerationChronology": [ - "v. 91 (Sept.-Oct. 2015)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433119872087" - ], - "idBarcode": [ - "33433119872087" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119892317" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "urn:barcode:33433119892317" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", + "type": "bf:ShelfMark" + }, + { + "value": "33433119892317", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. " + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Mar. 23-Aug. 31, 2015) Inc. ", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36118736" + }, + "sort": [ " 91-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)" - }, - "sort": [ - " 91-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 892 - }, - "_score": null, - "_source": { - "uri": "i36058800", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119855579" - } - ], - "enumerationChronology": [ - "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119855579" - ], - "idBarcode": [ - "33433119855579" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2016" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2016" + } + ], + "enumerationChronology": [ + "v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433119855579" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "urn:barcode:33433119855579" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119855579", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 91 (Nov. 2, 2015- Feb. 1, 2016)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Nov. 2, 2015- Feb. 1, 2016)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36058800" + }, + "sort": [ " 91-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Nov. 2, 2015- Feb. 1, 2016)" - }, - "sort": [ - " 91-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 891 - }, - "_score": null, - "_source": { - "uri": "i36118736", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. " - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 91 (Mar. 23-Aug. 31, 2015) Inc. ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433119892317" - } - ], - "enumerationChronology": [ - "v. 91 (Mar. 23-Aug. 31, 2015) Inc. " - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433119892317" - ], - "idBarcode": [ - "33433119892317" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "dateRange": [ - { - "gte": "2015", - "lte": "2015" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2015", + "lte": "2015" + } + ], + "enumerationChronology": [ + "v. 91 (Sept.-Oct. 2015)" + ], + "enumerationChronology_sort": [ + " 91-2015" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433119872087" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "type": "bf:ShelfMark" + }, + { + "value": "33433119872087", + "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. 91 (Sept.-Oct. 2015)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36060538" + }, + "sort": [ " 91-2015" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Mar. 23-Aug. 31, 2015) Inc. " - }, - "sort": [ - " 91-2015" - ] - }, - { - "_nested": { - "field": "items", - "offset": 890 - }, - "_score": null, - "_source": { - "uri": "i34327846", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433114102134" - } - ], - "enumerationChronology": [ - "v. 90 (Oct. 6-Dec. 1 2014)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433114102134" - ], - "idBarcode": [ - "33433114102134" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 90, - "lte": 90 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102084" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327829" + }, + "sort": [ " 90-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (Oct. 6-Dec. 1 2014)" - }, - "sort": [ - " 90-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 889 - }, - "_score": null, - "_source": { - "uri": "i34325260", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 90 (May-June 2014)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 90 (May-June 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433114101987" - } - ], - "enumerationChronology": [ - "v. 90 (May-June 2014)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433114101987" - ], - "idBarcode": [ - "33433114101987" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 90, - "lte": 90 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (May-June 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114101987" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (May-June 2014)", + "urn:barcode:33433114101987" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (May-June 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114101987", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (May-June 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (May-June 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34325260" + }, + "sort": [ " 90-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (May-June 2014)" - }, - "sort": [ - " 90-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 888 - }, - "_score": null, - "_source": { - "uri": "i34327829", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 90 (July-Sept 2014)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433114102084" - } - ], - "enumerationChronology": [ - "v. 90 (July-Sept 2014)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433114102084" - ], - "idBarcode": [ - "33433114102084" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 90, - "lte": 90 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (Oct. 6-Dec. 1 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102134" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "urn:barcode:33433114102134" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102134", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (Oct. 6-Dec. 1 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (Oct. 6-Dec. 1 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327846" + }, + "sort": [ " 90-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)" - }, - "sort": [ - " 90-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 887 - }, - "_score": null, - "_source": { - "uri": "i34327008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433114102043" - } - ], - "enumerationChronology": [ - "v. 89-90 (Feb. 10-Apr. 28 2014)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433114102043" - ], - "idBarcode": [ - "33433114102043" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 90 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762741" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "urn:barcode:33433110762741" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762741", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Jan. 6-Feb. 3, 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414227" + }, + "sort": [ " 89-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089-90 (Feb. 10-Apr. 28 2014)" - }, - "sort": [ - " 89-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 882 - }, - "_score": null, - "_source": { - "uri": "i32414227", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (Jan. 6-Feb. 3, 2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762741" - } - ], - "enumerationChronology": [ - "v. 89 (Jan. 6-Feb. 3, 2014)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762741" - ], - "idBarcode": [ - "33433110762741" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "enumerationChronology_sort": [ + " 89-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102043" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "urn:barcode:33433114102043" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102043", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89-90 (Feb. 10-Apr. 28 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089-90 (Feb. 10-Apr. 28 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 90 + } + ], + "uri": "i34327008" + }, + "sort": [ " 89-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Jan. 6-Feb. 3, 2014)" - }, - "sort": [ - " 89-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 886 - }, - "_score": null, - "_source": { - "uri": "i32414253", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762709" - } - ], - "enumerationChronology": [ - "v. 89 (Sept-Oct 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762709" - ], - "idBarcode": [ - "33433110762709" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762733" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "urn:barcode:33433110762733" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762733", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Feb. 11-Apr. 29 , 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414245" + }, + "sort": [ " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Sept-Oct 2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 885 - }, - "_score": null, - "_source": { - "uri": "i32414254", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762691" - } - ], - "enumerationChronology": [ - "v. 89 (Nov-Dec 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762691" - ], - "idBarcode": [ - "33433110762691" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (July-Aug 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762717" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "urn:barcode:33433110762717" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (July-Aug 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762717", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (July-Aug 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (July-Aug 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414252" + }, + "sort": [ " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Nov-Dec 2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 884 - }, - "_score": null, - "_source": { - "uri": "i32414248", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (May-June 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (May-June 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762725" - } - ], - "enumerationChronology": [ - "v. 89 (May-June 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762725" - ], - "idBarcode": [ - "33433110762725" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (May-June 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762725" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (May-June 2013)", + "urn:barcode:33433110762725" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (May-June 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762725", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (May-June 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (May-June 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414248" + }, + "sort": [ " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (May-June 2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 883 - }, - "_score": null, - "_source": { - "uri": "i32414252", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (July-Aug 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (July-Aug 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762717" - } - ], - "enumerationChronology": [ - "v. 89 (July-Aug 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762717" - ], - "idBarcode": [ - "33433110762717" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Nov-Dec 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762691" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "urn:barcode:33433110762691" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762691", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Nov-Dec 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Nov-Dec 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414254" + }, + "sort": [ " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (July-Aug 2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 881 - }, - "_score": null, - "_source": { - "uri": "i32414245", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 89 (Feb. 11-Apr. 29 , 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110762733" - } - ], - "enumerationChronology": [ - "v. 89 (Feb. 11-Apr. 29 , 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110762733" - ], - "idBarcode": [ - "33433110762733" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 (Sept-Oct 2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433110762709" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "urn:barcode:33433110762709" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433110762709", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 89 (Sept-Oct 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Sept-Oct 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i32414253" + }, + "sort": [ " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000089 (Feb. 11-Apr. 29 , 2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 880 - }, - "_score": null, - "_source": { - "uri": "i31482936", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108528393" - } - ], - "enumerationChronology": [ - "v. 88 (June 4-July 16, 2012)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433108528393" - ], - "idBarcode": [ - "33433108528393" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 39 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Apr.-May 2012) Inc." + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "urn:barcode:33433108528377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528377", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc." + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Apr.-May 2012) Inc.", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482930" + }, + "sort": [ " 88-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (June 4-July 16, 2012)" - }, - "sort": [ - " 88-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 879 - }, - "_score": null, - "_source": { - "uri": "i31482935", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108528385" - } - ], - "enumerationChronology": [ - "v. 88 (Feb. 13-Mar. 26, 2012)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433108528385" - ], - "idBarcode": [ - "33433108528385" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 38 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "urn:barcode:33433108528401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528401", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Dec. 10, 2012-Feb. 4, 2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482938" + }, + "sort": [ " 88-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Feb. 13-Mar. 26, 2012)" - }, - "sort": [ - " 88-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 878 - }, - "_score": null, - "_source": { - "uri": "i31482938", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 88 (Dec. 10, 2012-Feb. 4, 2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108528401" - } - ], - "enumerationChronology": [ - "v. 88 (Dec. 10, 2012-Feb. 4, 2013)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433108528401" - ], - "idBarcode": [ - "33433108528401" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "urn:barcode:33433108528385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528385", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (Feb. 13-Mar. 26, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Feb. 13-Mar. 26, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482935" + }, + "sort": [ " 88-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Dec. 10, 2012-Feb. 4, 2013)" - }, - "sort": [ - " 88-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 877 - }, - "_score": null, - "_source": { - "uri": "i31482930", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc." - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 88 (Apr.-May 2012) Inc.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433108528377" - } - ], - "enumerationChronology": [ - "v. 88 (Apr.-May 2012) Inc." - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433108528377" - ], - "idBarcode": [ - "33433108528377" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2012", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 36 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2012", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 88 (June 4-July 16, 2012)" + ], + "enumerationChronology_sort": [ + " 88-2012" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433108528393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "urn:barcode:33433108528393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433108528393", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 88 (June 4-July 16, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (June 4-July 16, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i31482936" + }, + "sort": [ " 88-2012" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000088 (Apr.-May 2012) Inc." - }, - "sort": [ - " 88-2012" - ] - }, - { - "_nested": { - "field": "items", - "offset": 876 - }, - "_score": null, - "_source": { - "uri": "i28878991", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099610952" - } - ], - "enumerationChronology": [ - "v. 87 (Oct-Nov 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099610952" - ], - "idBarcode": [ - "33433099610952" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 45 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Apr-May 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611091" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611091", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "status_packed": [ + "status:oh||On Holdshelf" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878981" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 875 - }, - "_score": null, - "_source": { - "uri": "i28878983", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (June-July 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611083" - } - ], - "enumerationChronology": [ - "v. 87 (June-July 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611083" - ], - "idBarcode": [ - "33433099611083" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 44 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Aug-Sept 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611075" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611075", + "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. 87 (Aug-Sept 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878989" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 874 - }, - "_score": null, - "_source": { - "uri": "i28878974", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611109" - } - ], - "enumerationChronology": [ - "v. 87 (Feb. 14-Mar. 28, 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611109" - ], - "idBarcode": [ - "33433099611109" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 43 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2012" + } + ], + "enumerationChronology": [ + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610945" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610945", + "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. 87 (Dec. 5, 2011-Feb. 6, 2012)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28879000" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 873 - }, - "_score": null, - "_source": { - "uri": "i28879000", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099610945" - } - ], - "enumerationChronology": [ - "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099610945" - ], - "idBarcode": [ - "33433099610945" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2012" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 42 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Feb. 14-Mar. 28, 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611109" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611109", + "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. 87 (Feb. 14-Mar. 28, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878974" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 872 - }, - "_score": null, - "_source": { - "uri": "i28878989", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611075" - } - ], - "enumerationChronology": [ - "v. 87 (Aug-Sept 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611075" - ], - "idBarcode": [ - "33433099611075" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 41 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (June-July 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611083" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611083", + "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. 87 (June-July 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878983" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 871 - }, - "_score": null, - "_source": { - "uri": "i28878981", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Apr-May 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611091" - } - ], - "enumerationChronology": [ - "v. 87 (Apr-May 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611091" - ], - "idBarcode": [ - "33433099611091" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 87, - "lte": 87 - } - ], - "dateRange": [ - { - "gte": "2011", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 40 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2011", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 87 (Oct-Nov 2011)" + ], + "enumerationChronology_sort": [ + " 87-2011" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099610952" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099610952", + "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. 87 (Oct-Nov 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 87, + "lte": 87 + } + ], + "uri": "i28878991" + }, + "sort": [ " 87-2011" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)" - }, - "sort": [ - " 87-2011" - ] - }, - { - "_nested": { - "field": "items", - "offset": 870 - }, - "_score": null, - "_source": { - "uri": "i28974701", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099612925" - } - ], - "enumerationChronology": [ - "v. 86 inc. (May-July 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099612925" - ], - "idBarcode": [ - "33433099612925" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 50 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Aug-Sept 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611133" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611133", + "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. 86 (Aug-Sept 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878953" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 869 - }, - "_score": null, - "_source": { - "uri": "i28878958", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611125" - } - ], - "enumerationChronology": [ - "v. 86 (Oct-Nov 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611125" - ], - "idBarcode": [ - "33433099611125" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 49 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2011" + } + ], + "enumerationChronology": [ + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611117" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611117", + "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. 86 (Dec. 6, 2010-Feb. 7, 2011)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878970" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 868 - }, - "_score": null, - "_source": { - "uri": "i28878948", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611141" - } - ], - "enumerationChronology": [ - "v. 86 (Feb. 15-Apr. 26, 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611141" - ], - "idBarcode": [ - "33433099611141" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 48 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Feb. 15-Apr. 26, 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611141" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611141", + "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. 86 (Feb. 15-Apr. 26, 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878948" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 867 - }, - "_score": null, - "_source": { - "uri": "i28878970", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611117" - } - ], - "enumerationChronology": [ - "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611117" - ], - "idBarcode": [ - "33433099611117" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2011" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 47 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 (Oct-Nov 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611125" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611125", + "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. 86 (Oct-Nov 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28878958" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 866 - }, - "_score": null, - "_source": { - "uri": "i28878953", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611133" - } - ], - "enumerationChronology": [ - "v. 86 (Aug-Sept 2010)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611133" - ], - "idBarcode": [ - "33433099611133" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 86, - "lte": 86 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 46 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 86 inc. (May-July 2010)" + ], + "enumerationChronology_sort": [ + " 86-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099612925" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099612925", + "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. 86 inc. (May-July 2010)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 86, + "lte": 86 + } + ], + "uri": "i28974701" + }, + "sort": [ " 86-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)" - }, - "sort": [ - " 86-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 865 - }, - "_score": null, - "_source": { - "uri": "i28878932", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611166" - } - ], - "enumerationChronology": [ - "v. 85 (Oct-Nov 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611166" - ], - "idBarcode": [ - "33433099611166" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 54 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Aug. 10-Sept. 28, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611174" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611174", + "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. 85 (Aug. 10-Sept. 28, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878925" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 864 - }, - "_score": null, - "_source": { - "uri": "i28878920", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (May-June 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611182" - } - ], - "enumerationChronology": [ - "v. 85 (May-June 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611182" - ], - "idBarcode": [ - "33433099611182" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 53 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Feb. 9-Apr. 27, 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611190" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611190", + "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. 85 (Feb. 9-Apr. 27, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878911" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 863 - }, - "_score": null, - "_source": { - "uri": "i28878911", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611190" - } - ], - "enumerationChronology": [ - "v. 85 (Feb. 9-Apr. 27, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611190" - ], - "idBarcode": [ - "33433099611190" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 52 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (May-June 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611182" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611182", + "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. 85 (May-June 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878920" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 862 - }, - "_score": null, - "_source": { - "uri": "i28878925", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099611174" - } - ], - "enumerationChronology": [ - "v. 85 (Aug. 10-Sept. 28, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433099611174" - ], - "idBarcode": [ - "33433099611174" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2009", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 51 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2009", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 85 (Oct-Nov 2009)" + ], + "enumerationChronology_sort": [ + " 85-2009" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099611166" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433099611166", + "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. 85 (Oct-Nov 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i28878932" + }, + "sort": [ " 85-2009" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)" - }, - "sort": [ - " 85-2009" - ] - }, - { - "_nested": { - "field": "items", - "offset": 861 - }, - "_score": null, - "_source": { - "uri": "i25589223", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063992" - } - ], - "enumerationChronology": [ - "v. 84 (Oct-Nov 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063992" - ], - "idBarcode": [ - "33433085063992" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 60 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Apr-May 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064214" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064214", + "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. 84 (Apr-May 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589205" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 860 - }, - "_score": null, - "_source": { - "uri": "i25589214", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (June-July 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064008" - } - ], - "enumerationChronology": [ - "v. 84 (June-July 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064008" - ], - "idBarcode": [ - "33433085064008" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 59 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Aug-Sept 2008 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064172" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064172", + "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. 84 (Aug-Sept 2008 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589287" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 859 - }, - "_score": null, - "_source": { - "uri": "i25589272", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063950" - } - ], - "enumerationChronology": [ - "v. 84 (Feb. 11-Mar. 31 , 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063950" - ], - "idBarcode": [ - "33433085063950" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 58 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2009" + } + ], + "enumerationChronology": [ + "v. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063976" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063976", + "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. 84 (Dec 1, 2008-Feb 2, 2009)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589242" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 858 - }, - "_score": null, - "_source": { - "uri": "i25589242", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063976" - } - ], - "enumerationChronology": [ - "v. 84 (Dec 1, 2008-Feb 2, 2009)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063976" - ], - "idBarcode": [ - "33433085063976" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2009" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 57 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063950" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063950", + "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. 84 (Feb. 11-Mar. 31 , 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589272" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 857 - }, - "_score": null, - "_source": { - "uri": "i25589287", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064172" - } - ], - "enumerationChronology": [ - "v. 84 (Aug-Sept 2008 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064172" - ], - "idBarcode": [ - "33433085064172" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 56 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (June-July 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064008" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064008", + "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. 84 (June-July 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589214" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 856 - }, - "_score": null, - "_source": { - "uri": "i25589205", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Apr-May 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064214" - } - ], - "enumerationChronology": [ - "v. 84 (Apr-May 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064214" - ], - "idBarcode": [ - "33433085064214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2008", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 55 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2008", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 84 (Oct-Nov 2008)" + ], + "enumerationChronology_sort": [ + " 84-2008" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063992" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063992", + "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. 84 (Oct-Nov 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i25589223" + }, + "sort": [ " 84-2008" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)" - }, - "sort": [ - " 84-2008" - ] - }, - { - "_nested": { - "field": "items", - "offset": 855 - }, - "_score": null, - "_source": { - "uri": "i25589229", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063984" - } - ], - "enumerationChronology": [ - "v. 83 (Oct-Nov 2007 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063984" - ], - "idBarcode": [ - "33433085063984" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 66 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Apr. 2-May 21, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064198" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064198", + "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. 83 (Apr. 2-May 21, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589269" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 854 - }, - "_score": null, - "_source": { - "uri": "i25589274", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063943" - } - ], - "enumerationChronology": [ - "v. 83 (June 25-July 30, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063943" - ], - "idBarcode": [ - "33433085063943" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 65 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Aug-Sept 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063968" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063968", + "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. 83 (Aug-Sept 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589251" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 853 - }, - "_score": null, - "_source": { - "uri": "i25589278", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064180" - } - ], - "enumerationChronology": [ - "v. 83 (Feb. 19-Mar. 26, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064180" - ], - "idBarcode": [ - "33433085064180" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 64 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2008" + } + ], + "enumerationChronology": [ + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064206" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064206", + "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. 83 (Dec. 3, 2007-Feb. 4, 2008)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589263" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 852 - }, - "_score": null, - "_source": { - "uri": "i25589263", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064206" - } - ], - "enumerationChronology": [ - "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064206" - ], - "idBarcode": [ - "33433085064206" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2008" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 63 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Feb. 19-Mar. 26, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085064180" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085064180", + "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. 83 (Feb. 19-Mar. 26, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589278" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 851 - }, - "_score": null, - "_source": { - "uri": "i25589251", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085063968" - } - ], - "enumerationChronology": [ - "v. 83 (Aug-Sept 2007 & Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085063968" - ], - "idBarcode": [ - "33433085063968" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 62 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (June 25-July 30, 2007)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063943" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063943", + "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. 83 (June 25-July 30, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589274" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 850 - }, - "_score": null, - "_source": { - "uri": "i25589269", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085064198" - } - ], - "enumerationChronology": [ - "v. 83 (Apr. 2-May 21, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433085064198" - ], - "idBarcode": [ - "33433085064198" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 83, - "lte": 83 - } - ], - "dateRange": [ - { - "gte": "2007", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 61 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2007", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 83 (Oct-Nov 2007 & Suppl.)" + ], + "enumerationChronology_sort": [ + " 83-2007" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433085063984" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085063984", + "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. 83 (Oct-Nov 2007 & Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 83, + "lte": 83 + } + ], + "uri": "i25589229" + }, + "sort": [ " 83-2007" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)" - }, - "sort": [ - " 83-2007" - ] - }, - { - "_nested": { - "field": "items", - "offset": 849 - }, - "_score": null, - "_source": { - "uri": "i17474922", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240575" - } - ], - "enumerationChronology": [ - "v. 82 (Oct.-Nov. 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240575" - ], - "idBarcode": [ - "33433084240575" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 71 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240583" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240583", + "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. 82 (Dec. 4, 2006-Feb. 12, 2007)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474923" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 848 - }, - "_score": null, - "_source": { - "uri": "i17474920", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (May-June 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240559" - } - ], - "enumerationChronology": [ - "v. 82 (May-June 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240559" - ], - "idBarcode": [ - "33433084240559" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 70 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Feb. 13-Apr. 24, 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240542" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240542", + "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. 82 (Feb. 13-Apr. 24, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474919" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 847 - }, - "_score": null, - "_source": { - "uri": "i17474921", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240567" - } - ], - "enumerationChronology": [ - "v. 82 (July-Sept. & Suppl. 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240567" - ], - "idBarcode": [ - "33433084240567" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 69 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (July-Sept. & Suppl. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240567" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240567", + "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. 82 (July-Sept. & Suppl. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474921" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 846 - }, - "_score": null, - "_source": { - "uri": "i17474919", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240542" - } - ], - "enumerationChronology": [ - "v. 82 (Feb. 13-Apr. 24, 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240542" - ], - "idBarcode": [ - "33433084240542" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 68 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (May-June 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240559" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240559", + "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. 82 (May-June 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474920" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 845 - }, - "_score": null, - "_source": { - "uri": "i17474923", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240583" - } - ], - "enumerationChronology": [ - "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240583" - ], - "idBarcode": [ - "33433084240583" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2006", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 67 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2006", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 82 (Oct.-Nov. 2006)" + ], + "enumerationChronology_sort": [ + " 82-2006" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240575" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240575", + "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. 82 (Oct.-Nov. 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17474922" + }, + "sort": [ " 82-2006" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)" - }, - "sort": [ - " 82-2006" - ] - }, - { - "_nested": { - "field": "items", - "offset": 844 - }, - "_score": null, - "_source": { - "uri": "i17474917", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240526" - } - ], - "enumerationChronology": [ - "v. 81 (Oct.-Nov. 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240526" - ], - "idBarcode": [ - "33433084240526" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 76 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Apr.-May 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240500" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240500", + "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. 81 (Apr.-May 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474915" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 843 - }, - "_score": null, - "_source": { - "uri": "i17474916", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240518" - } - ], - "enumerationChronology": [ - "v. 81 (June 27-Sept.26,2005;Suppl.)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240518" - ], - "idBarcode": [ - "33433084240518" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 75 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2006" + } + ], + "enumerationChronology": [ + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240534" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240534", + "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. 81 (Dec. 5, 2005-Feb. 6, 2006)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474918" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 842 - }, - "_score": null, - "_source": { - "uri": "i17474914", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240492" - } - ], - "enumerationChronology": [ - "v. 81 (Feb. 14-Mar. 28, 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240492" - ], - "idBarcode": [ - "33433084240492" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 74 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Feb. 14-Mar. 28, 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240492" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240492", + "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. 81 (Feb. 14-Mar. 28, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474914" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 841 - }, - "_score": null, - "_source": { - "uri": "i17474918", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240534" - } - ], - "enumerationChronology": [ - "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240534" - ], - "idBarcode": [ - "33433084240534" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2006" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 73 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240518" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240518", + "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. 81 (June 27-Sept.26,2005;Suppl.)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474916" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 840 - }, - "_score": null, - "_source": { - "uri": "i17474915", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240500" - } - ], - "enumerationChronology": [ - "v. 81 (Apr.-May 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240500" - ], - "idBarcode": [ - "33433084240500" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 81, - "lte": 81 - } - ], - "dateRange": [ - { - "gte": "2005", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 72 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2005", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 81 (Oct.-Nov. 2005)" + ], + "enumerationChronology_sort": [ + " 81-2005" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240526" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240526", + "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. 81 (Oct.-Nov. 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 81, + "lte": 81 + } + ], + "uri": "i17474917" + }, + "sort": [ " 81-2005" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)" - }, - "sort": [ - " 81-2005" - ] - }, - { - "_nested": { - "field": "items", - "offset": 839 - }, - "_score": null, - "_source": { - "uri": "i17474912", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240476" - } - ], - "enumerationChronology": [ - "v. 80 (Oct.-Nov. 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240476" - ], - "idBarcode": [ - "33433084240476" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2005" + } + ], + "enumerationChronology": [ + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240484" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240484", + "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. 80 (Dec. 6, 2004-Feb. 7, 2005)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474913" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 838 - }, - "_score": null, - "_source": { - "uri": "i17474911", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (May-June 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240468" - } - ], - "enumerationChronology": [ - "v. 80 (May-June 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240468" - ], - "idBarcode": [ - "33433084240468" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Feb. 16- Apr. 26 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080028222" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433080028222", + "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. 80 (Feb. 16- Apr. 26 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474447" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 837 - }, - "_score": null, - "_source": { - "uri": "i17474399", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (July-Sept 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433078508037" - } - ], - "enumerationChronology": [ - "v. 80 (July-Sept 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433078508037" - ], - "idBarcode": [ - "33433078508037" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 79 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (July-Sept 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078508037" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433078508037", + "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. 80 (July-Sept 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474399" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 836 - }, - "_score": null, - "_source": { - "uri": "i17474447", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433080028222" - } - ], - "enumerationChronology": [ - "v. 80 (Feb. 16- Apr. 26 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433080028222" - ], - "idBarcode": [ - "33433080028222" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 78 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (May-June 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240468" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240468", + "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. 80 (May-June 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474911" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 835 - }, - "_score": null, - "_source": { - "uri": "i17474913", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240484" - } - ], - "enumerationChronology": [ - "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240484" - ], - "idBarcode": [ - "33433084240484" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2005" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 77 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 80 (Oct.-Nov. 2004)" + ], + "enumerationChronology_sort": [ + " 80-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240476" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240476", + "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. 80 (Oct.-Nov. 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ], + "uri": "i17474912" + }, + "sort": [ " 80-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)" - }, - "sort": [ - " 80-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 834 - }, - "_score": null, - "_source": { - "uri": "i17474909", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240443" - } - ], - "enumerationChronology": [ - "v. 79 (Oct.-Nov. 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240443" - ], - "idBarcode": [ - "33433084240443" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 87 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Apr.-May 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240419" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240419", + "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. 79 (Apr.-May 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474906" + }, + "sort": [ " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 833 - }, - "_score": null, - "_source": { - "uri": "i17474907", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (June-July 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240427" - } - ], - "enumerationChronology": [ - "v. 79 (June-July 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240427" - ], - "idBarcode": [ - "33433084240427" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 832 - }, - "_score": null, - "_source": { - "uri": "i17474905", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240401" - } - ], - "enumerationChronology": [ - "v. 79 (Feb. 17-Mar. 31, 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240401" - ], - "idBarcode": [ - "33433084240401" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 831 - }, - "_score": null, - "_source": { - "uri": "i17474910", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240450" - } - ], - "enumerationChronology": [ - "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240450" - ], - "idBarcode": [ - "33433084240450" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2004" - } - ], - "enumerationChronology_sort": [ - " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 830 - }, - "_score": null, - "_source": { - "uri": "i17474908", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240435" - } - ], - "enumerationChronology": [ - "v. 79 (Aug-Sept. 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240435" - ], - "idBarcode": [ - "33433084240435" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 829 - }, - "_score": null, - "_source": { - "uri": "i17474906", - "status": [ - { - "id": "status:oh", - "label": "On Holdshelf" - } - ], - "status_packed": [ - "status:oh||On Holdshelf" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240419" - } - ], - "enumerationChronology": [ - "v. 79 (Apr.-May 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240419" - ], - "idBarcode": [ - "33433084240419" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 79, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 79-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)" - }, - "sort": [ - " 79-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 828 - }, - "_score": null, - "_source": { - "uri": "i17474903", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240385" - } - ], - "enumerationChronology": [ - "v. 78 (Oct.-Nov. 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240385" - ], - "idBarcode": [ - "33433084240385" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 827 - }, - "_score": null, - "_source": { - "uri": "i17474901", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (June-July 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240369" - } - ], - "enumerationChronology": [ - "v. 78 (June-July 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240369" - ], - "idBarcode": [ - "33433084240369" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 826 - }, - "_score": null, - "_source": { - "uri": "i17474899", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240344" - } - ], - "enumerationChronology": [ - "v. 78 (Feb. 18-Mar. 25, 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240344" - ], - "idBarcode": [ - "33433084240344" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ - " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 825 - }, - "_score": null, - "_source": { - "uri": "i17474904", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240393" - } - ], - "enumerationChronology": [ - "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240393" - ], - "idBarcode": [ - "33433084240393" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 86 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Aug-Sept. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240435" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240435", + "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. 79 (Aug-Sept. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474908" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 85 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2004" + } + ], + "enumerationChronology": [ + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240450" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240450", + "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. 79 (Dec. 1, 2003-Feb. 9, 2004)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474910" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 84 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Feb. 17-Mar. 31, 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240401" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240401", + "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. 79 (Feb. 17-Mar. 31, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474905" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 83 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (June-July 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240427" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240427", + "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. 79 (June-July 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474907" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 79 (Oct.-Nov. 2003)" + ], + "enumerationChronology_sort": [ + " 79-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240443" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240443", + "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. 79 (Oct.-Nov. 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 79, + "lte": 79 + } + ], + "uri": "i17474909" + }, + "sort": [ + " 79-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 93 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Apr.-May 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240351" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240351", + "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. 78 (Apr.-May 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474900" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 824 - }, - "_score": null, - "_source": { - "uri": "i17474902", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240377" - } - ], - "enumerationChronology": [ - "v. 78 (Aug.-Sept. 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240377" - ], - "idBarcode": [ - "33433084240377" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 92 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Aug.-Sept. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240377" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240377", + "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. 78 (Aug.-Sept. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474902" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 823 - }, - "_score": null, - "_source": { - "uri": "i17474900", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240351" - } - ], - "enumerationChronology": [ - "v. 78 (Apr.-May 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240351" - ], - "idBarcode": [ - "33433084240351" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 78 - } - ], - "dateRange": [ - { - "gte": "2002", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 91 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240393" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240393", + "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. 78 (Dec. 2, 2002-Feb. 10, 2003)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474904" + }, + "sort": [ " 78-2002" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)" - }, - "sort": [ - " 78-2002" - ] - }, - { - "_nested": { - "field": "items", - "offset": 822 - }, - "_score": null, - "_source": { - "uri": "i17474897", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240328" - } - ], - "enumerationChronology": [ - "v. 77 (Oct. -Nov. 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240328" - ], - "idBarcode": [ - "33433084240328" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 90 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Feb. 18-Mar. 25, 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240344" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240344", + "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. 78 (Feb. 18-Mar. 25, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474899" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 89 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (June-July 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240369" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240369", + "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. 78 (June-July 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474901" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 88 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 78 (Oct.-Nov. 2002)" + ], + "enumerationChronology_sort": [ + " 78-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240385" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240385", + "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. 78 (Oct.-Nov. 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 78 + } + ], + "uri": "i17474903" + }, + "sort": [ + " 78-2002" + ] + }, + { + "_nested": { + "field": "items", + "offset": 98 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Aug. 6-Sept. 17, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240310" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240310", + "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. 77 (Aug. 6-Sept. 17, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474896" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 821 - }, - "_score": null, - "_source": { - "uri": "i17474446", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (May-July 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433079991612" - } - ], - "enumerationChronology": [ - "v. 77 (May-July 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433079991612" - ], - "idBarcode": [ - "33433079991612" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-06-21" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 97 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240336" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240336", + "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. 77 (Dec. 3, 2001-Feb. 11, 2002)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474898" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 820 - }, - "_score": null, - "_source": { - "uri": "i17474895", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240302" - } - ], - "enumerationChronology": [ - "v. 77 (Feb. 19-Apr. 30, 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240302" - ], - "idBarcode": [ - "33433084240302" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 96 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Feb. 19-Apr. 30, 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240302" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240302", + "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. 77 (Feb. 19-Apr. 30, 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474895" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 819 - }, - "_score": null, - "_source": { - "uri": "i17474898", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240336" - } - ], - "enumerationChronology": [ - "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240336" - ], - "idBarcode": [ - "33433084240336" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2002" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 95 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (May-July 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433079991612" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433079991612", + "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. 77 (May-July 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474446" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 818 - }, - "_score": null, - "_source": { - "uri": "i17474896", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240310" - } - ], - "enumerationChronology": [ - "v. 77 (Aug. 6-Sept. 17, 2001)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240310" - ], - "idBarcode": [ - "33433084240310" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 77, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 94 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 77 (Oct. -Nov. 2001)" + ], + "enumerationChronology_sort": [ + " 77-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084240328" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084240328", + "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. 77 (Oct. -Nov. 2001)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 77, + "lte": 77 + } + ], + "uri": "i17474897" + }, + "sort": [ " 77-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)" - }, - "sort": [ - " 77-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 817 - }, - "_score": null, - "_source": { - "uri": "i17474893", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084240286" - } - ], - "enumerationChronology": [ - "v. 76 (Sept.-Oct. 2000)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433084240286" - ], - "idBarcode": [ - "33433084240286" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 76 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 103 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "enumerationChronology_sort": [ + " 76-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433080426707" + ], + "identifier": [ + "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 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "type": "bf:ShelfMark" + }, + { + "value": "33433080426707", + "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. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 76 + } + ], + "uri": "i17474434" + }, + "sort": [ " 76-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)" - }, - "sort": [ - " 76-2000" - ] - } - ] + ] + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 572 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 112 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 88 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 12 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + }, + { + "key": "status:t||In transit", + "doc_count": 1 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", - "doc_count": 572 - }, - { - "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", - "doc_count": 213 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 66 - }, - { - "key": "loc:rcma2||Offsite", - "doc_count": 66 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:50 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "166427", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10833141\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}},{\"term\":{\"items.type\":\"nypl:CheckinCardItem\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "964" + }, + "timeout": 30000 + }, + "options": {}, + "id": 4 }, - "item_format": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 704 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 789 - }, - { - "key": "status:i||At bindery", - "doc_count": 95 - }, - { - "key": "status:oh||On Holdshelf", - "doc_count": 23 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:na||Not available", - "doc_count": 2 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-6de3356edb615c91451b75776c601fb9.json b/test/fixtures/query-6de3356edb615c91451b75776c601fb9.json deleted file mode 100644 index 056d7145..00000000 --- a/test/fixtures/query-6de3356edb615c91451b75776c601fb9.json +++ /dev/null @@ -1,12947 +0,0 @@ -{ - "took": 505, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1996283, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000061", - "_score": null, - "_source": { - "extent": [ - "1 ms. score (10 p.) + 1 ms. part (3 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holographs (?) signed, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For violin and piano; part incomplete.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title varies: Hungarian song and dance.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "On t.p.: Given to H H Huss by Maud Powell.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Huss, Henry Holden, 1862-1953", - "Huss, Henry Holden, 1862-1953 -- Manuscripts", - "Violin and piano music", - "Violin and piano music -- Scores and parts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1888 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hungarian melody and dance" - ], - "shelfMark": [ - "JPB 83-155 no. 189" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Matus." - ], - "createdString": [ - "1888" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Huss, Henry Holden, 1862-1953.", - "Powell, Maud, 1867-1920." - ], - "dateStartYear": [ - 1888 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-155 no. 189" - }, - { - "type": "nypl:Bnumber", - "value": "10000061" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000029-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100579" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200060" - } - ], - "idOclc": [ - "NYPG001000029-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "1888." - ], - "identifier": [ - "urn:bnum:10000061", - "urn:oclc:NYPG001000029-C", - "urn:undefined:NNSZ00100579", - "urn:undefined:(WaOLN)nyp0200060" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1888" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Huss, Henry Holden, 1862-1953 -- Manuscripts.", - "Violin and piano music -- Scores and parts." - ], - "titleDisplay": [ - "Hungarian melody and dance / Matus ; arranged by H.H.H. Mazurka caprice / Henry Holden Huss." - ], - "uri": "b10000061", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Hungarian song and dance.", - "Mazurka caprice." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000061" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746396", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:8", - "label": "manuscript music" - } - ], - "catalogItemType_packed": [ - "catalogItemType:8||manuscript music" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-155 no. 189" - ], - "identifierV2": [ - { - "value": "JPB 83-155 no. 189", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433116929518" - } - ], - "physicalLocation": [ - "JPB 83-155 no. 189" - ], - "identifier": [ - "urn:barcode:33433116929518" - ], - "idBarcode": [ - "33433116929518" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-155 no. 000189" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000063", - "_score": null, - "_source": { - "extent": [ - "1 ms. score (2 leaves) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Ms. (in ink) in the hand of Henry Holden Huss.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For one or more voices and piano.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Huss, Henry Holden, 1862-1953", - "Huss, Henry Holden, 1862-1953 -- Manuscripts", - "Songs (Medium voice) with piano", - "Choruses, Secular (Mixed voices, 2 parts) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1953" - ], - "createdYear": [ - 1862 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "For it's free : our native land" - ], - "shelfMark": [ - "JPB 83-155 no. 190 " - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Proctor, David." - ], - "createdString": [ - "1862" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Huss, Henry Holden, 1862-1953." - ], - "dateStartYear": [ - 1862 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-155 no. 190 " - }, - { - "type": "nypl:Bnumber", - "value": "10000063" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000030-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100580" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200062" - } - ], - "idOclc": [ - "NYPG001000030-C" - ], - "dateEndYear": [ - 1953 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[19--?]" - ], - "identifier": [ - "urn:bnum:10000063", - "urn:oclc:NYPG001000030-C", - "urn:undefined:NNSZ00100580", - "urn:undefined:(WaOLN)nyp0200062" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1862" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Huss, Henry Holden, 1862-1953 -- Manuscripts.", - "Songs (Medium voice) with piano.", - "Choruses, Secular (Mixed voices, 2 parts) with piano." - ], - "titleDisplay": [ - "For it's free : our native land / music by David Proctor ; author anon." - ], - "uri": "b10000063", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000063" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746397", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:8", - "label": "manuscript music" - } - ], - "catalogItemType_packed": [ - "catalogItemType:8||manuscript music" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-155 no. 190" - ], - "identifierV2": [ - { - "value": "JPB 83-155 no. 190", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433116929526" - } - ], - "physicalLocation": [ - "JPB 83-155 no. 190" - ], - "identifier": [ - "urn:barcode:33433116929526" - ], - "idBarcode": [ - "33433116929526" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-155 no. 000190" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000071", - "_score": null, - "_source": { - "extent": [ - "1 ms. score ([3] p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph signed, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and piano.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gilbert, Henry F. B. 1868-1928", - "Gilbert, Henry F. B. 1868-1928 -- Manuscripts", - "Riley, James Whitcomb, 1849-1916", - "Riley, James Whitcomb, 1849-1916 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1928" - ], - "createdYear": [ - 1868 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The treasure of the wise man" - ], - "shelfMark": [ - "JPB 83-480" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gilbert, Henry F. B. (Henry Franklin Belknap), 1868-1928." - ], - "createdString": [ - "1868" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Riley, James Whitcomb, 1849-1916." - ], - "dateStartYear": [ - 1868 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-480" - }, - { - "type": "nypl:Bnumber", - "value": "10000071" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000034-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100584" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200070" - } - ], - "idOclc": [ - "NYPG001000034-C" - ], - "dateEndYear": [ - 1928 - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[19--?]" - ], - "identifier": [ - "urn:bnum:10000071", - "urn:oclc:NYPG001000034-C", - "urn:undefined:NNSZ00100584", - "urn:undefined:(WaOLN)nyp0200070" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1868" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gilbert, Henry F. B. 1868-1928 -- Manuscripts.", - "Riley, James Whitcomb, 1849-1916 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "The treasure of the wise man / [words by] James Whitcomb Riley ; [music by] Henry F. Gilbert." - ], - "uri": "b10000071", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000071" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746401", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-480" - ], - "identifierV2": [ - { - "value": "JPB 83-480", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 83-480" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-000480" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000077", - "_score": null, - "_source": { - "extent": [ - "1 ms. score ([3] p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph signed, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At end: Komponirt im September 1892 ; revidirt & ballindet [?] im Mai 1894.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Published in: Sechs Lieder für tiefe Stimme mit Pianofortebegleitung, op. 2, no. 1. Leipzig, New York : Breitkopf & Härtel, c1900.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Paper extremely brittle and badly torn.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Goldmark, Rubin, 1872-1936", - "Goldmark, Rubin, 1872-1936 -- Manuscripts", - "Songs (Low voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1894 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Blaublümlein : rheinisches Volkslied" - ], - "shelfMark": [ - "JPB 83-483" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Goldmark, Rubin, 1872-1936." - ], - "createdString": [ - "1894" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1894 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-483" - }, - { - "type": "nypl:Bnumber", - "value": "10000077" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000037-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100587" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200076" - } - ], - "idOclc": [ - "NYPG001000037-C" - ], - "uniformTitle": [ - "Lieder, op. 2. Blaublümlein" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "1894 May." - ], - "identifier": [ - "urn:bnum:10000077", - "urn:oclc:NYPG001000037-C", - "urn:undefined:NNSZ00100587", - "urn:undefined:(WaOLN)nyp0200076" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1894" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Goldmark, Rubin, 1872-1936 -- Manuscripts.", - "Songs (Low voice) with piano." - ], - "titleDisplay": [ - "Blaublümlein : rheinisches Volkslied / Rubin Goldmark." - ], - "uri": "b10000077", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Lieder, op. 2. Blaublümlein" - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - "b10000077" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746404", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-483" - ], - "identifierV2": [ - { - "value": "JPB 83-483", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 83-483" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-000483" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000079", - "_score": null, - "_source": { - "extent": [ - "1 ms. score ([3] p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and piano.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English and German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Goldmark, Rubin, 1872-1936", - "Goldmark, Rubin, 1872-1936 -- Manuscripts", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1936" - ], - "createdYear": [ - 1872 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The forest has its birds of song" - ], - "shelfMark": [ - "JPB 83-484" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Goldmark, Rubin, 1872-1936." - ], - "createdString": [ - "1872" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1872 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-484" - }, - { - "type": "nypl:Bnumber", - "value": "10000079" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000038-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100588" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200078" - } - ], - "idOclc": [ - "NYPG001000038-C" - ], - "dateEndYear": [ - 1936 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[18--?]" - ], - "identifier": [ - "urn:bnum:10000079", - "urn:oclc:NYPG001000038-C", - "urn:undefined:NNSZ00100588", - "urn:undefined:(WaOLN)nyp0200078" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1872" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Goldmark, Rubin, 1872-1936 -- Manuscripts.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "The forest has its birds of song / [Rubin Goldmark]." - ], - "uri": "b10000079", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - "b10000079" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746405", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-484" - ], - "identifierV2": [ - { - "value": "JPB 83-484", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 83-484" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-000484" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000084", - "_score": null, - "_source": { - "extent": [ - "1 ms. score ([2] leaves) ; 1 ms. part ([1] leaf) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Holograph, in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Published in: A group of songs, op. 1-2. Boston: Boston Music Co., c1896.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Accompanied by text (holograph, 2 leaves, 26 cm.) dated June 27th, 1889.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gow, George Coleman, 1860-1938", - "Gow, George Coleman, 1860-1938 -- Manuscripts", - "Songs (Medium voice) with instrumental ensemble", - "Songs (Medium voice) with instrumental ensemble -- Scores and parts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1890 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Slumber song : violin, voice, and pianoforte" - ], - "shelfMark": [ - "JPB 83-488" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gow, George Coleman, 1860-1938." - ], - "createdString": [ - "1890" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1890 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JPB 83-488" - }, - { - "type": "nypl:Bnumber", - "value": "10000084" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000041-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100591" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200083" - } - ], - "idOclc": [ - "NYPG001000041-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "1890 Mar. 10." - ], - "identifier": [ - "urn:bnum:10000084", - "urn:oclc:NYPG001000041-C", - "urn:undefined:NNSZ00100591", - "urn:undefined:(WaOLN)nyp0200083" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1890" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gow, George Coleman, 1860-1938 -- Manuscripts.", - "Songs (Medium voice) with instrumental ensemble -- Scores and parts." - ], - "titleDisplay": [ - "Slumber song : violin, voice, and pianoforte / by G. C. Gow." - ], - "uri": "b10000084", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 cm. + 27 cm." - ] - }, - "sort": [ - "b10000084" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746408", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym38||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JPB 83-488" - ], - "identifierV2": [ - { - "value": "JPB 83-488", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 83-488" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJPB 83-000488" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000284", - "_score": null, - "_source": { - "extent": [ - "20, 429 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint of the 1826 ed., published by Dar al-Inṭibāʻ-i Dār al-Salṭanah, Tabrīz.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- History", - "Iran -- History -- Qajar dynasty, 1794-1925", - "Iran -- Foreign relations", - "Iran -- Foreign relations -- Russia", - "Russia", - "Russia -- Foreign relations", - "Russia -- Foreign relations -- Iran" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Ibn Sīnā" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "dateEndString": [ - "1826" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Maʼā̲sir-i sulṭānīyah, tārīkh-i janǵhā-yi Īrān va Rūs." - ], - "shelfMark": [ - "*OMZ 82-4274" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Maftūn Dunbulī, ʻAbd al-Razzāq, 1762 or 3-1827 or 8." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "74216823" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ṣadrī Afshār, Ghulām Ḥusayn." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 82-4274" - }, - { - "type": "nypl:Bnumber", - "value": "10000284" - }, - { - "type": "bf:Lccn", - "value": "74216823" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000237-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100237" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200283" - } - ], - "idOclc": [ - "NYPG001000237-B" - ], - "dateEndYear": [ - 1826 - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Tihrān] Intishārāt-i Ibn Sīnā, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000284", - "urn:lccn:74216823", - "urn:oclc:NYPG001000237-B", - "urn:undefined:NNSZ00100237", - "urn:undefined:(WaOLN)nyp0200283" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- History -- Qajar dynasty, 1794-1925.", - "Iran -- Foreign relations -- Russia.", - "Russia -- Foreign relations -- Iran." - ], - "titleDisplay": [ - "Maʼā̲sir-i sulṭānīyah, tārīkh-i janǵhā-yi Īrān va Rūs. A̲sar-i ʻAbd al-Razzāq Maftūn Dunbulī. Bā muqaddamah va fihristhā bi-ihtimām-i Ghulām Ḥusayn Ṣadrī Afshār." - ], - "uri": "b10000284", - "lccClassification": [ - "DS302 .M33 1972" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tihrān]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000284" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942064", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMZ 82-4274" - ], - "identifierV2": [ - { - "value": "*OMZ 82-4274", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014539161" - } - ], - "physicalLocation": [ - "*OMZ 82-4274" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014539161" - ], - "idBarcode": [ - "33433014539161" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMZ 82-004274" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000348", - "_score": null, - "_source": { - "extent": [ - "[28], 573 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [7-10] (1st group)", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Description and travel" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mīrzā Ḥabīb Allāh" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1880" - ], - "createdYear": [ - 1879 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kitāb-i mustaṭāb-i ganj-i dānish" - ], - "shelfMark": [ - "*ONA+ 82-2677" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Muʻtamid al-Sulṭān, Muḥammad Taqī khān Ḥakīm, mutakhalliṣ bih Ḥakīm." - ], - "createdString": [ - "1879" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1879 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONA+ 82-2677" - }, - { - "type": "nypl:Bnumber", - "value": "10000348" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000301-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100301" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200347" - } - ], - "idOclc": [ - "NYPG001000301-B" - ], - "dateEndYear": [ - 1880 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ṭihrān : Mīrzā Ḥabīb Allāh, 1305 [1879 or 1880]" - ], - "identifier": [ - "urn:bnum:10000348", - "urn:oclc:NYPG001000301-B", - "urn:undefined:NNSZ00100301", - "urn:undefined:(WaOLN)nyp0200347" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1879" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Description and travel." - ], - "titleDisplay": [ - "Kitāb-i mustaṭāb-i ganj-i dānish / az taʼlīfāt-i Muʻtamid al-Sulṭān Muḥammad Taqī Khān mutikhalliṣ bih Ḥakīm ; bi-saʻī va ihtimām-i Mullā Maḥmūd va Mullā Rizā Kitābfurūsh." - ], - "uri": "b10000348", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ṭihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Ganj-i dānish." - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - "b10000348" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783848", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*ONA+ 82-2677 " - ], - "identifierV2": [ - { - "value": "*ONA+ 82-2677 ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059840763" - } - ], - "physicalLocation": [ - "*ONA+ 82-2677 " - ], - "identifier": [ - "urn:barcode:33433059840763" - ], - "idBarcode": [ - "33433059840763" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONA+ 82-2677 " - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000546", - "_score": null, - "_source": { - "extent": [ - "16 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trük. K. Mattiesen" - ], - "language": [ - { - "id": "lang:est", - "label": "Estonian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1891 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Üks öö tissa jöe peal" - ], - "shelfMark": [ - "*Z-3414 no. 9" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1891" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1891 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3414 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10000546" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000503-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100503" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200545" - } - ], - "idOclc": [ - "NYPG001000503-B" - ], - "updatedAt": 1676922086720, - "publicationStatement": [ - "Tartus : Trük. K. Mattiesen, 1891." - ], - "identifier": [ - "urn:bnum:10000546", - "urn:oclc:NYPG001000503-B", - "urn:undefined:NNSZ00100503", - "urn:undefined:(WaOLN)nyp0200545" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1891" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Üks öö tissa jöe peal [microform]." - ], - "uri": "b10000546", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tartus" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - "b10000546" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30112243", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433107825220" - } - ], - "enumerationChronology": [ - "no. 1-16" - ], - "physicalLocation": [ - "*Z-3414" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433107825220" - ], - "idBarcode": [ - "33433107825220" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 16 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000547", - "_score": null, - "_source": { - "extent": [ - "31 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trük. L. Weyde" - ], - "language": [ - { - "id": "lang:est", - "label": "Estonian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1874 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kirjakandja tuike üks rutuline rööwlide käest päästaw sönum." - ], - "shelfMark": [ - "*Z-3414 no. 6" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1874" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1874 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3414 no. 6" - }, - { - "type": "nypl:Bnumber", - "value": "10000547" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000504-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100504" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200546" - } - ], - "idOclc": [ - "NYPG001000504-B" - ], - "updatedAt": 1676922086720, - "publicationStatement": [ - "Riigas : Trük. L. Weyde, 1874." - ], - "identifier": [ - "urn:bnum:10000547", - "urn:oclc:NYPG001000504-B", - "urn:undefined:NNSZ00100504", - "urn:undefined:(WaOLN)nyp0200546" - ], - "genreForm": [ - "Estonian fiction." - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1874" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Kirjakandja tuike [microform] : üks rutuline rööwlide käest päästaw sönum." - ], - "uri": "b10000547", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Riigas" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - "b10000547" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30112243", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433107825220" - } - ], - "enumerationChronology": [ - "no. 1-16" - ], - "physicalLocation": [ - "*Z-3414" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433107825220" - ], - "idBarcode": [ - "33433107825220" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 16 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000548", - "_score": null, - "_source": { - "extent": [ - "89 p. : ill., port. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "United States Lawn Tennis Association", - "Tennis", - "Tennis -- Rules" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wright & Ditson" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1889 - ], - "type": [ - "nypl:Item" - ], - "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 ..." - ], - "shelfMark": [ - "*Z-3414 no. 4" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1889" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "United States Lawn Tennis Association." - ], - "dateStartYear": [ - 1889 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3414 no. 4" - }, - { - "type": "nypl:Bnumber", - "value": "10000548" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000505-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100505" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200547" - } - ], - "idOclc": [ - "NYPG001000505-B" - ], - "updatedAt": 1676922086720, - "publicationStatement": [ - "Boston, Mass. : Wright & Ditson, 1889." - ], - "identifier": [ - "urn:bnum:10000548", - "urn:oclc:NYPG001000505-B", - "urn:undefined:NNSZ00100505", - "urn:undefined:(WaOLN)nyp0200547" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1889" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "United States Lawn Tennis Association.", - "Tennis -- Rules." - ], - "titleDisplay": [ - "Official lawn tennis rules [microform] : 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 ..." - ], - "uri": "b10000548", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Boston, Mass." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - "b10000548" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30112243", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433107825220" - } - ], - "enumerationChronology": [ - "no. 1-16" - ], - "physicalLocation": [ - "*Z-3414" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433107825220" - ], - "idBarcode": [ - "33433107825220" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 16 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000574", - "_score": null, - "_source": { - "extent": [ - "xii, 56 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Maisonneuve" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1891 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Les hymnes rohitas Livre XIII de l'Atharva-Véda" - ], - "shelfMark": [ - "*ZO-180 no. 10" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1891" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Henry, Victor, 1850-1907." - ], - "dateStartYear": [ - 1891 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-180 no. 10" - }, - { - "type": "nypl:Bnumber", - "value": "10000574" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000531-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100531" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200573" - } - ], - "idOclc": [ - "NYPG001000531-B" - ], - "uniformTitle": [ - "Vedas. Atharvaveda. French. Selections." - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "Paris, J. Maisonneuve, 1891." - ], - "identifier": [ - "urn:bnum:10000574", - "urn:oclc:NYPG001000531-B", - "urn:undefined:NNSZ00100531", - "urn:undefined:(WaOLN)nyp0200573" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1891" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Les hymnes rohitas [microform] Livre XIII de l'Atharva-Véda, traduit et commenté par Victor Henry." - ], - "uri": "b10000574", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8̕." - ] - }, - "sort": [ - "b10000574" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30080033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZO-180 11 misc oriental titles" - ], - "identifierV2": [ - { - "value": "*ZO-180 11 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105673077" - } - ], - "enumerationChronology": [ - "11 misc oriental titles" - ], - "physicalLocation": [ - "*ZO-180" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433105673077" - ], - "idBarcode": [ - "33433105673077" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZO-180 11 misc oriental titles" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000575", - "_score": null, - "_source": { - "extent": [ - "23 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sloman, Jane, 1824-", - "Pianists", - "Pianists -- England", - "Pianists -- England -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dutton and Wentworth" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1841 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A Biographical sketch of Jane Sloman, the celebrated pianiste" - ], - "shelfMark": [ - "*ZB-1040" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1841" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1841 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZB-1040" - }, - { - "type": "nypl:Bnumber", - "value": "10000575" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000532-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100532" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200574" - } - ], - "idOclc": [ - "NYPG001000532-B" - ], - "updatedAt": 1674870772746, - "publicationStatement": [ - "Boston : Dutton and Wentworth, 1841." - ], - "identifier": [ - "urn:bnum:10000575", - "urn:oclc:NYPG001000532-B", - "urn:undefined:NNSZ00100532", - "urn:undefined:(WaOLN)nyp0200574" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1841" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sloman, Jane, 1824-", - "Pianists -- England -- Biography." - ], - "titleDisplay": [ - "A Biographical sketch of Jane Sloman, the celebrated pianiste [microform]." - ], - "uri": "b10000575", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Boston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - "b10000575" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i17446753", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "*ZB-1040" - ], - "identifierV2": [ - { - "value": "*ZB-1040", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*ZB-1040" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZB-001040" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000576", - "_score": null, - "_source": { - "extent": [ - "xxviii, 469 p. illus., maps (part fold.)" - ], - "note": [ - { - "noteType": "Note", - "label": "First published under title: A history of Egypt under the Pharaohs.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Egypt", - "Egypt -- History", - "Egypt -- History -- To 332 B.C" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. Murray" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1891 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Egypt under the Pharaohs a history derived entirely from the monuments." - ], - "shelfMark": [ - "*ZO-185 no. 5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Brugsch, Heinrich, 1827-1894." - ], - "createdString": [ - "1891" - ], - "idLccn": [ - "49042562" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1891 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-185 no. 5" - }, - { - "type": "nypl:Bnumber", - "value": "10000576" - }, - { - "type": "bf:Lccn", - "value": "49042562" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000533-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100533" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200575" - } - ], - "idOclc": [ - "NYPG001000533-B" - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "London, J. Murray, 1891." - ], - "identifier": [ - "urn:bnum:10000576", - "urn:lccn:49042562", - "urn:oclc:NYPG001000533-B", - "urn:undefined:NNSZ00100533", - "urn:undefined:(WaOLN)nyp0200575" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1891" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Egypt -- History -- To 332 B.C." - ], - "titleDisplay": [ - "Egypt under the Pharaohs [microform] a history derived entirely from the monuments." - ], - "uri": "b10000576", - "lccClassification": [ - "DT83 .89 1891" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000576" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30080739", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZO-185 5 misc oriental titles" - ], - "identifierV2": [ - { - "value": "*ZO-185 5 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105673168" - } - ], - "enumerationChronology": [ - "5 misc oriental titles" - ], - "physicalLocation": [ - "*ZO-185" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433105673168" - ], - "idBarcode": [ - "33433105673168" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZO-185 5 misc oriental titles" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000577", - "_score": null, - "_source": { - "extent": [ - "137 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Chinese language", - "Chinese language -- Writing" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C. B. Norton" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1854 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*ZO-185 no. 1" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Andrews, Stephen Pearl, 1812-1886." - ], - "createdString": [ - "1854" - ], - "idLccn": [ - "12008608" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1854 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-185 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "10000577" - }, - { - "type": "bf:Lccn", - "value": "12008608" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000534-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100534" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200576" - } - ], - "idOclc": [ - "NYPG001000534-B" - ], - "updatedAt": 1674870772746, - "publicationStatement": [ - "New York, C. B. Norton, 1854." - ], - "identifier": [ - "urn:bnum:10000577", - "urn:lccn:12008608", - "urn:oclc:NYPG001000534-B", - "urn:undefined:NNSZ00100534", - "urn:undefined:(WaOLN)nyp0200576" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1854" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Chinese language -- Writing." - ], - "titleDisplay": [ - "Discoveries in Chinese, or, The symbolism of the primitive characters of the Chinese system of writing [microform] As a contribution to philology and ethnology and a practical aid in the acquisition of the Chinese language, by Stephen Pearl Andrews." - ], - "uri": "b10000577", - "lccClassification": [ - "PL1171 .A6" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Discoveries in Chinese", - "Symbolism of the primitive characters of the Chinese system of writing" - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000577" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30080739", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZO-185 5 misc oriental titles" - ], - "identifierV2": [ - { - "value": "*ZO-185 5 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105673168" - } - ], - "enumerationChronology": [ - "5 misc oriental titles" - ], - "physicalLocation": [ - "*ZO-185" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433105673168" - ], - "idBarcode": [ - "33433105673168" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZO-185 5 misc oriental titles" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000578", - "_score": null, - "_source": { - "extent": [ - "vi, 285 p. illus." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindustani language", - "Hindustani language -- Glossaries, vocabularies, etc", - "Agriculture", - "Agriculture -- Terminology" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Supt. of Govt. Printing" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1888 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A rural and agricultural glossary for the N.-W. provinces and Oudh" - ], - "shelfMark": [ - "*ZO-187 no. 6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Crooke, William, 1848-1923." - ], - "createdString": [ - "1888" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1888 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-187 no. 6" - }, - { - "type": "nypl:Bnumber", - "value": "10000578" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000535-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100535" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200577" - } - ], - "idOclc": [ - "NYPG001000535-B" - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "Calcutta, Supt. of Govt. Printing, 1888." - ], - "identifier": [ - "urn:bnum:10000578", - "urn:oclc:NYPG001000535-B", - "urn:undefined:NNSZ00100535", - "urn:undefined:(WaOLN)nyp0200577" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1888" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindustani language -- Glossaries, vocabularies, etc.", - "Agriculture -- Terminology." - ], - "titleDisplay": [ - "A rural and agricultural glossary for the N.-W. provinces and Oudh [microform] [By] William Crooke." - ], - "uri": "b10000578", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Calcutta" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "4̕." - ] - }, - "sort": [ - "b10000578" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30081049", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZO-187 9 misc oriental titles" - ], - "identifierV2": [ - { - "value": "*ZO-187 9 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105673309" - } - ], - "enumerationChronology": [ - "9 misc oriental titles" - ], - "physicalLocation": [ - "*ZO-187" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433105673309" - ], - "idBarcode": [ - "33433105673309" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZO-187 9 misc oriental titles" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000985", - "_score": null, - "_source": { - "extent": [ - "22, 460 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint of the 1884 ed. published in Lahore.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Lahore (Pakistan)", - "Lahore (Pakistan) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Majlis-i Taraqqī-i Adab" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "dateEndString": [ - "1884" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tārīkh-i Lāhaur" - ], - "shelfMark": [ - "*OKTY 82-4463" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "KanhaiyyĀ Lāl Hindī, 1830-1888." - ], - "createdString": [ - "1977" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Fāiq, Kalb ʻAlī Khān." - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTY 82-4463" - }, - { - "type": "nypl:Bnumber", - "value": "10000985" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000395-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200995" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200984" - } - ], - "idOclc": [ - "NYPG002000395-B" - ], - "dateEndYear": [ - 1884 - ], - "updatedAt": 1674870777259, - "publicationStatement": [ - "Lāhau : Majlis-i Taraqqī-i Adab, 1977." - ], - "identifier": [ - "urn:bnum:10000985", - "urn:oclc:NYPG002000395-B", - "urn:undefined:NNSZ00200995", - "urn:undefined:(WaOLN)nyp0200984" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lahore (Pakistan) -- History." - ], - "titleDisplay": [ - "Tārīkh-i Lāhaur / muṣannifah-yi Kanhaiyyā Lāl Hindī ;murattabah-yi Kalb ʻalī Khān Fāʼiq." - ], - "uri": "b10000985", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lāhau" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000985" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000619", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTY 82-4463" - ], - "identifierV2": [ - { - "value": "*OKTY 82-4463", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011242603" - } - ], - "physicalLocation": [ - "*OKTY 82-4463" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011242603" - ], - "idBarcode": [ - "33433011242603" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTY 82-004463" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001056", - "_score": null, - "_source": { - "extent": [ - "67 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "s.l.," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1983" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Buḥūr al-ḥikmah [microform]." - ], - "shelfMark": [ - "*ZO-243 no. 1" - ], - "creatorLiteral": [ - "Baháʼuʼlláh, 1817-1892." - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-243 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "10001056" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201067" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201055" - } - ], - "dateEndYear": [ - 1983 - ], - "updatedAt": 1636079365906, - "publicationStatement": [ - "[New Delhi? : s.l., 19-]" - ], - "identifier": [ - "urn:bnum:10001056", - "urn:undefined:NNSZ00201067", - "urn:undefined:(WaOLN)nyp0201055" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Buḥūr al-ḥikmah [microform]." - ], - "uri": "b10001056", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[New Delhi? :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "14 cm." - ] - }, - "sort": [ - "b10001056" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30081267", - "shelfMark": [ - "*ZO-243 11 Arabic titles" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-243 11 Arabic titles" - }, - { - "type": "bf:Barcode", - "value": "33433105673531" - } - ], - "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" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001080", - "_score": null, - "_source": { - "extent": [ - "577 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"The first printed book in Malayalam\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Facsimile reproduction of old Malayalam and transcription, paraphrase, and notes in modern Malayalam, on opposite pages.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Original t.p. reads: Nasṟāṇikaḷ okkakkuṃ aṟiyeṇṭunna saṅkṣepavedārtthaṃ=Compendiosa legis explanatio omnibus Christianis scitu necessaria. Malabarico idiomate. Romāyilninn Miśihā pirṟannīṭṭ 1772 śṟȧṣṭa melpaṭṭakkāraruṭe anuvādattāl=Romae An. A nativit. Christi 1772, praisidum facultate\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Catholic Church. Syro-Malabar rite", - "Christianity", - "Christianity -- Philosophy" - ], - "publisherLiteral": [ - "Ḍi. Ṣi. Buks ; Kārmel Pabḷiṣiṅg Senṟar," - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "dateEndString": [ - "1772" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" - ], - "shelfMark": [ - "*OLD 84-299" - ], - "creatorLiteral": [ - "Piyāniyas, Kḷemanṟ, 1731-1782." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82904075" - ], - "contributorLiteral": [ - "Choondal, Chummar, 1940-", - "Mathew, Ulakamthara." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-299" - }, - { - "type": "nypl:Bnumber", - "value": "10001080" - }, - { - "type": "bf:Lccn", - "value": "82904075" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201091" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201079" - } - ], - "dateEndYear": [ - 1772 - ], - "updatedAt": 1636128328325, - "publicationStatement": [ - "Kōṭṭayaṃ : Ḍi. Ṣi. Buks ; Tiruvanantapuraṃ : Kārmel Pabḷiṣiṅg Senṟar, 1980." - ], - "identifier": [ - "urn:bnum:10001080", - "urn:lccn:82904075", - "urn:undefined:NNSZ00201091", - "urn:undefined:(WaOLN)nyp0201079" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Catholic Church. Syro-Malabar rite.", - "Christianity -- Philosophy." - ], - "titleDisplay": [ - "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp / Kḷemanṟ Piyāniyas = Samkshepa vedartham / by Clement Pianius ; introduction by Chummar Choondel ; commentary by Mathew Ulakamthara." - ], - "uri": "b10001080", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōṭṭayaṃ : Tiruvanantapuraṃ :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10001080" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011099029" - ], - "physicalLocation": [ - "*OLD 84-299" - ], - "shelfMark_sort": "a*OLD 84-000299", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000682", - "shelfMark": [ - "*OLD 84-299" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-299" - }, - { - "type": "bf:Barcode", - "value": "33433011099029" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433011099029" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001550", - "_score": null, - "_source": { - "extent": [ - "1 v. (no paging) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Shīʻah", - "Shīʻah -- Doctrines" - ], - "publisherLiteral": [ - "Chāpkhānah-ʼi Ḥajī ʻAbd al-Ḥamīd" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1851" - ], - "createdYear": [ - 1850 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "[Zubdat al-maʻārif" - ], - "shelfMark": [ - "*OGI+ 82-3286" - ], - "creatorLiteral": [ - "Iṣfahānī, Mullā ʻAlī Akbar." - ], - "createdString": [ - "1850" - ], - "dateStartYear": [ - 1850 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGI+ 82-3286" - }, - { - "type": "nypl:Bnumber", - "value": "10001550" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201585" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201548" - } - ], - "dateEndYear": [ - 1851 - ], - "updatedAt": 1653404628152, - "publicationStatement": [ - "[Tihrān?] : Chāpkhānah-ʼi Ḥajī ʻAbd al-Ḥamīd, 1267 [1850 or 1851]" - ], - "identifier": [ - "urn:bnum:10001550", - "urn:undefined:NNSZ00201585", - "urn:undefined:(WaOLN)nyp0201548" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1850" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Shīʻah -- Doctrines." - ], - "titleDisplay": [ - "[Zubdat al-maʻārif / Ākhund Mullā ʻAlī Akbar Iṣfahānī]." - ], - "uri": "b10001550", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tihrān?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - "b10001550" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058659826" - ], - "shelfMark_sort": "a*OGI+ 82-003286", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784096", - "shelfMark": [ - "*OGI+ 82-3286" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433058659826" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058659826" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001735", - "_score": null, - "_source": { - "extent": [ - "2 v. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Handbooks, vade-mecums, etc", - "Middle East", - "Middle East -- Biography" - ], - "publisherLiteral": [ - "s.n" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 1873 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nuzhat al-jalīs wa-munyat al-adīb al-anīs" - ], - "shelfMark": [ - "*ZO-158 no. 9" - ], - "creatorLiteral": [ - "Mūsawī, al-ʻAbbās ibn ʻAlī, active 1735." - ], - "createdString": [ - "1873" - ], - "dateStartYear": [ - 1873 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-158 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10001735" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201770" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201733" - } - ], - "updatedAt": 1657681910685, - "publicationStatement": [ - "[al-Qāhirah : s.n, 1873?]" - ], - "identifier": [ - "urn:bnum:10001735", - "urn:undefined:NNSZ00201770", - "urn:undefined:(WaOLN)nyp0201733" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1873" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Handbooks, vade-mecums, etc.", - "Middle East -- Biography." - ], - "titleDisplay": [ - "Nuzhat al-jalīs wa-munyat al-adīb al-anīs [microform] / taʼlīf al-ʻAbbās ibn ʻAlī ibn Nūr al-Dīn al-Makkī al-Ḥusaynī al-Mūsawī." - ], - "uri": "b10001735", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8̕." - ] - }, - "sort": [ - "b10001735" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433098135548" - ], - "physicalLocation": [ - "*ZO-158" - ], - "shelfMark_sort": "a*ZO-158 no. 000001-10", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30154976", - "shelfMark": [ - "*ZO-158 no. 1-10" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001741", - "_score": null, - "_source": { - "extent": [ - "4v. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʻIyāḍ ibn Mūsá, 1083-1149" - ], - "publisherLiteral": [ - "Matbaa-yi Osmaniye," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1897" - ], - "createdYear": [ - 1894 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nasīm al-riyāḍ fī sharḥ Shifāʼ al-Qāḍī ʻIyāḍ [microform]" - ], - "shelfMark": [ - "*ZO-162" - ], - "creatorLiteral": [ - "Khafājī, Aḥmad ibn Muḥammad, -1659." - ], - "createdString": [ - "1894" - ], - "contributorLiteral": [ - "Schiff Collection." - ], - "dateStartYear": [ - 1894 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-162" - }, - { - "type": "nypl:Bnumber", - "value": "10001741" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201776" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201739" - } - ], - "dateEndYear": [ - 1897 - ], - "updatedAt": 1641230723038, - "publicationStatement": [ - "Der-i Saadet : Matbaa-yi Osmaniye, 1312-17 [1894-97]" - ], - "identifier": [ - "urn:bnum:10001741", - "urn:undefined:NNSZ00201776", - "urn:undefined:(WaOLN)nyp0201739" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1894" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʻIyāḍ ibn Mūsá, 1083-1149." - ], - "titleDisplay": [ - "Nasīm al-riyāḍ fī sharḥ Shifāʼ al-Qāḍī ʻIyāḍ [microform] / li-Aḥmad Shihāb al-Dīn al-Khafājī al-Miṣrī." - ], - "uri": "b10001741", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Der-i Saadet :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "4̕." - ] - }, - "sort": [ - "b10001741" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105672749" - ], - "physicalLocation": [ - "*ZO-162" - ], - "shelfMark_sort": "a*ZO-162 1894-001897", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30079670", - "shelfMark": [ - "*ZO-162 1894-1897" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-162 1894-1897" - }, - { - "type": "bf:Barcode", - "value": "33433105672749" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "1894-1897" - ], - "idBarcode": [ - "33433105672749" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001747", - "_score": null, - "_source": { - "extent": [ - "8, 148 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "On margin: Aṭbāq al-dhahab / ʻAbd al-Muʼmin al-Maghribī.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Middle East", - "Middle East -- Biography" - ], - "publisherLiteral": [ - "al-Maṭbaʻah al-ʻĀmirah al-Sharafīyah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 1890 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tuḥfat ahl al-fukāhah fī al-munādamah wa-al-nazāhah" - ], - "shelfMark": [ - "*ZO-158 no. 10" - ], - "creatorLiteral": [ - "Muḥammad Saʻd ibn Muḥammad Saʻd al-Miṣrī." - ], - "createdString": [ - "1890" - ], - "contributorLiteral": [ - "Maghribī, ʻAbd al-Muʼmin.", - "Schiff Collection." - ], - "dateStartYear": [ - 1890 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-158 no. 10" - }, - { - "type": "nypl:Bnumber", - "value": "10001747" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201782" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201745" - } - ], - "updatedAt": 1657681910685, - "publicationStatement": [ - "al-Qāhirah : al-Maṭbaʻah al-ʻĀmirah al-Sharafīyah, 1307 [1890]" - ], - "identifier": [ - "urn:bnum:10001747", - "urn:undefined:NNSZ00201782", - "urn:undefined:(WaOLN)nyp0201745" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1890" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Middle East -- Biography." - ], - "titleDisplay": [ - "Tuḥfat ahl al-fukāhah [microform] : fī al-munādamah wa-al-nazāhah / li-Muḥammad Afandī Saʻd." - ], - "uri": "b10001747", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8 degrees." - ] - }, - "sort": [ - "b10001747" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433098135548" - ], - "physicalLocation": [ - "*ZO-158" - ], - "shelfMark_sort": "a*ZO-158 no. 000001-10", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30154976", - "shelfMark": [ - "*ZO-158 no. 1-10" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001936", - "_score": null, - "_source": { - "extent": [ - "400 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Publication date from cover.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Also available on microform;", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Armenian.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Microfilmed;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Armenians", - "Armenians -- Iran", - "Armenians -- Iran -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tparan Hovhannu Tēr-Abrahamian" - ], - "language": [ - { - "id": "lang:arm", - "label": "Armenian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1891 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" - ], - "shelfMark": [ - "*ONR 84-743" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Shermazanian, Galust." - ], - "createdString": [ - "1891" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1891 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONR 84-743" - }, - { - "type": "nypl:Bnumber", - "value": "10001936" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002001377-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201976" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201934" - } - ], - "idOclc": [ - "NYPG002001377-B" - ], - "updatedAt": 1671714296499, - "publicationStatement": [ - "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" - ], - "identifier": [ - "urn:bnum:10001936", - "urn:oclc:NYPG002001377-B", - "urn:undefined:NNSZ00201976", - "urn:undefined:(WaOLN)nyp0201934" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1891" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Armenians -- Iran -- History." - ], - "titleDisplay": [ - "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." - ], - "uri": "b10001936", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ṛostov (Doni Vra)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10001936" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10001936-e", - "electronicLocator": [ - { - "url": "http://hdl.handle.net/2027/nyp.33433001892276", - "label": "Full text available via HathiTrust" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10001936-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10001320", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*ONR 84-743" - ], - "identifierV2": [ - { - "value": "*ONR 84-743", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001892276" - } - ], - "physicalLocation": [ - "*ONR 84-743" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001892276" - ], - "idBarcode": [ - "33433001892276" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONR 84-000743" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002107", - "_score": null, - "_source": { - "extent": [ - "16 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "H. Laakmann," - ], - "language": [ - { - "id": "lang:est", - "label": "Estonian" - } - ], - "createdYear": [ - 1881 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Wenemaa ajaloost." - ], - "shelfMark": [ - "JFB 82-48 no. 4" - ], - "createdString": [ - "1881" - ], - "dateStartYear": [ - 1881 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 4" - }, - { - "type": "nypl:Bnumber", - "value": "10002107" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202149" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202103" - } - ], - "updatedAt": 1636143254095, - "publicationStatement": [ - "Tartus: H. Laakmann, 1881." - ], - "identifier": [ - "urn:bnum:10002107", - "urn:undefined:NNSZ00202149", - "urn:undefined:(WaOLN)nyp0202103" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1881" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Wenemaa ajaloost." - ], - "uri": "b10002107", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tartus:" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "13 cm" - ] - }, - "sort": [ - "b10002107" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005146166" - ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "shelfMark_sort": "aJFB 82-48 no. 000001", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001452", - "shelfMark": [ - "JFB 82-48 no. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 1" - }, - { - "type": "bf:Barcode", - "value": "33433005146166" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005146166" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002108", - "_score": null, - "_source": { - "extent": [ - "16 p. ; 13 cm." - ], - "publicationStatement": [ - "Tartus : M. Laakmann, 1881." - ], - "identifier": [ - "urn:bnum:10002108", - "urn:undefined:NNSZ00202150", - "urn:undefined:(WaOLN)nyp0202104" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "M. Laakmann," - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1881" - ], - "language": [ - { - "id": "lang:est", - "label": "Estonian" - } - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "createdYear": [ - 1881 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rätsepp Kergepüks." - ], - "titleDisplay": [ - "Rätsepp Kergepüks." - ], - "shelfMark": [ - "JFB 82-48 no. 3" - ], - "uri": "b10002108", - "createdString": [ - "1881" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "dateStartYear": [ - 1881 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 3" - }, - { - "type": "nypl:Bnumber", - "value": "10002108" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202150" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202104" - } - ], - "placeOfPublication": [ - "Tartus :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "updatedAt": 1636127692677 - }, - "sort": [ - "b10002108" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005146166" - ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "shelfMark_sort": "aJFB 82-48 no. 000001", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001452", - "shelfMark": [ - "JFB 82-48 no. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 1" - }, - { - "type": "bf:Barcode", - "value": "33433005146166" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005146166" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002109", - "_score": null, - "_source": { - "extent": [ - "16 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "H. Laakmann," - ], - "language": [ - { - "id": "lang:est", - "label": "Estonian" - } - ], - "createdYear": [ - 1881 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Masajalg." - ], - "shelfMark": [ - "JFB 82-48 no. 1" - ], - "createdString": [ - "1881" - ], - "dateStartYear": [ - 1881 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 1" - }, - { - "type": "nypl:Bnumber", - "value": "10002109" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202151" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202105" - } - ], - "updatedAt": 1636115332522, - "publicationStatement": [ - "Tartus : H. Laakmann, 1881." - ], - "identifier": [ - "urn:bnum:10002109", - "urn:undefined:NNSZ00202151", - "urn:undefined:(WaOLN)nyp0202105" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1881" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Masajalg." - ], - "uri": "b10002109", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tartus :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "13 cm." - ] - }, - "sort": [ - "b10002109" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005146166" - ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "shelfMark_sort": "aJFB 82-48 no. 000001", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001452", - "shelfMark": [ - "JFB 82-48 no. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 82-48 no. 1" - }, - { - "type": "bf:Barcode", - "value": "33433005146166" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005146166" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002118", - "_score": null, - "_source": { - "extent": [ - "204 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Wakālat Nāy," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1999" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Awlād bi-al-jumlah" - ], - "shelfMark": [ - "*OFD 82-4488" - ], - "creatorLiteral": [ - "Gilbreth, Frank B. (Frank Bunker), 1911-2001." - ], - "createdString": [ - "1900" - ], - "contributorLiteral": [ - "Carey, Ernestine Moller, 1908-", - "Ṭāhā, Aḥmad." - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "nypl:Bnumber", - "value": "10002118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202160" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202114" - } - ], - "uniformTitle": [ - "Cheaper by the dozen. Arabic" - ], - "dateEndYear": [ - 1999 - ], - "updatedAt": 1636076222810, - "publicationStatement": [ - "Dimashq : Wakālat Nāy, 19--." - ], - "identifier": [ - "urn:bnum:10002118", - "urn:undefined:NNSZ00202160", - "urn:undefined:(WaOLN)nyp0202114" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." - ], - "uri": "b10002118", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Cheaper by the dozen." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10002118" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001997497" - ], - "physicalLocation": [ - "*OFD 82-4488" - ], - "shelfMark_sort": "a*OFD 82-004488", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001459", - "shelfMark": [ - "*OFD 82-4488" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "bf:Barcode", - "value": "33433001997497" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001997497" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002588", - "_score": null, - "_source": { - "extent": [ - "24 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At head of title: Not published.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jews", - "Jews -- Conversion to Christianity", - "Missions to Jews" - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1840 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*XMH-2174" - ], - "creatorLiteral": [ - "Frey, Joseph Samuel C. F. (Joseph Samuel Christian Frederick), 1771-1850." - ], - "createdString": [ - "1840" - ], - "contributorLiteral": [ - "American Society for Meliorating the Condition of the Jews." - ], - "dateStartYear": [ - 1840 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*XMH-2174" - }, - { - "type": "nypl:Bnumber", - "value": "10002588" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00302930" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202584" - } - ], - "updatedAt": 1657980319626, - "publicationStatement": [ - "[New York : s.n., 1840?]" - ], - "identifier": [ - "urn:bnum:10002588", - "urn:undefined:NNSZ00302930", - "urn:undefined:(WaOLN)nyp0202584" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1840" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jews -- Conversion to Christianity.", - "Missions to Jews." - ], - "titleDisplay": [ - "Report of the late agency of the Rev. J.S.C.F. Frey [microform] : presented to the Board of Managers of the American Society for Meliorating the Condition of the Jews." - ], - "uri": "b10002588", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "[New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10002588" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002627", - "_score": null, - "_source": { - "extent": [ - "48 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Horses" - ], - "publisherLiteral": [ - "Bokförlaget Rediviva" - ], - "language": [ - { - "id": "lang:swe", - "label": "Swedish" - } - ], - "dateEndString": [ - "1837" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Undervisning i hästkännedom för korporals-skolorna vid kavalleriet inom fjerde militär-districtet" - ], - "shelfMark": [ - "*XM-15430" - ], - "creatorLiteral": [ - "Billing, J. S." - ], - "createdString": [ - "1978" - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*XM-15430" - }, - { - "type": "nypl:Bnumber", - "value": "10002627" - }, - { - "type": "bf:Isbn", - "value": "9171201017" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00302971" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202622" - } - ], - "dateEndYear": [ - 1837 - ], - "updatedAt": 1657981583132, - "publicationStatement": [ - "Stockholm : Bokförlaget Rediviva, 1978." - ], - "identifier": [ - "urn:bnum:10002627", - "urn:isbn:9171201017", - "urn:undefined:NNSZ00302971", - "urn:undefined:(WaOLN)nyp0202622" - ], - "idIsbn": [ - "9171201017" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Horses." - ], - "titleDisplay": [ - "Undervisning i hästkännedom för korporals-skolorna [microform] : vid kavalleriet inom fjerde militär-districtet / uppraättad af J. S. Billing." - ], - "uri": "b10002627", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Stockholm" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "9171201017" - ], - "dimensions": [ - "15 cm." - ] - }, - "sort": [ - "b10002627" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002631", - "_score": null, - "_source": { - "extent": [ - "44 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Socialism" - ], - "publisherLiteral": [ - "Trübsche Buchh." - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 1882 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Wetterleuchten, der Staatssozialismus und seine Consequenzen. Erster Theil" - ], - "shelfMark": [ - "*XME-10755" - ], - "creatorLiteral": [ - "Locher, Friedrich, 1820-1911." - ], - "createdString": [ - "1882" - ], - "dateStartYear": [ - 1882 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*XME-10755" - }, - { - "type": "nypl:Bnumber", - "value": "10002631" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00302975" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202626" - } - ], - "updatedAt": 1657981583132, - "publicationStatement": [ - "Zürich : Trübsche Buchh., 1882." - ], - "identifier": [ - "urn:bnum:10002631", - "urn:undefined:NNSZ00302975", - "urn:undefined:(WaOLN)nyp0202626" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1882" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Socialism." - ], - "titleDisplay": [ - "Wetterleuchten, der Staatssozialismus und seine Consequenzen. Erster Theil [microform] / von Friedrich Locher." - ], - "uri": "b10002631", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Zürich" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10002631" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003085", - "_score": null, - "_source": { - "extent": [ - "8, 172, 10 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A revision of the authoress' thesis, Varanaseya Sanskrit Vishwavidyalaya.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [1]-5 (3rd group)", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hinduism", - "Hinduism -- Rites and ceremonies", - "Vedas" - ], - "publisherLiteral": [ - "[Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ." - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "1889" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Atharvavede śāntipuṣṭikarmāṇi." - ], - "shelfMark": [ - "*OLY 83-704" - ], - "creatorLiteral": [ - "Malaviya, Maya, 1939-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "sa 68016943" - ], - "seriesStatement": [ - "Sarasvatībhavana - Adhyayanamālā, 17" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-704" - }, - { - "type": "nypl:Bnumber", - "value": "10003085" - }, - { - "type": "bf:Lccn", - "value": "sa 68016943" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303436" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203078" - } - ], - "dateEndYear": [ - 1889 - ], - "updatedAt": 1636075653207, - "publicationStatement": [ - "Vārāṇasyām [Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ. 1889 tame Śakābde [1967]" - ], - "identifier": [ - "urn:bnum:10003085", - "urn:lccn:sa 68016943", - "urn:undefined:NNSZ00303436", - "urn:undefined:(WaOLN)nyp0203078" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hinduism -- Rites and ceremonies.", - "Vedas." - ], - "titleDisplay": [ - "Atharvavede śāntipuṣṭikarmāṇi. Lekhikā sampādikā ca Māyā Mālavīyā." - ], - "uri": "b10003085", - "lccClassification": [ - "BL1226.2 .M32 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasyām" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003085" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784336", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-704" - ], - "identifierV2": [ - { - "value": "*OLY 83-704", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417965" - } - ], - "physicalLocation": [ - "*OLY 83-704" - ], - "identifier": [ - "urn:barcode:33433060417965" - ], - "idBarcode": [ - "33433060417965" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-000704" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003088", - "_score": null, - "_source": { - "extent": [ - "2, 16, 200 p. illus." - ], - "note": [ - { - "noteType": "Thesis", - "label": "Thesis -- Varanaseya Sanskrit Vishwavidyalaya.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [198]-200.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Solar eclipses" - ], - "publisherLiteral": [ - "Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ[" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "1889" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sūryagrahaṇam." - ], - "shelfMark": [ - "*OKQ 83-703" - ], - "creatorLiteral": [ - "Dvivedī, Kṛṣṇacandra." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "sa 68014918" - ], - "seriesStatement": [ - "Sarasvatībhavana - Adhyayanamālā, .15" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKQ 83-703" - }, - { - "type": "nypl:Bnumber", - "value": "10003088" - }, - { - "type": "bf:Lccn", - "value": "sa 68014918" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303439" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203081" - } - ], - "dateEndYear": [ - 1889 - ], - "updatedAt": 1636132203514, - "publicationStatement": [ - "Vārāṇasyām, Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ[ 1889 tame śakāb de [1967]" - ], - "identifier": [ - "urn:bnum:10003088", - "urn:lccn:sa 68014918", - "urn:undefined:NNSZ00303439", - "urn:undefined:(WaOLN)nyp0203081" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Solar eclipses." - ], - "titleDisplay": [ - "Sūryagrahaṇam. Lekhakaḥ sampādakaśca Kṛṣnacandra-dvivedī." - ], - "uri": "b10003088", - "lccClassification": [ - "QB541 .D83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasyām," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003088" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433002896748" - ], - "physicalLocation": [ - "*OKQ 83-703" - ], - "shelfMark_sort": "a*OKQ 83-000703", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002163", - "shelfMark": [ - "*OKQ 83-703" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKQ 83-703" - }, - { - "type": "bf:Barcode", - "value": "33433002896748" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433002896748" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003117", - "_score": null, - "_source": { - "extent": [ - "10, 192, 52 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint of the 1313 H. (1895 or 1896) ed. published by al-Sharikah al-Ṣiḥāfīyah al-ʻUthmānīyah, Istanbul.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870.", - "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870. -- Indexes", - "Hadith", - "Hadith -- Indexes", - "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875.", - "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875. -- Indexes" - ], - "publisherLiteral": [ - "Dār al-Kutub al-ʻIlmīyah," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1895" - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim" - ], - "shelfMark": [ - "*OGF 84-1307" - ], - "creatorLiteral": [ - "Tawqādī, Muḥammad al-Sharīf ibn Muṣṭafá." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "77960426" - ], - "contributorLiteral": [ - "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870.", - "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGF 84-1307" - }, - { - "type": "nypl:Bnumber", - "value": "10003117" - }, - { - "type": "bf:Lccn", - "value": "77960426" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303468" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203110" - } - ], - "dateEndYear": [ - 1895 - ], - "updatedAt": 1636116228553, - "publicationStatement": [ - "Bayrūt : Dār al-Kutub al-ʻIlmīyah, 1975." - ], - "identifier": [ - "urn:bnum:10003117", - "urn:lccn:77960426", - "urn:undefined:NNSZ00303468", - "urn:undefined:(WaOLN)nyp0203110" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870. -- Indexes.", - "Hadith -- Indexes.", - "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875. -- Indexes." - ], - "titleDisplay": [ - "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim / Muḥammad al-Sharīf ibn Muṣṭafá al-Tūqādī." - ], - "uri": "b10003117", - "lccClassification": [ - "BP135.2. T86 1975" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Miftāḥ Ṣaḥīḥ al-Bukhārī: Irshād al-sārī lil-Qasṭallānī. Fatḥ al-Bārī li-ibn Ḥajar al-ʻAsqulānī. ʻUmdat al-qārī lil-ʻAynī. Matn Ṣaḥīḥ al-Bukhārī. -- Miftāḥ Ṣaḥīḥ Muslim: al-Nawawī ʻalá Ṣaḥīḥ Muslim. Matn Ṣaḥīḥ Muslim." - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10003117" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013217298" - ], - "physicalLocation": [ - "*OGF 84-1307" - ], - "shelfMark_sort": "a*OGF 84-001307", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002177", - "shelfMark": [ - "*OGF 84-1307" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGF 84-1307" - }, - { - "type": "bf:Barcode", - "value": "33433013217298" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013217298" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003143", - "_score": null, - "_source": { - "extent": [ - "20, 784 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Reproduced from Ms. copy.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Reprint of the ed. published in Teheran, 1272 A. H.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Shīʻah", - "Shīʻah -- Doctrines" - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1855" - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ghāyat al-marām fī ḥujjat al-khiṣ̣ām ʻan ṭarīq al-khāṣṣ wa-al-ʻāmm," - ], - "shelfMark": [ - "*OGI+ 84-1305" - ], - "creatorLiteral": [ - "Baḥrānī, Hāshim ibn Sulaymān, -1695 or 6." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75961367" - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGI+ 84-1305" - }, - { - "type": "nypl:Bnumber", - "value": "10003143" - }, - { - "type": "bf:Lccn", - "value": "75961367" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303494" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203136" - } - ], - "dateEndYear": [ - 1855 - ], - "updatedAt": 1641231073322, - "publicationStatement": [ - "[Bayrūt, Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1968]" - ], - "identifier": [ - "urn:bnum:10003143", - "urn:lccn:75961367", - "urn:undefined:NNSZ00303494", - "urn:undefined:(WaOLN)nyp0203136" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Shīʻah -- Doctrines." - ], - "titleDisplay": [ - "Ghāyat al-marām fī ḥujjat al-khiṣ̣ām ʻan ṭarīq al-khāṣṣ wa-al-ʻāmm, lil-Baḥrānī." - ], - "uri": "b10003143", - "lccClassification": [ - "BP194 .B3 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10003143" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058659842" - ], - "shelfMark_sort": "a*OGI+ 84-001305", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784359", - "shelfMark": [ - "*OGI+ 84-1305" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433058659842" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058659842" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003146", - "_score": null, - "_source": { - "extent": [ - "[i], 4, 120, 796 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p. in English: ... ed. by Ananda Chandra Vedantavagisa.", - "type": "bf:Note" - }, - { - "noteType": "Original Version", - "label": "Originally published:", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Lāṭyāyanaśrautasūtra", - "Vedas" - ], - "publisherLiteral": [ - "Munshiram Manoharlal Publishers," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "1872" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srautasūtram" - ], - "shelfMark": [ - "*OKH 84-1426" - ], - "createdString": [ - "1982" - ], - "contributorLiteral": [ - "Agnisvāmi.", - "Kashikar, C. G.", - "Lāṭyāyanaśrautasūtra.", - "Vedāntavāgīśa, Ānandacandra." - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKH 84-1426" - }, - { - "type": "nypl:Bnumber", - "value": "10003146" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303497" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203139" - } - ], - "uniformTitle": [ - "Vedas. Sāmaveda Srautasutra." - ], - "dateEndYear": [ - 1872 - ], - "updatedAt": 1636130442624, - "publicationStatement": [ - "New Delhi : Munshiram Manoharlal Publishers, 1982." - ], - "identifier": [ - "urn:bnum:10003146", - "urn:undefined:NNSZ00303497", - "urn:undefined:(WaOLN)nyp0203139" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lāṭyāyanaśrautasūtra.", - "Vedas." - ], - "titleDisplay": [ - "Srautasūtram / Lāṭyāyanācārya praṇītam ; Agnisvāmiviracitabhāṣyasahitam ; Śrīānandacandravēdāntavāgīśena pariśodhitam ; [with new appendix containing corrections and emendations to the text by Dr. C. G. Kashikar]." - ], - "uri": "b10003146", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003146" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058568993" - ], - "shelfMark_sort": "a*OKH 84-001426", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784362", - "shelfMark": [ - "*OKH 84-1426" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433058568993" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058568993" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003158", - "_score": null, - "_source": { - "extent": [ - "608 p. in various pagings ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint ed.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Chinese.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Medicine, Chinese" - ], - "publisherLiteral": [ - "Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si," - ], - "language": [ - { - "id": "lang:chi", - "label": "Chinese" - } - ], - "dateEndString": [ - "1670" - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zheng yin mo zhi : [4 juan]" - ], - "shelfMark": [ - "*OVL 84-1330" - ], - "creatorLiteral": [ - "Qin, Changyu, active 17th century." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "77839836" - ], - "seriesStatement": [ - "zhongguo yi yao zong shu." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OVL 84-1330" - }, - { - "type": "nypl:Bnumber", - "value": "10003158" - }, - { - "type": "bf:Lccn", - "value": "77839836" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303509" - } - ], - "dateEndYear": [ - 1670 - ], - "updatedAt": 1641391919318, - "publicationStatement": [ - "Taipei xian yonghe zhen : Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si, Min'Guo 61[1972]" - ], - "identifier": [ - "urn:bnum:10003158", - "urn:lccn:77839836", - "urn:undefined:NNSZ00303509" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Medicine, Chinese." - ], - "titleDisplay": [ - "Zheng yin mo zhi : [4 juan] / Qin Jingming [Changyu] zhu ; Qin Zhizheng ji ; [Cao Binzhang quan dian]." - ], - "uri": "b10003158", - "lccClassification": [ - "R128.7 .C545" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Taipei xian yonghe zhen :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10003158" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001746852" - ], - "physicalLocation": [ - "*OVL 84-1330" - ], - "shelfMark_sort": "a*OVL 84-001330", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002193", - "shelfMark": [ - "*OVL 84-1330" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OVL 84-1330" - }, - { - "type": "bf:Barcode", - "value": "33433001746852" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001746852" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003190", - "_score": null, - "_source": { - "extent": [ - "606 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Basavapurāṇavu.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Kannaḍa sāhitya caritre.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Basava, active 1160", - "Basava, active 1160 -- Poetry", - "Lingayats", - "Lingayats -- Poetry" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Basavapurāṇavu" - ], - "shelfMark": [ - "*OLA+ 82-1360" - ], - "creatorLiteral": [ - "Palakuriki Somanatha, active 13th century." - ], - "createdString": [ - "1800" - ], - "contributorLiteral": [ - "Bhīmakavi, active 1369." - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 82-1360" - }, - { - "type": "nypl:Bnumber", - "value": "10003190" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303541" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203183" - } - ], - "uniformTitle": [ - "Basavapurāṇamu. Kannada" - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1636076831370, - "publicationStatement": [ - "[S.1. : s.n., 18--?]" - ], - "identifier": [ - "urn:bnum:10003190", - "urn:undefined:NNSZ00303541", - "urn:undefined:(WaOLN)nyp0203183" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Basava, active 1160 -- Poetry.", - "Lingayats -- Poetry." - ], - "titleDisplay": [ - "Basavapurāṇavu / [Bhīmakavi viracita ; Sōmanātha kaviya Telugu Basavapurāṇamuvina Kannaḍa anuvāda]." - ], - "uri": "b10003190", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.1. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Basavapurāṇamu." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10003190" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433069579674" - ], - "shelfMark_sort": "a*OLA+ 82-001360", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784381", - "shelfMark": [ - "*OLA+ 82-1360" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433069579674" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433069579674" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003301", - "_score": null, - "_source": { - "extent": [ - "v. : ill., map, facsims. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kurds", - "Kurds -- Iran", - "Kurds -- Iran -- History" - ], - "publisherLiteral": [ - "Chāpkhānah-ʼi Kūshish," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" - ], - "shelfMark": [ - "*OMR 84-1145" - ], - "creatorLiteral": [ - "Tavaḥḥudī Awghāzī, Kalīm Allāh." - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145" - }, - { - "type": "nypl:Bnumber", - "value": "10003301" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303655" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000007" - } - ], - "dateEndYear": [ - 999 - ], - "updatedAt": 1636103985760, - "publicationStatement": [ - "Mashhad : Chāpkhānah-ʼi Kūshish, 1359- [1981- ]" - ], - "identifier": [ - "urn:bnum:10003301", - "urn:undefined:NNSZ00303655", - "urn:undefined:(WaOLN)nyp0000007" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kurds -- Iran -- History." - ], - "titleDisplay": [ - "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān / taʼlīf-i Kalīm Allāh Tavaḥḥudī (Awghāzi)" - ], - "uri": "b10003301", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Mashhad :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003301" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013135854" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002283", - "shelfMark": [ - "*OMR 84-1145 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013135854" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013135854" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013135847" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002282", - "shelfMark": [ - "*OMR 84-1145 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433013135847" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433013135847" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013136530" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002281", - "shelfMark": [ - "*OMR 84-1145 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013136530" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013136530" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003564", - "_score": null, - "_source": { - "extent": [ - "13, 496 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Abū Ṭālib Shīrāzī," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "createdYear": [ - 1859 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ḥadīqat al-ḥaqīqah va sharīʻat al-ṭarīqah" - ], - "shelfMark": [ - "*OMQ 82-3324" - ], - "creatorLiteral": [ - "Sanāʼī al-Ghaznavī, Abū al-Majd Majdūd ibn Ādam, -approximately 1150." - ], - "createdString": [ - "1859" - ], - "dateStartYear": [ - 1859 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 82-3324" - }, - { - "type": "nypl:Bnumber", - "value": "10003564" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303920" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203556" - } - ], - "updatedAt": 1636103985797, - "publicationStatement": [ - "Bumbaʼī : Abū Ṭālib Shīrāzī, 1859." - ], - "identifier": [ - "urn:bnum:10003564", - "urn:undefined:NNSZ00303920", - "urn:undefined:(WaOLN)nyp0203556" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1859" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Ḥadīqat al-ḥaqīqah va sharīʻat al-ṭarīqah / Abū al-Majd Majdūd ibn Ādam al-Sanāʼī al-Ghaznavī." - ], - "uri": "b10003564", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bumbaʼī :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10003564" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013144385" - ], - "physicalLocation": [ - "*OMQ 82-3324" - ], - "shelfMark_sort": "a*OMQ 82-003324", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002468", - "shelfMark": [ - "*OMQ 82-3324" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 82-3324" - }, - { - "type": "bf:Barcode", - "value": "33433013144385" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433013144385" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003703", - "_score": null, - "_source": { - "extent": [ - "253 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "J.R. Vilímek," - ], - "language": [ - { - "id": "lang:cze", - "label": "Czech" - } - ], - "dateEndString": [ - "1983" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Listí po krajích rozváté : básně" - ], - "shelfMark": [ - "*QVH 83-187" - ], - "creatorLiteral": [ - "Svoboda, František Xaver, 1860-" - ], - "createdString": [ - "1900" - ], - "seriesStatement": [ - "Spisy / F.X. Svobody ; 23" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QVH 83-187" - }, - { - "type": "nypl:Bnumber", - "value": "10003703" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304061" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203695" - } - ], - "dateEndYear": [ - 1983 - ], - "updatedAt": 1636113429964, - "publicationStatement": [ - "V Praze : J.R. Vilímek, [19--]." - ], - "identifier": [ - "urn:bnum:10003703", - "urn:undefined:NNSZ00304061", - "urn:undefined:(WaOLN)nyp0203695" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Listí po krajích rozváté : básně / F. X. Svoboda." - ], - "uri": "b10003703", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "V Praze :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10003703" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011955378" - ], - "physicalLocation": [ - "*QVH 83-187" - ], - "shelfMark_sort": "a*QVH 83-000187", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002586", - "shelfMark": [ - "*QVH 83-187" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QVH 83-187" - }, - { - "type": "bf:Barcode", - "value": "33433011955378" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433011955378" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003857", - "_score": null, - "_source": { - "extent": [ - "319 p. : ill., plates, maps ;" - ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "‏بيروت : دار مكتبة الحياة, [196-؟]" - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "‏بيروت :" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Yemen (Republic)" - ], - "publisherLiteral": [ - "Dār Maktabat al-Ḥayāh," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 196 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah /" - ], - "parallelTitle": [ - "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة /" - ], - "shelfMark": [ - "*OFI 82-4419" - ], - "creatorLiteral": [ - "Tarsīsī, ʻAdnān." - ], - "createdString": [ - "196" - ], - "parallelPublisher": [ - "‏دار مكتبة الحياة," - ], - "idLccn": [ - "ne 64003290" - ], - "dateStartYear": [ - 196 - ], - "parallelCreatorLiteral": [ - "‏ترسيسي, عدنان." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFI 82-4419" - }, - { - "type": "nypl:Bnumber", - "value": "10003857" - }, - { - "type": "bf:Lccn", - "value": "ne 64003290" - }, - { - "type": "nypl:Oclc", - "value": "11272192" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11272192" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)221366702" - } - ], - "idOclc": [ - "11272192" - ], - "updatedAt": 1649121307527, - "publicationStatement": [ - "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" - ], - "identifier": [ - "urn:bnum:10003857", - "urn:lccn:ne 64003290", - "urn:oclc:11272192", - "urn:undefined:(OCoLC)11272192", - "urn:undefined:(OCoLC)221366702" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "196" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Yemen (Republic)" - ], - "titleDisplay": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah / [taʼlīf] ʻAdnān Tarsīsī." - ], - "uri": "b10003857", - "lccClassification": [ - "DS247.Y4 T3" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "parallelTitleDisplay": [ - "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة / [تاليف] عدنان ترسيسي." - ], - "placeOfPublication": [ - "Bayrūt :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Includes musical score of national anthem of Yemen Arab Republic." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003857" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433101143836" - ], - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i29202258", - "shelfMark": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" - }, - { - "type": "bf:Barcode", - "value": "33433101143836" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433101143836" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433002023293" - ], - "physicalLocation": [ - "*OFI 82-4419" - ], - "shelfMark_sort": "a*OFI 82-004419", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002714", - "shelfMark": [ - "*OFI 82-4419" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFI 82-4419" - }, - { - "type": "bf:Barcode", - "value": "33433002023293" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433002023293" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004026", - "_score": null, - "_source": { - "extent": [ - "[15], 409 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Based on conversation with Sayyāḥ yamanī.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sufism" - ], - "publisherLiteral": [ - "s.n.,]" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1890" - ], - "createdYear": [ - 1889 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Haẕā Kitāb-i hadīqat al-inṣāf" - ], - "shelfMark": [ - "*OMQ 82-3319" - ], - "creatorLiteral": [ - "Sarmast Rūmī, ʻAbd al-Karīm Maḥmūd." - ], - "createdString": [ - "1889" - ], - "contributorLiteral": [ - "Sayyāḥ yamanī." - ], - "dateStartYear": [ - 1889 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 82-3319" - }, - { - "type": "nypl:Bnumber", - "value": "10004026" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304387" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204018" - } - ], - "dateEndYear": [ - 1890 - ], - "updatedAt": 1636101588849, - "publicationStatement": [ - "[S.l. : s.n.,] 1307 [1889 or 1890]" - ], - "identifier": [ - "urn:bnum:10004026", - "urn:undefined:NNSZ00304387", - "urn:undefined:(WaOLN)nyp0204018" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1889" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sufism." - ], - "titleDisplay": [ - "Haẕā Kitāb-i hadīqat al-inṣāf / [ʻAbd al-Karīm Sarmast Rūmī]." - ], - "uri": "b10004026", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Ḥadīqat al-inṣāf." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10004026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013144377" - ], - "physicalLocation": [ - "*OMQ 82-3319" - ], - "shelfMark_sort": "a*OMQ 82-003319", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002864", - "shelfMark": [ - "*OMQ 82-3319" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 82-3319" - }, - { - "type": "bf:Barcode", - "value": "33433013144377" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433013144377" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004080", - "_score": null, - "_source": { - "extent": [ - "2v." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Esosiẏeṭeḍa Pābaliśārsa" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "dateEndString": [ - "62" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Junāpura Sṭīla." - ], - "shelfMark": [ - "*OKV 82-3891" - ], - "creatorLiteral": [ - "Mānnā, Guṇamaẏa, 1925-2010." - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "sa 63003864" - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891" - }, - { - "type": "nypl:Bnumber", - "value": "10004080" - }, - { - "type": "bf:Lccn", - "value": "sa 63003864" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304442" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204072" - } - ], - "dateEndYear": [ - 62 - ], - "updatedAt": 1636108800927, - "publicationStatement": [ - "[Kalakātā] Esosiẏeṭeḍa Pābaliśārsa [1960-1962]" - ], - "identifier": [ - "urn:bnum:10004080", - "urn:lccn:sa 63003864", - "urn:undefined:NNSZ00304442", - "urn:undefined:(WaOLN)nyp0204072" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Junāpura Sṭīla. [Lekhaka] Guṇamaẏa Mānnā." - ], - "uri": "b10004080", - "lccClassification": [ - "PK1718.M253 53" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Kalakātā]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10004080" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011168402" - ], - "physicalLocation": [ - "*OKV 82-3891" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002917", - "shelfMark": [ - "*OKV 82-3891 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433011168402" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433011168402" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011168394" - ], - "physicalLocation": [ - "*OKV 82-3891" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002916", - "shelfMark": [ - "*OKV 82-3891 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433011168394" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433011168394" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004340", - "_score": null, - "_source": { - "extent": [ - "11, 552, 28 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Medicine, Arab" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maṭbaʻat Muḥammad Rashīd ibn Dāvūd al-Saʻdī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1895 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hādhā kitāb Daqaʼiq al-ʻilāj fī al-ṭibb al-badanī" - ], - "shelfMark": [ - "*OGB 83-1915" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kirmānī, Muḥammad Karīm Khān, 1809-1870." - ], - "createdString": [ - "1895" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1895 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGB 83-1915" - }, - { - "type": "nypl:Bnumber", - "value": "10004340" - }, - { - "type": "nypl:Oclc", - "value": "NYPG003001809-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304705" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204332" - } - ], - "idOclc": [ - "NYPG003001809-B" - ], - "updatedAt": 1671713042723, - "publicationStatement": [ - "Bumbaʼī : Maṭbaʻat Muḥammad Rashīd ibn Dāvūd al-Saʻdī, 1315 [1895]" - ], - "identifier": [ - "urn:bnum:10004340", - "urn:oclc:NYPG003001809-B", - "urn:undefined:NNSZ00304705", - "urn:undefined:(WaOLN)nyp0204332" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1895" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Medicine, Arab." - ], - "titleDisplay": [ - "Hādhā kitāb Daqaʼiq al-ʻilāj fī al-ṭibb al-badanī / min muṣannafāt Muḥammad Karīm Khān al-Kirmānī." - ], - "uri": "b10004340", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bumbaʼī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Daqāʼiq al-ʻilāj." - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10004340" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10004340-e", - "electronicLocator": [ - { - "url": "http://hdl.handle.net/2027/nyp.33433019817224", - "label": "Full text available via HathiTrust" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10004340-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540130", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OGB 83-1915" - ], - "identifierV2": [ - { - "value": "*OGB 83-1915", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019817224" - } - ], - "physicalLocation": [ - "*OGB 83-1915" - ], - "identifier": [ - "urn:barcode:33433019817224" - ], - "idBarcode": [ - "33433019817224" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGB 83-001915" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004504", - "_score": null, - "_source": { - "extent": [ - "34 p.;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Pronunciation" - ], - "publisherLiteral": [ - "Naṭarācaṉ," - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 197 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" - ], - "shelfMark": [ - "*OLB 83-2757" - ], - "creatorLiteral": [ - "Natarajan, Subbiah, 1911-" - ], - "createdString": [ - "197" - ], - "idLccn": [ - "75906338" - ], - "dateStartYear": [ - 197 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2757" - }, - { - "type": "nypl:Bnumber", - "value": "10004504" - }, - { - "type": "bf:Lccn", - "value": "75906338" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304869" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204496" - } - ], - "updatedAt": 1636132308475, - "publicationStatement": [ - "[Tūttukkuṭi]: Naṭarācaṉ, 1974." - ], - "identifier": [ - "urn:bnum:10004504", - "urn:lccn:75906338", - "urn:undefined:NNSZ00304869", - "urn:undefined:(WaOLN)nyp0204496" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "197" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Pronunciation." - ], - "titleDisplay": [ - "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum/ Cu. Naṭarājaṉ." - ], - "uri": "b10004504", - "lccClassification": [ - "PL4754 .N33 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tūttukkuṭi]:" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10004504" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061296681" - ], - "physicalLocation": [ - "*OLB 83-2757" - ], - "shelfMark_sort": "a*OLB 83-002757", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784546", - "shelfMark": [ - "*OLB 83-2757" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2757" - }, - { - "type": "bf:Barcode", - "value": "33433061296681" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433061296681" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004657", - "_score": null, - "_source": { - "extent": [ - "2 p. l., iii, 404, vi p. 1 plate." - ], - "note": [ - { - "noteType": "Note", - "label": "Niscaladasa, supposed author.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "H. Dhole," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1885 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The metaphysics of the Upanishads, Vicharsagar [microform]." - ], - "shelfMark": [ - "*ZO-179 no. 8" - ], - "createdString": [ - "1885" - ], - "seriesStatement": [ - "Dhole's Vedanta series, \\3" - ], - "contributorLiteral": [ - "Niscaladasa." - ], - "dateStartYear": [ - 1885 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-179 no. 8" - }, - { - "type": "nypl:Bnumber", - "value": "10004657" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405768" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204649" - } - ], - "uniformTitle": [ - "Upanishads. English." - ], - "updatedAt": 1636136428813, - "publicationStatement": [ - "Calcutta, H. Dhole, 1885." - ], - "identifier": [ - "urn:bnum:10004657", - "urn:undefined:NNSZ00405768", - "urn:undefined:(WaOLN)nyp0204649" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1885" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The metaphysics of the Upanishads, Vicharsagar [microform]. Translated with copious notes by Lala Sreeram." - ], - "uri": "b10004657", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Calcutta," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Vicharsagar." - ], - "dimensions": [ - "8̕." - ] - }, - "sort": [ - "b10004657" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105673085" - ], - "physicalLocation": [ - "*ZO-179" - ], - "shelfMark_sort": "a*ZO-179 9 misc oriental titles", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30080087", - "shelfMark": [ - "*ZO-179 9 misc oriental titles" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004661", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gregorius de Montelongo", - "Italy", - "Italy -- History", - "Italy -- History -- 476-1492" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 1898 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Gregorius de Montelongo [microform]. Ein Beitrag zur Geschichte Oberitaliens in den Jahren 1238-1269." - ], - "shelfMark": [ - "*Z-3433 no. 3" - ], - "creatorLiteral": [ - "Frankfurth, Hermann." - ], - "createdString": [ - "1898" - ], - "dateStartYear": [ - 1898 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3433 no. 3" - }, - { - "type": "nypl:Bnumber", - "value": "10004661" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405772" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204653" - } - ], - "updatedAt": 1636100134306, - "publicationStatement": [ - "Marburg, N.G. Elwert, 1808." - ], - "identifier": [ - "urn:bnum:10004661", - "urn:undefined:NNSZ00405772", - "urn:undefined:(WaOLN)nyp0204653" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1898" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gregorius de Montelongo.", - "Italy -- History -- 476-1492." - ], - "titleDisplay": [ - "Gregorius de Montelongo [microform]. Ein Beitrag zur Geschichte Oberitaliens in den Jahren 1238-1269. Von Hermann Frankfurth." - ], - "uri": "b10004661", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Marburg," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "8̕." - ] - }, - "sort": [ - "b10004661" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30141341", - "shelfMark": [ - "*Z-3433" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3433" - }, - { - "type": "bf:Barcode", - "value": "33433107964664" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433107964664" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004664", - "_score": null, - "_source": { - "extent": [ - "ix, [11]-149 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cuban question", - "Cuban question -- To 1895" - ], - "publisherLiteral": [ - "Impr. de \"El Cronista,\"" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "createdYear": [ - 1872 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cuba puede ser independiente Folleto político de actualidad" - ], - "shelfMark": [ - "*ZH-695 no. 6" - ], - "creatorLiteral": [ - "Ferrer de Couto, José, 1820-1877." - ], - "createdString": [ - "1872" - ], - "idLccn": [ - "17000612" - ], - "dateStartYear": [ - 1872 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZH-695 no. 6" - }, - { - "type": "nypl:Bnumber", - "value": "10004664" - }, - { - "type": "bf:Lccn", - "value": "17000612" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405775" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204656" - } - ], - "updatedAt": 1657687667468, - "publicationStatement": [ - "Nueva York, Impr. de \"El Cronista,\" 1872." - ], - "identifier": [ - "urn:bnum:10004664", - "urn:lccn:17000612", - "urn:undefined:NNSZ00405775", - "urn:undefined:(WaOLN)nyp0204656" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1872" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cuban question -- To 1895." - ], - "titleDisplay": [ - "Cuba puede ser independiente [microform]. Folleto político de actualidad, por José Ferrer de Couto." - ], - "uri": "b10004664", - "lccClassification": [ - "F1783 .F39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Nueva York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10004664" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433110498031" - ], - "physicalLocation": [ - "*ZH-695" - ], - "shelfMark_sort": "a*ZH-695 8 misc. American history titles", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30805021", - "shelfMark": [ - "*ZH-695 8 misc. American history titles" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004665", - "_score": null, - "_source": { - "extent": [ - "2 p.l., v., 382 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gustav III, King of Sweden, 1746-1792" - ], - "publisherLiteral": [ - "Amyot," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1861 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Gustave III, roi de Suède, 1746-1792 [microform]," - ], - "shelfMark": [ - "*Z-3354 no. 2" - ], - "creatorLiteral": [ - "Léouzon Le Duc, L. (Louis), 1815-1889." - ], - "createdString": [ - "1861" - ], - "idLccn": [ - "05008965" - ], - "seriesStatement": [ - "Les Couronnes sanglantes" - ], - "dateStartYear": [ - 1861 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3354 no. 2" - }, - { - "type": "nypl:Bnumber", - "value": "10004665" - }, - { - "type": "bf:Lccn", - "value": "05008965" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405776" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204657" - } - ], - "updatedAt": 1636100755031, - "publicationStatement": [ - "Paris, Amyot, 1861." - ], - "identifier": [ - "urn:bnum:10004665", - "urn:lccn:05008965", - "urn:undefined:NNSZ00405776", - "urn:undefined:(WaOLN)nyp0204657" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1861" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gustav III, King of Sweden, 1746-1792." - ], - "titleDisplay": [ - "Gustave III, roi de Suède, 1746-1792 [microform], par L. Léouzon Le Duc." - ], - "uri": "b10004665", - "lccClassification": [ - "DL766 .L58" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Gustave trois, roi de Suède, 1746-1792." - ], - "dimensions": [ - "19cm." - ] - }, - "sort": [ - "b10004665" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433107663993" - ], - "physicalLocation": [ - "*Z-3354" - ], - "shelfMark_sort": "a*Z-3354 no. 000001-7", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30147719", - "shelfMark": [ - "*Z-3354 no. 1-7" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-6fa83483f91c71a2a4b98ac73c958162.json b/test/fixtures/query-6fa83483f91c71a2a4b98ac73c958162.json new file mode 100644 index 00000000..9e5f3002 --- /dev/null +++ b/test/fixtures/query-6fa83483f91c71a2a4b98ac73c958162.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 12, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"ISSN \\\\-\\\\- 022\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"ISSN \\\\-\\\\- 022\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"ISSN \\\\-\\\\- 022\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1063" + }, + "timeout": 30000 + }, + "options": {}, + "id": 63 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-707de869c4b3e2190f67566671fab9f4.json b/test/fixtures/query-707de869c4b3e2190f67566671fab9f4.json new file mode 100644 index 00000000..3099d566 --- /dev/null +++ b/test/fixtures/query-707de869c4b3e2190f67566671fab9f4.json @@ -0,0 +1,23806 @@ +{ + "body": { + "took": 418, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 301, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004373", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994" + ], + "publisherLiteral": [ + "Karnāṭaka Sahakārī Prakāśana Mandira" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu." + ], + "shelfMark": [ + "*OLA 83-3417" + ], + "creatorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902119" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417" + }, + { + "type": "nypl:Bnumber", + "value": "10004373" + }, + { + "type": "bf:Lccn", + "value": "72902119" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304738" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204365" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636109940889, + "publicationStatement": [ + "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" + ], + "identifier": [ + "urn:bnum:10004373", + "urn:lccn:72902119", + "urn:undefined:NNSZ00304738", + "urn:undefined:(WaOLN)nyp0204365" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994." + ], + "titleDisplay": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." + ], + "uri": "b10004373", + "lccClassification": [ + "PL4659.P797 S7934" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004373" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003188", + "shelfMark": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417 Library has: Vol. 1, 3." + }, + { + "type": "bf:Barcode", + "value": "33433001707623" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001707623" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057523718" + ], + "physicalLocation": [ + "*OLA 83-341" + ], + "shelfMark_sort": "a*OLA 83-341 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858227", + "shelfMark": [ + "*OLA 83-341 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-341 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057523718" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057523718" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008327", + "_score": null, + "_source": { + "extent": [ + "v. : ill ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editors vary.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Folk literature, Kannada", + "Folk literature, Kannada -- History and criticism" + ], + "publisherLiteral": [ + "Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jānapada sāhityadarśana" + ], + "shelfMark": [ + "*OLA 83-2636" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75904046" + ], + "seriesStatement": [ + "Jānapada sammēḷana smaraṇe ; 1-2, 4" + ], + "contributorLiteral": [ + "Hiremath, Rudrayya Chandrayya, 1922-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636" + }, + { + "type": "nypl:Bnumber", + "value": "10008327" + }, + { + "type": "bf:Lccn", + "value": "75904046" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00609733" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208308" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108824394, + "publicationStatement": [ + "Dhāravāḍa : Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya, 1974-" + ], + "identifier": [ + "urn:bnum:10008327", + "urn:lccn:75904046", + "urn:undefined:NNSZ00609733", + "urn:undefined:(WaOLN)nyp0208308" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Folk literature, Kannada -- History and criticism." + ], + "titleDisplay": [ + "Jānapada sāhityadarśana / sampādakaru Ār. Si. Hirēmaṭha." + ], + "uri": "b10008327", + "lccClassification": [ + "PL4654 .J3" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Dhāravāḍa :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10008327" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013119130" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004641", + "shelfMark": [ + "*OLA 83-2636 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013119130" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013119130" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005544246" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004640", + "shelfMark": [ + "*OLA 83-2636 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433005544246" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433005544246" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005544238" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004639", + "shelfMark": [ + "*OLA 83-2636 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005544238" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433005544238" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011457", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographic references and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada and Sanskrit (Kannada script), includes quotations in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Music", + "Music -- India", + "Music -- India -- History and criticism", + "Carnatic music", + "Carnatic music -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prasārāṅga, Maisuru Viśvavidyanilaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Śārṅgadēva viracita Saṅgītaratnākara : Nihśaṅkahrdaya vemba Kannaḍa vyākhyāna samēta" + ], + "shelfMark": [ + "JMM 86-1" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Śārṅgadeva." + ], + "createdString": [ + "1968" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Satyanarayana, R." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMM 86-1" + }, + { + "type": "nypl:Bnumber", + "value": "10011457" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000431-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213437" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211429" + } + ], + "idOclc": [ + "NYPG012000431-B" + ], + "uniformTitle": [ + "Saṅgītaratnākara" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689717208157, + "publicationStatement": [ + "Maisūru : Prasārāṅga, Maisuru Viśvavidyanilaya, 1968-" + ], + "identifier": [ + "urn:bnum:10011457", + "urn:oclc:NYPG012000431-B", + "urn:undefined:NNSZ01213437", + "urn:undefined:(WaOLN)nyp0211429" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Music -- India -- History and criticism.", + "Carnatic music -- History and criticism." + ], + "titleDisplay": [ + "Śrī Śārṅgadēva viracita Saṅgītaratnākara : Nihśaṅkahrdaya vemba Kannaḍa vyākhyāna samēta / anuvāda mattu vyākhyāna, Ra. Satyanārāyaṇa (Maisūru Sahōdararu)." + ], + "uri": "b10011457", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "titleAlt": [ + "Saṅgītaratnākara", + "Niḥśaṅkahrdaya." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10011457" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14747261", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMM 86-1 v. 1, pt. 1" + ], + "identifierV2": [ + { + "value": "JMM 86-1 v. 1, pt. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068848849" + } + ], + "enumerationChronology": [ + "v. 1, pt. 1" + ], + "physicalLocation": [ + "JMM 86-1" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433068848849" + ], + "idBarcode": [ + "33433068848849" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMM 86-1 v. 000001, pt. 1" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011462", + "_score": null, + "_source": { + "extent": [ + "v. illus., maps (part fold.)" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "India", + "India -- Description and travel" + ], + "publisherLiteral": [ + "Prasārāṅga, Maisūru Viśvavidyānilaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Pravāsi kaṇḍa Iṇḍiyā." + ], + "shelfMark": [ + "*OLA 86-308" + ], + "creatorLiteral": [ + "Nāgēgauḍa, H. L." + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 67002221" + ], + "seriesStatement": [ + "Maisūru Viśvavidyānilaya Kannaḍa granthamāle, 71, 84" + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-308" + }, + { + "type": "nypl:Bnumber", + "value": "10011462" + }, + { + "type": "bf:Lccn", + "value": "sa 67002221" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213442" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211434" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636123272140, + "publicationStatement": [ + "[Maisūru] Prasārāṅga, Maisūru Viśvavidyānilaya, 1964-" + ], + "identifier": [ + "urn:bnum:10011462", + "urn:lccn:sa 67002221", + "urn:undefined:NNSZ01213442", + "urn:undefined:(WaOLN)nyp0211434" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "India -- Description and travel." + ], + "titleDisplay": [ + "Pravāsi kaṇḍa Iṇḍiyā. [Lēkhaka] Ec. El. Nāgēgauḍa." + ], + "uri": "b10011462", + "lccClassification": [ + "DS409 .N3" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Maisūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10011462" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999664" + ], + "physicalLocation": [ + "*OLA 86-308|zLibrary has: Vol. 4, 6." + ], + "shelfMark_sort": "a*OLA 86-308|zLibrary has: Vol. 4, 6. v. 000006", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10005558", + "shelfMark": [ + "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433012999664" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433012999664" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999656" + ], + "physicalLocation": [ + "*OLA 86-308|zLibrary has: Vol. 4, 6." + ], + "shelfMark_sort": "a*OLA 86-308|zLibrary has: Vol. 4, 6. v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10005557", + "shelfMark": [ + "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433012999656" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433012999656" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011472", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes Jambukhaṇḍi Vadirājacāryaʼs Bhavāsucana ṭ̄kā and Vyāsadāsa's Siddhānta Kaumudī ṭīkā in Sanskrit (Kannada Script) with Kannada rendering by Kēśavācārya Jālihāḷa.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Dates taken from the book; vol. 6 published in 1964.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada; explanatory notes in Sanskrit (Kannada script) and Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vishnu (Hindu deity)", + "Vishnu (Hindu deity) -- Poetry", + "Dvaita (Vedanta)" + ], + "publisherLiteral": [ + "H. Gorabāḷa" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1959 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Harikathāmrtasāra ṭīkā Pañcaratna prakāśikā" + ], + "shelfMark": [ + "*OLA 86-1120" + ], + "creatorLiteral": [ + "Jagannātha Dāsa, 1487-1547." + ], + "createdString": [ + "1959" + ], + "seriesStatement": [ + "Śrī Varadēndra Haridāsa Sāhitya Maṇḍala prakaṭane ; 72" + ], + "contributorLiteral": [ + "Gorabāḷa, Hanumantarāva.", + "Jalihāḷa, Kēśavācārya." + ], + "dateStartYear": [ + 1959 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-1120" + }, + { + "type": "nypl:Bnumber", + "value": "10011472" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213452" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211444" + } + ], + "uniformTitle": [ + "Harikathāmrtasāra" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1653404645185, + "publicationStatement": [ + "Lingasūgūru : H. Gorabāḷa, 1959?-" + ], + "identifier": [ + "urn:bnum:10011472", + "urn:undefined:NNSZ01213452", + "urn:undefined:(WaOLN)nyp0211444" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vishnu (Hindu deity) -- Poetry.", + "Dvaita (Vedanta)" + ], + "titleDisplay": [ + "Śrī Harikathāmrtasāra ṭīkā Pañcaratna prakāśikā / Śrīmajjagannātha Dāsārya viracita ; sandhigaḷa sāra Gorabāḷa (Sundara Viṭhala)" + ], + "uri": "b10011472", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lingasūgūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Harikathāmrtasāra", + "Pancaratna prakāśikā." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10011472" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013000082" + ], + "physicalLocation": [ + "*OLA 86-1120|zLibrary has: Vol. 6." + ], + "shelfMark_sort": "a*OLA 86-1120|zLibrary has: Vol. 6. v. 000006", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10005568", + "shelfMark": [ + "*OLA 86-1120|zLibrary has: Vol. 6. v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-1120|zLibrary has: Vol. 6. v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433013000082" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433013000082" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011759", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes music in letter notation.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: v. 1, p. [204]", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Carnatic music", + "Carnatic music -- History and criticism", + "Songs, Telugu" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prasārāṅga, Maisūru Viśvavidyānilaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kīrtana darpaṇa : prāyōgika saṅgītaśāstra" + ], + "shelfMark": [ + "JML 86-5" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75907259" + ], + "seriesStatement": [ + "Paṭhyapustaka māle ; 76" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ramaratnam, V., 1917-", + "Ratna, M. V.", + "Anantharamaiah, R. L., 1937-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JML 86-5" + }, + { + "type": "nypl:Bnumber", + "value": "10011759" + }, + { + "type": "bf:Lccn", + "value": "75907259" + }, + { + "type": "nypl:Oclc", + "value": "NYPG013000003-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01314591" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211726" + } + ], + "idOclc": [ + "NYPG013000003-C" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689717213983, + "publicationStatement": [ + "Maisūru : Prasārāṅga, Maisūru Viśvavidyānilaya, 1974-" + ], + "identifier": [ + "urn:bnum:10011759", + "urn:lccn:75907259", + "urn:oclc:NYPG013000003-C", + "urn:undefined:NNSZ01314591", + "urn:undefined:(WaOLN)nyp0211726" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Carnatic music -- History and criticism.", + "Songs, Telugu." + ], + "titleDisplay": [ + "Kīrtana darpaṇa : prāyōgika saṅgītaśāstra / sampādakaru Vi. Rāmaratnaṃ, Eṃ. Vi. Ratna, Ār. El. Anantarāmayya." + ], + "uri": "b10011759", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10011759" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14747298", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JML 86-5 v. 1" + ], + "identifierV2": [ + { + "value": "JML 86-5 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068817299" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "JML 86-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433068817299" + ], + "idBarcode": [ + "33433068817299" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJML 86-5 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011947", + "_score": null, + "_source": { + "extent": [ + "2 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Encyclopedias and dictionaries, Kannada", + "Folklore", + "Folklore -- Karnataka", + "Folklore -- Karnataka -- Dictionaries" + ], + "publisherLiteral": [ + "Kannada Sāhitya Pariṣattu," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa jānapada viśvakōśa" + ], + "shelfMark": [ + "*OLA 86-2952" + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "85904648" + ], + "contributorLiteral": [ + "Kambar, Chandrasekhara, 1938-" + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-2952" + }, + { + "type": "nypl:Bnumber", + "value": "10011947" + }, + { + "type": "bf:Lccn", + "value": "85904648" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01313921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211913" + } + ], + "updatedAt": 1636108864346, + "publicationStatement": [ + "Beṅgaḷūru : Kannada Sāhitya Pariṣattu, 1985." + ], + "identifier": [ + "urn:bnum:10011947", + "urn:lccn:85904648", + "urn:undefined:NNSZ01313921", + "urn:undefined:(WaOLN)nyp0211913" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Encyclopedias and dictionaries, Kannada.", + "Folklore -- Karnataka -- Dictionaries." + ], + "titleDisplay": [ + "Kannaḍa jānapada viśvakōśa / sampadakaru, Candraśēkhara Kambāra." + ], + "uri": "b10011947", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10011947" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013001759" + ], + "physicalLocation": [ + "*OLA 86-2952" + ], + "shelfMark_sort": "a*OLA 86-2952 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10005916", + "shelfMark": [ + "*OLA 86-2952 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-2952 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433013001759" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433013001759" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013001767" + ], + "physicalLocation": [ + "*OLA 86-2952" + ], + "shelfMark_sort": "a*OLA 86-2952 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10005915", + "shelfMark": [ + "*OLA 86-2952 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-2952 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013001767" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013001767" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10012152", + "_score": null, + "_source": { + "extent": [ + "xviii, 128, [16] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Texts of English poems translated by B. M. Srikantayya, 1884-1946, with titles also in Kannada and citations for Kannada translations: p. [57]-128, [16].", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added title in English on verso of t.p.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Śrīkaṇṭhayya, Bi. Eṃ., 1884-1946" + ], + "publisherLiteral": [ + "Bi. Eṃ. Śrī. Smāraka Pratiṣṭhāna" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrīgandha : Bi. Eṃ. Śrī. janmaśatamānōtsava saṃsmaraṇa sañcike" + ], + "shelfMark": [ + "*OLA 86-3118" + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "85910191" + ], + "contributorLiteral": [ + "Śrīnivāsarāju, Ci., 1942-2007." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-3118" + }, + { + "type": "nypl:Bnumber", + "value": "10012152" + }, + { + "type": "bf:Lccn", + "value": "85910191" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01314127" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0212117" + } + ], + "updatedAt": 1653404646740, + "publicationStatement": [ + "Beṅgaḷūru : Bi. Eṃ. Śrī. Smāraka Pratiṣṭhāna, 1985." + ], + "identifier": [ + "urn:bnum:10012152", + "urn:lccn:85910191", + "urn:undefined:NNSZ01314127", + "urn:undefined:(WaOLN)nyp0212117" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Śrīkaṇṭhayya, Bi. Eṃ., 1884-1946." + ], + "titleDisplay": [ + "Śrīgandha : Bi. Eṃ. Śrī. janmaśatamānōtsava saṃsmaraṇa sañcike / sampādakaru Ci. Śrīnivāsarāju ... [et al.]." + ], + "uri": "b10012152", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10012152" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013002005" + ], + "physicalLocation": [ + "*OLA 86-3118" + ], + "shelfMark_sort": "a*OLA 86-003118", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10006103", + "shelfMark": [ + "*OLA 86-3118" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-3118" + }, + { + "type": "bf:Barcode", + "value": "33433013002005" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013002005" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10015200", + "_score": null, + "_source": { + "extent": [ + "xxi, 220, 14 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "A poem, with prose version.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bhīma (Hindu mythology)", + "Bhīma (Hindu mythology) -- Poetry" + ], + "publisherLiteral": [ + "Kannaḍa Sāhitya Pariṣattu," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sāhasabhīmavijayaṃ (Gadāyuddhaṃ)" + ], + "shelfMark": [ + "*OLA 87-2376" + ], + "creatorLiteral": [ + "Ranna, active 993." + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86903378" + ], + "seriesStatement": [ + "Vajramahōtsava varṣa pañcavārṣika yōjaneya pustakamāle" + ], + "contributorLiteral": [ + "Kulakarṇi, Ār. Vi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-2376" + }, + { + "type": "nypl:Bnumber", + "value": "10015200" + }, + { + "type": "bf:Lccn", + "value": "86903378" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01618431" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215159" + } + ], + "uniformTitle": [ + "Gadayuddha" + ], + "updatedAt": 1636098054027, + "publicationStatement": [ + "Beṅgaḷūru : Kannaḍa Sāhitya Pariṣattu, 1985." + ], + "identifier": [ + "urn:bnum:10015200", + "urn:lccn:86903378", + "urn:undefined:NNSZ01618431", + "urn:undefined:(WaOLN)nyp0215159" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bhīma (Hindu mythology) -- Poetry." + ], + "titleDisplay": [ + "Sāhasabhīmavijayaṃ (Gadāyuddhaṃ) / Kavicakravarti Kaviranna viracitam ; gadyānuvāda Ār. Vi. Kulakarṇi." + ], + "uri": "b10015200", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Gadayuddha", + "Sāhasabhīma vijaya." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10015200" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013128214" + ], + "shelfMark_sort": "a*OLA 87-002376", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007322", + "shelfMark": [ + "*OLA 87-2376" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013128214" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013128214" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10015230", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Kannada and Sanskrit; introductory matter in Kannada.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 5 published in 1978.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added English t.p.: a practical Samskrita-Kannada dictionary.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Dictionaries", + "Sanskrit language -- Dictionaries -- Kannada" + ], + "publisherLiteral": [ + "Gōpālācārya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śabdārthakaustubhaṃ : prāyōgika Saṃskrta-Karṇāṭaka śabdakōśa = Saṃskrta-Kannaḍa śabdakōśa" + ], + "shelfMark": [ + "*OLA 87-2131" + ], + "createdString": [ + "1978" + ], + "contributorLiteral": [ + "Gōpālācārya, Cakravarti Śrīnivāsa." + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-2131" + }, + { + "type": "nypl:Bnumber", + "value": "10015230" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01618462" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215189" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1653404650786, + "publicationStatement": [ + "Beṅgaḷūru : Gōpālācārya, 1978?-" + ], + "identifier": [ + "urn:bnum:10015230", + "urn:undefined:NNSZ01618462", + "urn:undefined:(WaOLN)nyp0215189" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Dictionaries -- Kannada." + ], + "titleDisplay": [ + "Śabdārthakaustubhaṃ : prāyōgika Saṃskrta-Karṇāṭaka śabdakōśa = Saṃskrta-Kannaḍa śabdakōśa / granthakarta-prakāśaka Cakravarti Śrīnivāsa Gōpālācārya." + ], + "uri": "b10015230", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Saṃskrta-Kannaḍa śabdakōśa.", + "Sanskrit-Kannada dictionary.", + "Practical Samskrita-Kannada dictionary." + ], + "tableOfContents": [ + "4. Namaskāra-Bahuvīrya -- 5. Bahuvrīhi - Vēdānta -- 6. Vedāntin- Hveya." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10015230" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013128156" + ], + "shelfMark_sort": "a*OLA 87-002131", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007343", + "shelfMark": [ + "*OLA 87-2131" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013128156" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013128156" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013128149" + ], + "shelfMark_sort": "a*OLA 87-002131", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007342", + "shelfMark": [ + "*OLA 87-2131" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013128149" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013128149" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013128164" + ], + "shelfMark_sort": "a*OLA 87-002131", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007344", + "shelfMark": [ + "*OLA 87-2131" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013128164" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013128164" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10015231", + "_score": null, + "_source": { + "extent": [ + "v. : ill. (some col.)" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Pañcama puṣpa.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 5 published in 1966.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada; includes quotations in Sanskrit (Kannada script).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vādirāja, active 16th century", + "Dvaita (Vedanta)" + ], + "publisherLiteral": [ + "Gurukrpā Granthamālā : pustaka doreyuva sthaḷa, Gōvindarāv, Beṅgaḷūru" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrī Vādirāja rjutva prakāśikā" + ], + "shelfMark": [ + "*OKN 87-2441" + ], + "creatorLiteral": [ + "Guru Gōvinda Viṭhala Dāsaru." + ], + "createdString": [ + "1966" + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 87-2441" + }, + { + "type": "nypl:Bnumber", + "value": "10015231" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01618463" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215190" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1653404650775, + "publicationStatement": [ + "Maisūru : Gurukrpā Granthamālā : pustaka doreyuva sthaḷa, Gōvindarāv, Beṅgaḷūru, 1966-" + ], + "identifier": [ + "urn:bnum:10015231", + "urn:undefined:NNSZ01618463", + "urn:undefined:(WaOLN)nyp0215190" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vādirāja, active 16th century.", + "Dvaita (Vedanta)" + ], + "titleDisplay": [ + "Śrī Vādirāja rjutva prakāśikā / Guru Gōvinda Vithala Dāsaru." + ], + "uri": "b10015231", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10015231" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058620984" + ], + "physicalLocation": [ + "*OKN 87-2441 Library has: Vol. 5." + ], + "shelfMark_sort": "a*OKN 87-2441 Library has: Vol. 5. v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13786568", + "shelfMark": [ + "*OKN 87-2441 Library has: Vol. 5. v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 87-2441 Library has: Vol. 5. v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433058620984" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433058620984" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10016133", + "_score": null, + "_source": { + "extent": [ + "43 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Yakṣagāna plays" + ], + "publisherLiteral": [ + "Ār. Viṭṭappa Śeṇai eṇḍ Sans," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "1985" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Krṣṇagāruḍi emba yakṣagāna prasaṅgavu : Bhīmārjuna garvabhaṅga : Mahabhārata purāṇāntargata" + ], + "shelfMark": [ + "*OLA 87-3857" + ], + "creatorLiteral": [ + "Śrīnivāsa Nāyak, Kōṭa." + ], + "createdString": [ + "1900" + ], + "idLccn": [ + "77913591" + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-3857" + }, + { + "type": "nypl:Bnumber", + "value": "10016133" + }, + { + "type": "bf:Lccn", + "value": "77913591" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01719432" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0216084" + } + ], + "dateEndYear": [ + 1985 + ], + "updatedAt": 1636109877952, + "publicationStatement": [ + "Kārkaḷa, Da. Ka. : Ār. Viṭṭappa Śeṇai eṇḍ Sans, [19-?]" + ], + "identifier": [ + "urn:bnum:10016133", + "urn:lccn:77913591", + "urn:undefined:NNSZ01719432", + "urn:undefined:(WaOLN)nyp0216084" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Yakṣagāna plays." + ], + "titleDisplay": [ + "Krṣṇagāruḍi emba yakṣagāna prasaṅgavu : Bhīmārjuna garvabhaṅga : Mahabhārata purāṇāntargata / lēkhaka, Kōta Śrīnivāsa Nāyak." + ], + "uri": "b10016133", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kārkaḷa, Da. Ka. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10016133" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013126648" + ], + "shelfMark_sort": "a*OLA 87-003857", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007595", + "shelfMark": [ + "*OLA 87-3857" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126648" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013126648" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10016294", + "_score": null, + "_source": { + "extent": [ + "xliv, 96, 22 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada (Kannada and roman scripts); paraphrase in English and Kannada; introd. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada language", + "Kannada language -- Grammar" + ], + "publisherLiteral": [ + "Asian Educational Services," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "1884" + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nāga Varmā's Karnātaka bhāshā-bhūshana : the oldest grammar extant of the language Karṇāṭaka bhāṣābhūṣana" + ], + "shelfMark": [ + "*OLA 87-1958" + ], + "creatorLiteral": [ + "Nāgavarma, active 12th century." + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "85901530" + ], + "contributorLiteral": [ + "Rice, B. Lewis (Benjamin Lewis), 1837-1927." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-1958" + }, + { + "type": "nypl:Bnumber", + "value": "10016294" + }, + { + "type": "bf:Lccn", + "value": "85901530" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01719593" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0216245" + } + ], + "uniformTitle": [ + "Karṇāṭaka bhāṣabhūṣaṇa" + ], + "dateEndYear": [ + 1884 + ], + "updatedAt": 1636108982258, + "publicationStatement": [ + "New Delhi : Asian Educational Services, 1985." + ], + "identifier": [ + "urn:bnum:10016294", + "urn:lccn:85901530", + "urn:undefined:NNSZ01719593", + "urn:undefined:(WaOLN)nyp0216245" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada language -- Grammar." + ], + "titleDisplay": [ + "Nāga Varmā's Karnātaka bhāshā-bhūshana : the oldest grammar extant of the language Karṇāṭaka bhāṣābhūṣana / Nāgavarma krta ; edited with an introduction, Lewis Rice." + ], + "uri": "b10016294", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Karṇāṭaka bhāṣabhūṣaṇa" + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10016294" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013128081" + ], + "shelfMark_sort": "a*OLA 87-001958", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007686", + "shelfMark": [ + "*OLA 87-1958" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013128081" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013128081" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10016426", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 published in 1968.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada; introductory matter in English or Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Karnāṭaka Viśvavidyālaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bhairavēśvara kāvyada kathāmaṇisūtraratnākara" + ], + "shelfMark": [ + "*OLA 87-3543" + ], + "creatorLiteral": [ + "Śāntaliṅgadēśika." + ], + "createdString": [ + "1968" + ], + "seriesStatement": [ + "Karnāṭaka Viśvavidyālaya : Kannaḍa kāvyamāle ; 7" + ], + "contributorLiteral": [ + "Hiremath, Rudrayya Chandrayya, 1922-", + "Sunkapur, M. S." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-3543" + }, + { + "type": "nypl:Bnumber", + "value": "10016426" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01719726" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0216377" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636077680351, + "publicationStatement": [ + "Dhāravāḍa : Karnāṭaka Viśvavidyālaya, 1968-" + ], + "identifier": [ + "urn:bnum:10016426", + "urn:undefined:NNSZ01719726", + "urn:undefined:(WaOLN)nyp0216377" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Bhairavēśvara kāvyada kathāmaṇisūtraratnākara / Śāntaliṅgadēśika krta ; sampādakaru Ār. Si. Hirēmaṭha, Eṃ. Es. Sunkāpura." + ], + "uri": "b10016426", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dhāravāḍa :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10016426" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013126325" + ], + "shelfMark_sort": "a*OLA 87-003543", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10007795", + "shelfMark": [ + "*OLA 87-3543" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126325" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013126325" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10016756", + "_score": null, + "_source": { + "extent": [ + "vii, 262 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Five hundred Indian plants, in Kanarese.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada; includes scientific names in Latin; popular names in English and Indic languages (Kannada script).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Medicinal plants", + "Medicinal plants -- India", + "Medicinal plants -- India -- Dictionaries" + ], + "publisherLiteral": [ + "Periodical Expert Book Agency," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "1922" + ], + "createdYear": [ + 1986 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five hundred Indian plants, their use in medicine and arts Sahasrārdha vrkṣādigaḷa varṇane." + ], + "shelfMark": [ + "*OLA 87-4611" + ], + "createdString": [ + "1986" + ], + "idLccn": [ + "87900750" + ], + "dateStartYear": [ + 1986 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-4611" + }, + { + "type": "nypl:Bnumber", + "value": "10016756" + }, + { + "type": "bf:Lccn", + "value": "87900750" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01820065" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0216706" + } + ], + "dateEndYear": [ + 1922 + ], + "updatedAt": 1636096234866, + "publicationStatement": [ + "Delhi, India : Periodical Expert Book Agency, 1986." + ], + "identifier": [ + "urn:bnum:10016756", + "urn:lccn:87900750", + "urn:undefined:NNSZ01820065", + "urn:undefined:(WaOLN)nyp0216706" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1986" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Medicinal plants -- India -- Dictionaries." + ], + "titleDisplay": [ + "Five hundred Indian plants, their use in medicine and arts Sahasrārdha vrkṣādigaḷa varṇane." + ], + "uri": "b10016756", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delhi, India :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sahasrārdha vrkṣādigaḷa varṇane." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10016756" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013271295" + ], + "physicalLocation": [ + "*OLA 87-4611" + ], + "shelfMark_sort": "a*OLA 87-004611", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10008066", + "shelfMark": [ + "*OLA 87-4611" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 87-4611" + }, + { + "type": "bf:Barcode", + "value": "33433013271295" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013271295" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10315622", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Description based on: 46, 1 (Mar./Apr. 1964); title from cover.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: Sampuṭa 85, san̄ike 336/338 (2005/2006).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada literature", + "Kannada literature -- Periodicals", + "Karnataka (India)", + "Karnataka (India) -- Periodicals" + ], + "numItemDatesParsed": [ + 9 + ], + "publisherLiteral": [ + "Maisūru Viśvevidyānilaya." + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 36 + ], + "createdYear": [ + 999 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Prabuddha Karṇāṭaka." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OLA 76-1248" + ], + "numItemVolumesParsed": [ + 35 + ], + "createdString": [ + "999" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 999 + ], + "idOclc": [ + "NYPG764781564-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 76-1248" + }, + { + "type": "nypl:Bnumber", + "value": "10315622" + }, + { + "type": "nypl:Oclc", + "value": "NYPG764781564-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0318890" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 74 (1992)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "No. 75 (1993)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "No. 76-77 (1996)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "No. 78-79 (1998)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "No. 80 (1999)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 82 No. 323/326 (2001)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "Vol. 84 No. 331/334 (2003)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "Vol. 85 No. 335-338 (2004)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "Vol. 88 No. 343-346 (2010)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "Vol. 89 No. 347-350 (2013)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "Vol. 91 No. 351 (2014)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Bound" + }, + { + "coverage": "", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Expected" + }, + { + "coverage": "", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OLA 76-1248" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "46(1964/65)-56(1974/75),60(1978/79), 62(1980/81)-63(1981/82), 65(1983/84)-68(1986/87),70(1988)-71(1989/90), 74(1992/93)-80(1999), 84(2003)-85(2004/2007)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*OLA 76-1248" + } + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "location": [ + { + "code": "loc:rc2ma", + "label": "Offsite" + } + ], + "shelfMark": [ + "*OLA 76-1248" + ], + "uri": "h1066378" + } + ], + "updatedAt": 1699480932879, + "publicationStatement": [ + "Maisūru, Maisūru Viśvevidyānilaya." + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248", + "urn:bnum:10315622", + "urn:oclc:NYPG764781564-S", + "urn:identifier:(WaOLN)nyp0318890" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada literature -- Periodicals.", + "Karnataka (India) -- Periodicals." + ], + "titleDisplay": [ + "Prabuddha Karṇāṭaka." + ], + "uri": "b10315622", + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10315622" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 36, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 91 no. 351 (2014)" + ], + "enumerationChronology_sort": [ + " 91-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433121642221" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 91 no. 351 (2014)", + "urn:barcode:33433121642221" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 91 no. 351 (2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433121642221", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 91 no. 351 (2014)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000091 no. 351 (2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 91, + "lte": 91 + } + ], + "uri": "i36286477" + }, + "sort": [ + " 91-2014" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2013", + "lte": "2013" + } + ], + "enumerationChronology": [ + "v. 89 no. 347-350 (2013)" + ], + "enumerationChronology_sort": [ + " 89-2013" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433117979967" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 89 no. 347-350 (2013)", + "urn:barcode:33433117979967" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 89 no. 347-350 (2013)", + "type": "bf:ShelfMark" + }, + { + "value": "33433117979967", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 89 no. 347-350 (2013)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000089 no. 347-350 (2013)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 89, + "lte": 89 + } + ], + "uri": "i33724983" + }, + "sort": [ + " 89-2013" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2010", + "lte": "2010" + } + ], + "enumerationChronology": [ + "v. 88 no. 343-346 (2010)" + ], + "enumerationChronology_sort": [ + " 88-2010" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433117980106" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 88 no. 343-346 (2010)", + "urn:barcode:33433117980106" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 88 no. 343-346 (2010)", + "type": "bf:ShelfMark" + }, + { + "value": "33433117980106", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 88 no. 343-346 (2010)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000088 no. 343-346 (2010)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 88, + "lte": 88 + } + ], + "uri": "i33721281" + }, + "sort": [ + " 88-2010" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2004", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 85, no. 335/338 (2004/ 2007)" + ], + "enumerationChronology_sort": [ + " 85-2004" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433085539777" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 85, no. 335/338 (2004/ 2007)", + "urn:barcode:33433085539777" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 85, no. 335/338 (2004/ 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085539777", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 85, no. 335/338 (2004/ 2007)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000085, no. 335/338 (2004/ 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 85, + "lte": 85 + } + ], + "uri": "i23191778" + }, + "sort": [ + " 85-2004" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2003", + "lte": "2003" + } + ], + "enumerationChronology": [ + "v. 84, no. 331/334 (2003)" + ], + "enumerationChronology_sort": [ + " 84-2003" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433085541104" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 84, no. 331/334 (2003)", + "urn:barcode:33433085541104" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 84, no. 331/334 (2003)", + "type": "bf:ShelfMark" + }, + { + "value": "33433085541104", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 84, no. 331/334 (2003)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000084, no. 331/334 (2003)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 84, + "lte": 84 + } + ], + "uri": "i23191779" + }, + "sort": [ + " 84-2003" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 82, no. 323/326 (2001)" + ], + "enumerationChronology_sort": [ + " 82-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433074631197" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 82, no. 323/326 (2001)", + "urn:barcode:33433074631197" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 82, no. 323/326 (2001)", + "type": "bf:ShelfMark" + }, + { + "value": "33433074631197", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 82, no. 323/326 (2001)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000082, no. 323/326 (2001)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 82, + "lte": 82 + } + ], + "uri": "i17458423" + }, + "sort": [ + " 82-2001" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 78-79 (1998)" + ], + "enumerationChronology_sort": [ + " 78-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013574946" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 78-79 (1998)", + "urn:barcode:33433013574946" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 78-79 (1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433013574946", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 78-79 (1998)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000078-79 (1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 78, + "lte": 79 + } + ], + "uri": "i10074597" + }, + "sort": [ + " 78-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 76-77 (1996)" + ], + "enumerationChronology_sort": [ + " 76-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015942182" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 76-77 (1996)", + "urn:barcode:33433015942182" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 76-77 (1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433015942182", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 76-77 (1996)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000076-77 (1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 76, + "lte": 77 + } + ], + "uri": "i12950094" + }, + "sort": [ + " 76-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 75" + ], + "enumerationChronology_sort": [ + " 75-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575918" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 75", + "urn:barcode:33433014575918" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 75", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575918", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 75" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000075", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 75, + "lte": 75 + } + ], + "uri": "i10074595" + }, + "sort": [ + " 75-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 74" + ], + "enumerationChronology_sort": [ + " 74-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575900" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 74", + "urn:barcode:33433014575900" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 74", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575900", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 74" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000074", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 74, + "lte": 74 + } + ], + "uri": "i10074594" + }, + "sort": [ + " 74-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1992", + "lte": "1992" + } + ], + "enumerationChronology": [ + "v. 73 (1992)" + ], + "enumerationChronology_sort": [ + " 73-1992" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433111366286" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 73 (1992)", + "urn:barcode:33433111366286" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 73 (1992)", + "type": "bf:ShelfMark" + }, + { + "value": "33433111366286", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 73 (1992)" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000073 (1992)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 73, + "lte": 73 + } + ], + "uri": "i31158194" + }, + "sort": [ + " 73-1992" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 72" + ], + "enumerationChronology_sort": [ + " 72-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576510" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 72", + "urn:barcode:33433014576510" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 72", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576510", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 72" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000072", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 72, + "lte": 72 + } + ], + "uri": "i10074592" + }, + "sort": [ + " 72-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 71" + ], + "enumerationChronology_sort": [ + " 71-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576502" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 71", + "urn:barcode:33433014576502" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 71", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576502", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 71" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000071", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 71, + "lte": 71 + } + ], + "uri": "i10074591" + }, + "sort": [ + " 71-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 70" + ], + "enumerationChronology_sort": [ + " 70-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576528" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 70", + "urn:barcode:33433014576528" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 70", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576528", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 70" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000070", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 70, + "lte": 70 + } + ], + "uri": "i10074593" + }, + "sort": [ + " 70-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 68" + ], + "enumerationChronology_sort": [ + " 68-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576478" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 68", + "urn:barcode:33433014576478" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 68", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576478", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 68" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000068", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 68, + "lte": 68 + } + ], + "uri": "i10074588" + }, + "sort": [ + " 68-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 67" + ], + "enumerationChronology_sort": [ + " 67-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576460" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 67", + "urn:barcode:33433014576460" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 67", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576460", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 67" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000067", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 67, + "lte": 67 + } + ], + "uri": "i10074587" + }, + "sort": [ + " 67-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 66" + ], + "enumerationChronology_sort": [ + " 66-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576486" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 66", + "urn:barcode:33433014576486" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 66", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576486", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 66" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000066", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 66, + "lte": 66 + } + ], + "uri": "i10074589" + }, + "sort": [ + " 66-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 65" + ], + "enumerationChronology_sort": [ + " 65-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576494" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 65", + "urn:barcode:33433014576494" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 65", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576494", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 65" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000065", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 65, + "lte": 65 + } + ], + "uri": "i10074590" + }, + "sort": [ + " 65-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 63" + ], + "enumerationChronology_sort": [ + " 63-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576452" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 63", + "urn:barcode:33433014576452" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 63", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576452", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 63" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000063", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 63, + "lte": 63 + } + ], + "uri": "i10074586" + }, + "sort": [ + " 63-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 62" + ], + "enumerationChronology_sort": [ + " 62-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576445" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 62", + "urn:barcode:33433014576445" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 62", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576445", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 62" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000062", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 62, + "lte": 62 + } + ], + "uri": "i10074585" + }, + "sort": [ + " 62-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 60" + ], + "enumerationChronology_sort": [ + " 60-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576437" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 60", + "urn:barcode:33433014576437" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 60", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576437", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 60" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000060", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 60, + "lte": 60 + } + ], + "uri": "i10074584" + }, + "sort": [ + " 60-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 56, no. 1-4" + ], + "enumerationChronology_sort": [ + " 56-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576429" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 56, no. 1-4", + "urn:barcode:33433014576429" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 56, no. 1-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576429", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 56, no. 1-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000056, no. 1-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 56, + "lte": 56 + } + ], + "uri": "i10074583" + }, + "sort": [ + " 56-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 55" + ], + "enumerationChronology_sort": [ + " 55-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576411" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 55", + "urn:barcode:33433014576411" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 55", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576411", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 55" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000055", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "uri": "i10074582" + }, + "sort": [ + " 55-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 54" + ], + "enumerationChronology_sort": [ + " 54-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576049" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 54", + "urn:barcode:33433014576049" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 54", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576049", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 54" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000054", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 54, + "lte": 54 + } + ], + "uri": "i10074581" + }, + "sort": [ + " 54-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 53" + ], + "enumerationChronology_sort": [ + " 53-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576031" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 53", + "urn:barcode:33433014576031" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 53", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576031", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 53" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000053", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 53, + "lte": 53 + } + ], + "uri": "i10074580" + }, + "sort": [ + " 53-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 25 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 52, no. 3-4" + ], + "enumerationChronology_sort": [ + " 52-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576023" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 52, no. 3-4", + "urn:barcode:33433014576023" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 52, no. 3-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576023", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 52, no. 3-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000052, no. 3-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 52, + "lte": 52 + } + ], + "uri": "i10074579" + }, + "sort": [ + " 52-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 26 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 51, no. 3-4" + ], + "enumerationChronology_sort": [ + " 51-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576015" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 51, no. 3-4", + "urn:barcode:33433014576015" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 51, no. 3-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576015", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 51, no. 3-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000051, no. 3-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 51, + "lte": 51 + } + ], + "uri": "i10074578" + }, + "sort": [ + " 51-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 50, no. 1-2" + ], + "enumerationChronology_sort": [ + " 50-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575991" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 50, no. 1-2", + "urn:barcode:33433014575991" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 50, no. 1-2", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575991", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 50, no. 1-2" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000050, no. 1-2", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ], + "uri": "i10074576" + }, + "sort": [ + " 50-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 27 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 50, no. 3-4" + ], + "enumerationChronology_sort": [ + " 50-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576007" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 50, no. 3-4", + "urn:barcode:33433014576007" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 50, no. 3-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014576007", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 50, no. 3-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000050, no. 3-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 50, + "lte": 50 + } + ], + "uri": "i10074577" + }, + "sort": [ + " 50-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 29 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 49" + ], + "enumerationChronology_sort": [ + " 49-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575983" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 49", + "urn:barcode:33433014575983" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 49", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575983", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 49" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000049", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 49, + "lte": 49 + } + ], + "uri": "i10074575" + }, + "sort": [ + " 49-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 31 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 48 no. 3-4" + ], + "enumerationChronology_sort": [ + " 48-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575975" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 48 no. 3-4", + "urn:barcode:33433014575975" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 48 no. 3-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575975", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 48 no. 3-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000048 no. 3-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ], + "uri": "i10074574" + }, + "sort": [ + " 48-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 30 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 48, no. 1-2" + ], + "enumerationChronology_sort": [ + " 48-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575967" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 48, no. 1-2", + "urn:barcode:33433014575967" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 48, no. 1-2", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575967", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 48, no. 1-2" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000048, no. 1-2", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 48, + "lte": 48 + } + ], + "uri": "i10074573" + }, + "sort": [ + " 48-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 32 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 47, no. 1-4" + ], + "enumerationChronology_sort": [ + " 47-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575959" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 47, no. 1-4", + "urn:barcode:33433014575959" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 47, no. 1-4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575959", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 47, no. 1-4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000047, no. 1-4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 47, + "lte": 47 + } + ], + "uri": "i10074572" + }, + "sort": [ + " 47-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 34 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 46, no. 1-3" + ], + "enumerationChronology_sort": [ + " 46-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575934" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 46, no. 1-3", + "urn:barcode:33433014575934" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 46, no. 1-3", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575934", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 46, no. 1-3" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000046, no. 1-3", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "uri": "i10074570" + }, + "sort": [ + " 46-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 33 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "v. 46, no. 4" + ], + "enumerationChronology_sort": [ + " 46-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014575942" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248 v. 46, no. 4", + "urn:barcode:33433014575942" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248 v. 46, no. 4", + "type": "bf:ShelfMark" + }, + { + "value": "33433014575942", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248 v. 46, no. 4" + ], + "shelfMark_sort": "a*OLA 76-1248 v. 000046, no. 4", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "uri": "i10074571" + }, + "sort": [ + " 46-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 35 + }, + "_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" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001543184" + ], + "identifier": [ + "urn:shelfmark:*OLA 76-1248", + "urn:barcode:33433001543184" + ], + "identifierV2": [ + { + "value": "*OLA 76-1248", + "type": "bf:ShelfMark" + }, + { + "value": "33433001543184", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 76-1248" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 76-1248" + ], + "shelfMark_sort": "a*OLA 76-001248", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10074596" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10379755", + "_score": null, + "_source": { + "extent": [ + "14 v. : ill. (part col.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Published by the Institute of Kannada studies, University of Mysore.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Encyclopedias and dictionaries, Kannada" + ], + "publisherLiteral": [ + "Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidāyanilaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa viśvakośa" + ], + "shelfMark": [ + "*OLA+ 76-462" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "sa 73910921" + ], + "contributorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-", + "University of Mysore. Institute of Kannada Studies." + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462" + }, + { + "type": "nypl:Bnumber", + "value": "10379755" + }, + { + "type": "bf:Lccn", + "value": "sa 73910921" + }, + { + "type": "bf:Identifier", + "value": "NN764423629" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0383283" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108872056, + "publicationStatement": [ + "Maisūru : Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidāyanilaya, 1971-2004." + ], + "identifier": [ + "urn:bnum:10379755", + "urn:lccn:sa 73910921", + "urn:undefined:NN764423629", + "urn:undefined:(WaOLN)nyp0383283" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Encyclopedias and dictionaries, Kannada." + ], + "titleDisplay": [ + "Kannaḍa viśvakośa / chief editor D. Javare Gowda." + ], + "uri": "b10379755", + "numItems": [ + 12 + ], + "numAvailable": [ + 12 + ], + "placeOfPublication": [ + "Maisūru :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10379755" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 12, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433069710808" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000014", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17460427", + "shelfMark": [ + "*OLA+ 76-462 v. 14" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 14" + }, + { + "type": "bf:Barcode", + "value": "33433069710808" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 14" + ], + "idBarcode": [ + "33433069710808" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433069710790" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000013", + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i17460426", + "shelfMark": [ + "*OLA+ 76-462 v. 13" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 13" + }, + { + "type": "bf:Barcode", + "value": "33433069710790" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 13" + ], + "idBarcode": [ + "33433069710790" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842282" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000012", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837533", + "shelfMark": [ + "*OLA+ 76-462 v. 12" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 12" + }, + { + "type": "bf:Barcode", + "value": "33433057842282" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 12" + ], + "idBarcode": [ + "33433057842282" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842274" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000011", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837532", + "shelfMark": [ + "*OLA+ 76-462 v. 11" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 11" + }, + { + "type": "bf:Barcode", + "value": "33433057842274" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 11" + ], + "idBarcode": [ + "33433057842274" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842266" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000009", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837531", + "shelfMark": [ + "*OLA+ 76-462 v. 9" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 9" + }, + { + "type": "bf:Barcode", + "value": "33433057842266" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 9" + ], + "idBarcode": [ + "33433057842266" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842258" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837530", + "shelfMark": [ + "*OLA+ 76-462 v. 7" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 7" + }, + { + "type": "bf:Barcode", + "value": "33433057842258" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 7" + ], + "idBarcode": [ + "33433057842258" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842241" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000006", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837529", + "shelfMark": [ + "*OLA+ 76-462 v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433057842241" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433057842241" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842233" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837528", + "shelfMark": [ + "*OLA+ 76-462 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433057842233" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433057842233" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842225" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837527", + "shelfMark": [ + "*OLA+ 76-462 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433057842225" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433057842225" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842217" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837526", + "shelfMark": [ + "*OLA+ 76-462 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057842217" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057842217" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842209" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837525", + "shelfMark": [ + "*OLA+ 76-462 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057842209" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057842209" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057842191" + ], + "physicalLocation": [ + "*OLA+ 76-462" + ], + "shelfMark_sort": "a*OLA+ 76-462 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13837524", + "shelfMark": [ + "*OLA+ 76-462 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 76-462 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057842191" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057842191" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10387344", + "_score": null, + "_source": { + "extent": [ + "v. <1-9> ; " + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 1-5, & 7 has subtitle: Mudrita Kannaḍa krtigaḷa vivarāṇātmaka granthasūci 1817-1968.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada imprints" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prasarāṅga, Maisūru Viśvavidyānilaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 9 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa granthasūci; mudrita Kannaḍa krtigala vivaraṇātmaka granthasūci." + ], + "shelfMark": [ + "*OLA 75-3000" + ], + "numItemVolumesParsed": [ + 9 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "sa 71922330" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 75-3000" + }, + { + "type": "nypl:Bnumber", + "value": "10387344" + }, + { + "type": "bf:Lccn", + "value": "sa 71922330" + }, + { + "type": "nypl:Oclc", + "value": "13887294" + }, + { + "type": "nypl:Oclc", + "value": "13887294" + }, + { + "type": "nypl:Oclc", + "value": "NYPG764506752-B" + }, + { + "type": "bf:Identifier", + "value": "NN764506752" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0390904" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)13887294" + } + ], + "idOclc": [ + "13887294", + "NYPG764506752-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675264211896, + "publicationStatement": [ + "Maisūru] Prasarāṅga, Maisūru Viśvavidyānilaya, 1971-<2003>" + ], + "identifier": [ + "urn:bnum:10387344", + "urn:lccn:sa 71922330", + "urn:oclc:13887294", + "urn:oclc:NYPG764506752-B", + "urn:undefined:NN764506752", + "urn:undefined:(WaOLN)nyp0390904", + "urn:undefined:(OCoLC)13887294" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada imprints." + ], + "titleDisplay": [ + "Kannaḍa granthasūci; mudrita Kannaḍa krtigala vivaraṇātmaka granthasūci. [Compiled by an Editorial Committee consisting of D. Javaregowda and others." + ], + "uri": "b10387344", + "lccClassification": [ + "Z3201 .K35" + ], + "numItems": [ + 9 + ], + "numAvailable": [ + 9 + ], + "placeOfPublication": [ + "Maisūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Śuddha vijñānagaḷu -- 2. Bhāṣe-vyākaraṇa-dharma-tattva-lalitkalegaḷu-upayukta kalegaḷu-nighantugaḷu-vyakaraṇagaḷu -- 3. Sāhitya-vimarśe-kāvya-hosagannaḍa kāvya -- 4. Gadya saṇṇakathe-nāṭaka-prabandha -- 5. Kādambari-aitihāsika-pattēdāri -- 6. Bāla sāhitya -- 7. Anuvāda sāhitya -- 8. Jīvana caritre-patra sāhitya-pravāsa sāhitya-jānapada sāhitya -- 9. Samājaśāstra-vāṇijyaśāstra-sikṣaṇaśāstra-bhūgōla mattu itihāsa" + ], + "dimensions": [ + " 30 cm." + ] + }, + "sort": [ + "b10387344" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 9, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "uri": "i10092431", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 9" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546423" + } + ], + "enumerationChronology": [ + "v. 9" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546423" + ], + "idBarcode": [ + "33433005546423" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 9 + } + ], + "enumerationChronology_sort": [ + " 9-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000009" + }, + "sort": [ + " 9-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "uri": "i10092430", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 8" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 8", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546415" + } + ], + "enumerationChronology": [ + "v. 8" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546415" + ], + "idBarcode": [ + "33433005546415" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "enumerationChronology_sort": [ + " 8-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000008" + }, + "sort": [ + " 8-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "uri": "i10092429", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 7" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 7", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546647" + } + ], + "enumerationChronology": [ + "v. 7" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546647" + ], + "idBarcode": [ + "33433005546647" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "enumerationChronology_sort": [ + " 7-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000007" + }, + "sort": [ + " 7-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i10092428", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 6" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546639" + } + ], + "enumerationChronology": [ + "v. 6" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546639" + ], + "idBarcode": [ + "33433005546639" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000006" + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i10092427", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 5" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546621" + } + ], + "enumerationChronology": [ + "v. 5" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546621" + ], + "idBarcode": [ + "33433005546621" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000005" + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10092426", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 4" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546613" + } + ], + "enumerationChronology": [ + "v. 4" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546613" + ], + "idBarcode": [ + "33433005546613" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000004" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10092425", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546605" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546605" + ], + "idBarcode": [ + "33433005546605" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000003" + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10092424", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546597" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546597" + ], + "idBarcode": [ + "33433005546597" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10092423", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 75-3000 v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 75-3000 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005546589" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLA 75-3000" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005546589" + ], + "idBarcode": [ + "33433005546589" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 75-3000 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10430533", + "_score": null, + "_source": { + "extent": [ + "- v." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada language", + "Kannada language -- Dictionaries" + ], + "publisherLiteral": [ + "Kannaḍa Sāhitya Pariṣattu" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa Sāhitya Paṛiṣattina Kannaḍa nighaṇṭu." + ], + "shelfMark": [ + "*OLA+ 77-1212" + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 68015538" + ], + "contributorLiteral": [ + "Kannaḍa Sāhitya Pariṣattu." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 77-1212" + }, + { + "type": "nypl:Bnumber", + "value": "10430533" + }, + { + "type": "bf:Lccn", + "value": "sa 68015538" + }, + { + "type": "nypl:Oclc", + "value": "33334610" + }, + { + "type": "nypl:Oclc", + "value": "33334610" + }, + { + "type": "bf:Identifier", + "value": "NN774598719" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0434297" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)33334610" + } + ], + "idOclc": [ + "33334610" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659153256254, + "publicationStatement": [ + "Biṅgaḷoru, Kannaḍa Sāhitya Pariṣattu, 1964-" + ], + "identifier": [ + "urn:bnum:10430533", + "urn:lccn:sa 68015538", + "urn:oclc:33334610", + "urn:undefined:NN774598719", + "urn:undefined:(WaOLN)nyp0434297", + "urn:undefined:(OCoLC)33334610" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada language -- Dictionaries." + ], + "titleDisplay": [ + "Kannaḍa Sāhitya Paṛiṣattina Kannaḍa nighaṇṭu." + ], + "uri": "b10430533", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Biṅgaḷoru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10430533" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13844383", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA+ 77-1212 v. 1 nos. 1-7" + ], + "identifierV2": [ + { + "value": "*OLA+ 77-1212 v. 1 nos. 1-7", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057842290" + } + ], + "physicalLocation": [ + "*OLA+ 77-1212" + ], + "enumerationChronology": [ + "v. 1 nos. 1-7" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433057842290" + ], + "idBarcode": [ + "33433057842290" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA+ 77-1212 v. 000001 nos. 1-7" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10448884", + "_score": null, + "_source": { + "extent": [ + "v. illus., maps." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada literature", + "Kannada literature -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prakaṭaṇa Mattu Pracārō Panyāsa Vibhāga, Beṅgaḷūru Viśvavidyālaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 6 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Samagra Kannaḍa sāhitya caritre. [Pradhāna Sampādakaru Jī. Esau. Sivarudrappa]" + ], + "shelfMark": [ + "*OLA 77-1564" + ], + "numItemVolumesParsed": [ + 6 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75907097" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sivarudrappa, G. S., 1926-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 77-1564" + }, + { + "type": "nypl:Bnumber", + "value": "10448884" + }, + { + "type": "bf:Lccn", + "value": "75907097" + }, + { + "type": "nypl:Oclc", + "value": "25483666" + }, + { + "type": "nypl:Oclc", + "value": "25483666" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774800277-B" + }, + { + "type": "bf:Identifier", + "value": "NN774800277" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0452778" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)25483666" + } + ], + "idOclc": [ + "25483666", + "NYPG774800277-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675274772412, + "publicationStatement": [ + "Beṅgaḷūru, Prakaṭaṇa Mattu Pracārō Panyāsa Vibhāga, Beṅgaḷūru Viśvavidyālaya, 1974-" + ], + "identifier": [ + "urn:bnum:10448884", + "urn:lccn:75907097", + "urn:oclc:25483666", + "urn:oclc:NYPG774800277-B", + "urn:undefined:NN774800277", + "urn:undefined:(WaOLN)nyp0452778", + "urn:undefined:(OCoLC)25483666" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada literature -- History and criticism." + ], + "titleDisplay": [ + "Samagra Kannaḍa sāhitya caritre. [Pradhāna Sampādakaru Jī. Esau. Sivarudrappa]" + ], + "uri": "b10448884", + "numItems": [ + 6 + ], + "numAvailable": [ + 6 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10448884" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 6, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i10105102", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 6" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005544758" + } + ], + "enumerationChronology": [ + "v. 6" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005544758" + ], + "idBarcode": [ + "33433005544758" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000006" + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i10105101", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 2" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005544741" + } + ], + "enumerationChronology": [ + "v. 4 pt. 2" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005544741" + ], + "idBarcode": [ + "33433005544741" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000004 pt. 2" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10105100", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 1" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005544733" + } + ], + "enumerationChronology": [ + "v. 4 pt. 1" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005544733" + ], + "idBarcode": [ + "33433005544733" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000004 pt. 1" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10105099", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545201" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545201" + ], + "idBarcode": [ + "33433005545201" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000003" + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10105098", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545193" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545193" + ], + "idBarcode": [ + "33433005545193" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10105097", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545185" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545185" + ], + "idBarcode": [ + "33433005545185" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10448885", + "_score": null, + "_source": { + "extent": [ + "- v." + ], + "note": [ + { + "noteType": "Note", + "label": "Kannaḍa Adhyayana Saṃstheya prakaṭaṇe: Sāmānyamāle.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada literature", + "Kannada literature -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidyānilaya: Mārāṭagāraru, Prasārāṅga" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 6 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa Adhyayana Saṃstheya Kannaḍa sāhitya caritre. Pradhāna Sampādaka, Hā. Mā. Nāyaka: Sampādaka, Ṭi. Vi. Veṅkaṭācala Śāstrī. 1st ed." + ], + "shelfMark": [ + "*OLA 77-1563" + ], + "numItemVolumesParsed": [ + 6 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75905691" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Nayak, Harogadde Manappa, 1931-", + "Venkatachala Sastry, T. V., 1933-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 77-1563" + }, + { + "type": "nypl:Bnumber", + "value": "10448885" + }, + { + "type": "bf:Lccn", + "value": "75905691" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774800289-B" + }, + { + "type": "bf:Identifier", + "value": "NN774800289" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0452779" + } + ], + "idOclc": [ + "NYPG774800289-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675259064154, + "publicationStatement": [ + "Maisūru: Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidyānilaya: Mārāṭagāraru, Prasārāṅga, 1974-" + ], + "identifier": [ + "urn:bnum:10448885", + "urn:lccn:75905691", + "urn:oclc:NYPG774800289-B", + "urn:undefined:NN774800289", + "urn:undefined:(WaOLN)nyp0452779" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada literature -- History and criticism." + ], + "titleDisplay": [ + "Kannaḍa Adhyayana Saṃstheya Kannaḍa sāhitya caritre. Pradhāna Sampādaka, Hā. Mā. Nāyaka: Sampādaka, Ṭi. Vi. Veṅkaṭācala Śāstrī. 1st ed." + ], + "uri": "b10448885", + "numItems": [ + 6 + ], + "numAvailable": [ + 6 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10448885" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 6, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i10105108", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 5 pt. 1" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 5 pt. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545177" + } + ], + "enumerationChronology": [ + "v. 5 pt. 1" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545177" + ], + "idBarcode": [ + "33433005545177" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000005 pt. 1" + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i10105107", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 4 pt. 2" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 4 pt. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545169" + } + ], + "enumerationChronology": [ + "v. 4 pt. 2" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545169" + ], + "idBarcode": [ + "33433005545169" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000004 pt. 2" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10105106", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 4 pt. 1" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 4 pt. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545151" + } + ], + "enumerationChronology": [ + "v. 4 pt. 1" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545151" + ], + "idBarcode": [ + "33433005545151" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000004 pt. 1" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10105105", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545144" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545144" + ], + "idBarcode": [ + "33433005545144" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000003" + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10105104", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545136" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545136" + ], + "idBarcode": [ + "33433005545136" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10105103", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 77-1563 v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 77-1563 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005545128" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLA 77-1563" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005545128" + ], + "idBarcode": [ + "33433005545128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 77-1563 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10621864", + "_score": null, + "_source": { + "extent": [ + "-v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994", + "Kuvempu, 1904-1994 -- Correspondence" + ], + "publisherLiteral": [ + "Bayalunēmi Prakāśana," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuvempu patragaḷu. Sampādaka Hariharapriya. 1. Āvṛtti." + ], + "shelfMark": [ + "*OLA 79-209" + ], + "creatorLiteral": [ + "Kuvempu, 1904-1994." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75905629" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 79-209" + }, + { + "type": "nypl:Bnumber", + "value": "10621864" + }, + { + "type": "bf:Lccn", + "value": "75905629" + }, + { + "type": "bf:Identifier", + "value": "NN804084236" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0627536" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636109952581, + "publicationStatement": [ + "Mandagere, Bayalunēmi Prakāśana, 1974-" + ], + "identifier": [ + "urn:bnum:10621864", + "urn:lccn:75905629", + "urn:undefined:NN804084236", + "urn:undefined:(WaOLN)nyp0627536" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994 -- Correspondence." + ], + "titleDisplay": [ + "Kuvempu patragaḷu. Sampādaka Hariharapriya. 1. Āvṛtti." + ], + "uri": "b10621864", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Mandagere," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10621864" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014576221" + ], + "shelfMark_sort": "a*OLA 79-000209", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10139695", + "shelfMark": [ + "*OLA 79-209" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433014576221" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014576221" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10691564", + "_score": null, + "_source": { + "extent": [ + "v. illus." + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Carnatic (India)", + "Carnatic (India) -- Biography" + ], + "publisherLiteral": [ + "Kāvyālaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jñāpaka citraśāle." + ], + "shelfMark": [ + "*OLA 81-2012" + ], + "creatorLiteral": [ + "Gundappa, D. V." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "70911699" + ], + "seriesStatement": [ + "Kannaḍa Kāvyamāle" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 81-2012" + }, + { + "type": "nypl:Bnumber", + "value": "10691564" + }, + { + "type": "bf:Lccn", + "value": "70911699" + }, + { + "type": "nypl:Oclc", + "value": "20232509" + }, + { + "type": "nypl:Oclc", + "value": "20232509" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0698090" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20232509" + } + ], + "idOclc": [ + "20232509" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659153164180, + "publicationStatement": [ + "Maisūru, Kāvyālaya [1969-" + ], + "identifier": [ + "urn:bnum:10691564", + "urn:lccn:70911699", + "urn:oclc:20232509", + "urn:undefined:(WaOLN)nyp0698090", + "urn:undefined:(OCoLC)20232509" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Carnatic (India) -- Biography." + ], + "titleDisplay": [ + "Jñāpaka citraśāle. [Lēkhaka] Di. Vi. Ji." + ], + "uri": "b10691564", + "lccClassification": [ + "DS485.C24 G85" + ], + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10691564" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10153975", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2012 v. 8" + ], + "identifierV2": [ + { + "value": "*OLA 81-2012 v. 8", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013122498" + } + ], + "physicalLocation": [ + "*OLA 81-2012" + ], + "enumerationChronology": [ + "v. 8" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013122498" + ], + "idBarcode": [ + "33433013122498" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2012 v. 000008" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10153974", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2012 v. 7" + ], + "identifierV2": [ + { + "value": "*OLA 81-2012 v. 7", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013118769" + } + ], + "physicalLocation": [ + "*OLA 81-2012" + ], + "enumerationChronology": [ + "v. 7" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013118769" + ], + "idBarcode": [ + "33433013118769" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2012 v. 000007" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10153973", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2012 v. 5" + ], + "identifierV2": [ + { + "value": "*OLA 81-2012 v. 5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013118751" + } + ], + "physicalLocation": [ + "*OLA 81-2012" + ], + "enumerationChronology": [ + "v. 5" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013118751" + ], + "idBarcode": [ + "33433013118751" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2012 v. 000005" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10153972", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2012 v. 4" + ], + "identifierV2": [ + { + "value": "*OLA 81-2012 v. 4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013118744" + } + ], + "physicalLocation": [ + "*OLA 81-2012" + ], + "enumerationChronology": [ + "v. 4" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013118744" + ], + "idBarcode": [ + "33433013118744" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2012 v. 000004" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10734117", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Karanth, Kota Shivarama, 1902-", + "Authors, Kannada", + "Authors, Kannada -- 20th century", + "Authors, Kannada -- 20th century -- Biography" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Smrti pataladinda" + ], + "shelfMark": [ + "*OLA 81-2376" + ], + "creatorLiteral": [ + "Karanth, Kota Shivarama, 1902-" + ], + "createdString": [ + "1977" + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 81-2376" + }, + { + "type": "nypl:Bnumber", + "value": "10734117" + }, + { + "type": "nypl:Oclc", + "value": "10695468" + }, + { + "type": "nypl:Oclc", + "value": "10695468" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0740886" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)10695468" + } + ], + "idOclc": [ + "10695468" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659170872872, + "identifier": [ + "urn:bnum:10734117", + "urn:oclc:10695468", + "urn:undefined:(WaOLN)nyp0740886", + "urn:undefined:(OCoLC)10695468" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Karanth, Kota Shivarama, 1902-", + "Authors, Kannada -- 20th century -- Biography." + ], + "titleDisplay": [ + "Smrti pataladinda / Śivarāma Kāranta." + ], + "uri": "b10734117", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10734117" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10161646", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2376 v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 81-2376 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013122290" + } + ], + "physicalLocation": [ + "*OLA 81-2376" + ], + "enumerationChronology": [ + "v. 3" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013122290" + ], + "idBarcode": [ + "33433013122290" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2376 v. 000003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10161645", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2376 v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 81-2376 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013122282" + } + ], + "physicalLocation": [ + "*OLA 81-2376" + ], + "enumerationChronology": [ + "v. 2" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013122282" + ], + "idBarcode": [ + "33433013122282" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2376 v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10161644", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 81-2376 v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 81-2376 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013122274" + } + ], + "physicalLocation": [ + "*OLA 81-2376" + ], + "enumerationChronology": [ + "v. 1" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013122274" + ], + "idBarcode": [ + "33433013122274" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 81-2376 v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10756472", + "_score": null, + "_source": { + "extent": [ + "v. in illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title, text and musical notation in Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Songs, Tamil", + "Music, Kannada" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Guru Guha Gana Nilaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1963 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Maharaja Sri Swati Tirunal kritis. With notation." + ], + "shelfMark": [ + "JML 82-4" + ], + "numItemVolumesParsed": [ + 3 + ], + "creatorLiteral": [ + "Svātitirunāḷ, 1813-1846." + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 66002381" + ], + "seriesStatement": [ + "Karnataka sangeetha tarangini series book 5-" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sreenivasa Iyer, Semmangudi R.", + "Shankara Murthy, Mathur R." + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JML 82-4" + }, + { + "type": "nypl:Bnumber", + "value": "10756472" + }, + { + "type": "bf:Lccn", + "value": "sa 66002381" + }, + { + "type": "nypl:Oclc", + "value": "10408849" + }, + { + "type": "nypl:Oclc", + "value": "10408849" + }, + { + "type": "nypl:Oclc", + "value": "NYPG82-C2064" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0763357" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)10408849" + } + ], + "idOclc": [ + "10408849", + "NYPG82-C2064" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689722390472, + "publicationStatement": [ + "Bangalore, Guru Guha Gana Nilaya [1963-" + ], + "identifier": [ + "urn:bnum:10756472", + "urn:lccn:sa 66002381", + "urn:oclc:10408849", + "urn:oclc:NYPG82-C2064", + "urn:undefined:(WaOLN)nyp0763357", + "urn:undefined:(OCoLC)10408849" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Songs, Tamil.", + "Music, Kannada." + ], + "titleDisplay": [ + "Maharaja Sri Swati Tirunal kritis. With notation. / Tamil original edited by Semmangudi Srinivasa Aiyar. [Translated] by M.R. Shankaramurthy." + ], + "uri": "b10756472", + "lccClassification": [ + "M1808.R256 M3" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Bangalore" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10756472" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i14902566", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JML 82-4 v. 4-5" + ], + "identifierV2": [ + { + "value": "JML 82-4 v. 4-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068812035" + } + ], + "enumerationChronology": [ + "v. 4-5" + ], + "physicalLocation": [ + "JML 82-4" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433068812035" + ], + "idBarcode": [ + "33433068812035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJML 82-4 v. 000004-5" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i14902565", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JML 82-4 v. 2-3" + ], + "identifierV2": [ + { + "value": "JML 82-4 v. 2-3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068812027" + } + ], + "enumerationChronology": [ + "v. 2-3" + ], + "physicalLocation": [ + "JML 82-4" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433068812027" + ], + "idBarcode": [ + "33433068812027" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJML 82-4 v. 000002-3" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14902564", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JML 82-4 v. 1" + ], + "identifierV2": [ + { + "value": "JML 82-4 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068812019" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "JML 82-4" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433068812019" + ], + "idBarcode": [ + "33433068812019" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJML 82-4 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10836580", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Without the music.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Songs, Kannada", + "Songs, Kannada -- Texts" + ], + "publisherLiteral": [ + "[s.n.]" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yakṣagāna chandassu." + ], + "shelfMark": [ + "*OLA 82-1982" + ], + "creatorLiteral": [ + "Kedilaya, K. P. Seetharama, 1930-" + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 68015716" + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-1982" + }, + { + "type": "nypl:Bnumber", + "value": "10836580" + }, + { + "type": "bf:Lccn", + "value": "sa 68015716" + }, + { + "type": "nypl:Oclc", + "value": "24824716" + }, + { + "type": "nypl:Oclc", + "value": "24824716" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0843597" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)24824716" + } + ], + "idOclc": [ + "24824716" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659354931153, + "publicationStatement": [ + "Śiśila, [s.n.] 1964-" + ], + "identifier": [ + "urn:bnum:10836580", + "urn:lccn:sa 68015716", + "urn:oclc:24824716", + "urn:undefined:(WaOLN)nyp0843597", + "urn:undefined:(OCoLC)24824716" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Songs, Kannada -- Texts." + ], + "titleDisplay": [ + "Yakṣagāna chandassu. Lēkhaka mattu prakāśaka Ka. Pu. Sītārāma Kedilāya." + ], + "uri": "b10836580", + "lccClassification": [ + "M1803.K427 Y3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śiśila" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10836580" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10179896", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013124239" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013124239" + } + ], + "idBarcode": [ + "33433013124239" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 82-1982" + ], + "shelfMark_sort": "a*OLA 82-001982" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10840234", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Authors, Kannada", + "Authors, Kannada -- 20th century", + "Authors, Kannada -- 20th century -- Biography", + "Kaṭṭīmani, Basavarāja, 1919-1989", + "Kaṭṭīmani, Basavarāja, 1919-1989 -- Biography" + ], + "publisherLiteral": [ + "Sāhityaśrī : mārāṭagāraruSam̲aja Pustuk̲alaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Basavarāja Kaṭṭīmani avara ātmakathe." + ], + "shelfMark": [ + "*OLA 82-4677" + ], + "creatorLiteral": [ + "Kaṭṭīmani, Basavarāja, 1919-1989." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901672" + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-4677" + }, + { + "type": "nypl:Bnumber", + "value": "10840234" + }, + { + "type": "bf:Lccn", + "value": "76901672" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0847257" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636173090017, + "publicationStatement": [ + "Dhāravāḍa : Sāhityaśrī : mārāṭagāraruSam̲aja Pustuk̲alaya, 1976-" + ], + "identifier": [ + "urn:bnum:10840234", + "urn:lccn:76901672", + "urn:undefined:(WaOLN)nyp0847257" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Authors, Kannada -- 20th century -- Biography.", + "Kaṭṭīmani, Basavarāja, 1919-1989 -- Biography." + ], + "titleDisplay": [ + "Basavarāja Kaṭṭīmani avara ātmakathe." + ], + "uri": "b10840234", + "lccClassification": [ + "PL4659.K35 Z463" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dhāravāḍa :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Kundaranāḍina kanda." + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10840234" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013117753" + ], + "physicalLocation": [ + "*OLA 82-4677" + ], + "shelfMark_sort": "a*OLA 82-004677", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10180475", + "shelfMark": [ + "*OLA 82-4677" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-4677" + }, + { + "type": "bf:Barcode", + "value": "33433013117753" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013117753" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10840658", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Folk songs, Kannada", + "Folk songs, Kannada -- Texts" + ], + "publisherLiteral": [ + "Gurumūrti Prākāśana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa janapada sāhitya bhaṇḍāra" + ], + "shelfMark": [ + "*OLA 82-5593" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900850" + ], + "contributorLiteral": [ + "Krishnamurthy, Matighatta.", + "Krishnasarma, Betageri Shrinivasarao, 1900-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-5593" + }, + { + "type": "nypl:Bnumber", + "value": "10840658" + }, + { + "type": "bf:Lccn", + "value": "76900850" + }, + { + "type": "nypl:Oclc", + "value": "25604444" + }, + { + "type": "nypl:Oclc", + "value": "25604444" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0847681" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)25604444" + } + ], + "idOclc": [ + "25604444" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659324546764, + "publicationStatement": [ + "Beṅgaḷūru : Gurumūrti Prākāśana, 1975-" + ], + "identifier": [ + "urn:bnum:10840658", + "urn:lccn:76900850", + "urn:oclc:25604444", + "urn:undefined:(WaOLN)nyp0847681", + "urn:undefined:(OCoLC)25604444" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Folk songs, Kannada -- Texts." + ], + "titleDisplay": [ + "Kannaḍa janapada sāhitya bhaṇḍāra / sangrāhaka, sampādaka, Matighaṭṭa Krṣṇamūrti ; Beṭagēri Krṣṇaśarma avara munnuḍiyondige." + ], + "uri": "b10840658", + "lccClassification": [ + "PL4656 .K33" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Gītegaḷu." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10840658" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10180545", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013126176" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126176" + } + ], + "idBarcode": [ + "33433013126176" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 82-5593" + ], + "shelfMark_sort": "a*OLA 82-005593" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10841472", + "_score": null, + "_source": { + "extent": [ + "v. : port." + ], + "note": [ + { + "noteType": "Note", + "label": "Plays; some previously published in various periodicals.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Bi. Es. Śāstri" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kṣīrasāgarara nāṭakagaḷu." + ], + "shelfMark": [ + "*OLA 82-5560" + ], + "creatorLiteral": [ + "Kṣīrasāgara." + ], + "createdString": [ + "1967" + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-5560" + }, + { + "type": "nypl:Bnumber", + "value": "10841472" + }, + { + "type": "nypl:Oclc", + "value": "28795121" + }, + { + "type": "nypl:Oclc", + "value": "28795121" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0848495" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)28795121" + } + ], + "idOclc": [ + "28795121" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659325090623, + "publicationStatement": [ + "Beṅgaḷūru : Bi. Es. Śāstri, 1967̲" + ], + "identifier": [ + "urn:bnum:10841472", + "urn:oclc:28795121", + "urn:undefined:(WaOLN)nyp0848495", + "urn:undefined:(OCoLC)28795121" + ], + "genreForm": [ + "Kannada drama." + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Kṣīrasāgarara nāṭakagaḷu." + ], + "uri": "b10841472", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10841472" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10180726", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013126085" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126085" + } + ], + "idBarcode": [ + "33433013126085" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 82-5560" + ], + "shelfMark_sort": "a*OLA 82-005560" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10180727", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013126093" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126093" + } + ], + "idBarcode": [ + "33433013126093" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 82-5560" + ], + "shelfMark_sort": "a*OLA 82-005560" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10841507", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Inscriptions, Kannada" + ], + "publisherLiteral": [ + "Kannaḍa Adhyayanapīṭha, Karnāṭaska Viśvavidyālaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śāsana vy̲asaṅga" + ], + "shelfMark": [ + "*OLA 82-3004" + ], + "creatorLiteral": [ + "Kalaburgi, M. M." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75900286" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-3004" + }, + { + "type": "nypl:Bnumber", + "value": "10841507" + }, + { + "type": "bf:Lccn", + "value": "75900286" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0848530" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1653404959303, + "publicationStatement": [ + "Dhāravāḍa : Kannaḍa Adhyayanapīṭha, Karnāṭaska Viśvavidyālaya, 1974-" + ], + "identifier": [ + "urn:bnum:10841507", + "urn:lccn:75900286", + "urn:undefined:(WaOLN)nyp0848530" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Inscriptions, Kannada." + ], + "titleDisplay": [ + "Śāsana vy̲asaṅga / Em. Em. Kalaburgi; pradhāna samp̲adakaru Ār. Si. Hirēmaṭha." + ], + "uri": "b10841507", + "lccClassification": [ + "PL4654 .K27" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Dhāravāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10841507" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013123777" + ], + "shelfMark_sort": "a*OLA 82-003004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10180742", + "shelfMark": [ + "*OLA 82-3004" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013123777" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013123777" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013123785" + ], + "shelfMark_sort": "a*OLA 82-003004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10180743", + "shelfMark": [ + "*OLA 82-3004" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013123785" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013123785" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10843261", + "_score": null, + "_source": { + "extent": [ + "v. in" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 1-3 in 1 vol., previously published seperately.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada language", + "Kannada language -- Style" + ], + "publisherLiteral": [ + "Kāvyālaya Prakāśakaru" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śaili." + ], + "shelfMark": [ + "*OLA 82-5545" + ], + "creatorLiteral": [ + "Raṅgaṇṇa, Es. Vi., 1898-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72904770" + ], + "seriesStatement": [ + "Kannaḍa kāvyamāle" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-5545" + }, + { + "type": "nypl:Bnumber", + "value": "10843261" + }, + { + "type": "bf:Lccn", + "value": "72904770" + }, + { + "type": "nypl:Oclc", + "value": "20553317" + }, + { + "type": "nypl:Oclc", + "value": "20553317" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0850287" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20553317" + } + ], + "idOclc": [ + "20553317" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659355572451, + "publicationStatement": [ + "Maisūru, Kāvyālaya Prakāśakaru, 1971-" + ], + "identifier": [ + "urn:bnum:10843261", + "urn:lccn:72904770", + "urn:oclc:20553317", + "urn:undefined:(WaOLN)nyp0850287", + "urn:undefined:(OCoLC)20553317" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada language -- Style." + ], + "titleDisplay": [ + "Śaili. [Lēkhaka] Es. Vi. Raṅgaṇṇa." + ], + "uri": "b10843261", + "lccClassification": [ + "PL4649 .R3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10843261" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10181027", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013126036" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013126036" + } + ], + "idBarcode": [ + "33433013126036" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 82-5545" + ], + "shelfMark_sort": "a*OLA 82-005545" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10843271", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Eṃ. El. Śrīkaṇṭhēśagauḍa Saṃsmaraṇa Samiti, Kannaḍa Adhyayana Saṃsthe" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrīkaṇṭhēśagauḍara krtigaḷu." + ], + "shelfMark": [ + "*OLA 83-2833" + ], + "creatorLiteral": [ + "Śrīkaṇṭhēśagauḍa, Eṃ. El., 1852-1926." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902729" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-2833" + }, + { + "type": "nypl:Bnumber", + "value": "10843271" + }, + { + "type": "bf:Lccn", + "value": "75902729" + }, + { + "type": "nypl:Oclc", + "value": "25484171" + }, + { + "type": "nypl:Oclc", + "value": "25484171" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0850297" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)25484171" + } + ], + "idOclc": [ + "25484171" + ], + "uniformTitle": [ + "Works" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659354791974, + "publicationStatement": [ + "Maisūru : Eṃ. El. Śrīkaṇṭhēśagauḍa Saṃsmaraṇa Samiti, Kannaḍa Adhyayana Saṃsthe, 1974-" + ], + "identifier": [ + "urn:bnum:10843271", + "urn:lccn:75902729", + "urn:oclc:25484171", + "urn:undefined:(WaOLN)nyp0850297", + "urn:undefined:(OCoLC)25484171" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Śrīkaṇṭhēśagauḍara krtigaḷu." + ], + "uri": "b10843271", + "lccClassification": [ + "PL4659 .S6464 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Works" + ], + "tableOfContents": [ + "1. Mūlakrtigaḷa saṅgraha." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10843271" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10181030", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013119056" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433013119056" + } + ], + "idBarcode": [ + "33433013119056" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark": [ + "*OLA 83-2833" + ], + "shelfMark_sort": "a*OLA 83-002833" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10848968", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Without music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes biographical sketches of the composers.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Composers", + "Composers -- Karnataka", + "Composers -- Karnataka -- Biography", + "Songs, Kannada", + "Songs, Kannada -- Texts" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Mejisṭik Pres" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1962 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dāsara kīrtanegaḷu." + ], + "shelfMark": [ + "JMK 82-18" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1962" + ], + "idLccn": [ + "sa 64006360 /M" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Mañjunāthayya, K." + ], + "dateStartYear": [ + 1962 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMK 82-18" + }, + { + "type": "nypl:Bnumber", + "value": "10848968" + }, + { + "type": "bf:Lccn", + "value": "sa 64006360 /M" + }, + { + "type": "nypl:Oclc", + "value": "23301757" + }, + { + "type": "nypl:Oclc", + "value": "23301757" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B25944" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0855999" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)23301757" + } + ], + "idOclc": [ + "23301757", + "NYPG84-B25944" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689723712703, + "publicationStatement": [ + "Uḍupi, Mejisṭik Pres [1962-" + ], + "identifier": [ + "urn:bnum:10848968", + "urn:lccn:sa 64006360 /M", + "urn:oclc:23301757", + "urn:oclc:NYPG84-B25944", + "urn:undefined:(WaOLN)nyp0855999", + "urn:undefined:(OCoLC)23301757" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Composers -- Karnataka -- Biography.", + "Songs, Kannada -- Texts." + ], + "titleDisplay": [ + "Dāsara kīrtanegaḷu. Saṅgrāhakaru Ke. Mañjunāthayya. [Pariśōdhakaru Eṃ. Rājagōpālācārya]" + ], + "uri": "b10848968", + "lccClassification": [ + "M1808.S55 D4" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Uḍupi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10848968" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i14915103", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMK 82-18 v. 2" + ], + "identifierV2": [ + { + "value": "JMK 82-18 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433071260552" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "JMK 82-18" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433071260552" + ], + "idBarcode": [ + "33433071260552" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMK 82-18 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14915102", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMK 82-18 v. 1" + ], + "identifierV2": [ + { + "value": "JMK 82-18 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433071260776" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "JMK 82-18" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433071260776" + ], + "idBarcode": [ + "33433071260776" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMK 82-18 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10864908", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "India", + "India -- History" + ], + "publisherLiteral": [ + "Prasārāṇga, Maisūru Viśvavidyānilaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bhāratada caritre." + ], + "shelfMark": [ + "*OLL 82-770" + ], + "creatorLiteral": [ + "Narasayya, K." + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "sa 68002831" + ], + "seriesStatement": [ + "Maisūru Viśvavidyānilayada Kannaḍa granthamāle, 54" + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLL 82-770" + }, + { + "type": "nypl:Bnumber", + "value": "10864908" + }, + { + "type": "bf:Lccn", + "value": "sa 68002831" + }, + { + "type": "nypl:Oclc", + "value": "31187193" + }, + { + "type": "nypl:Oclc", + "value": "31187193" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0871959" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)31187193" + } + ], + "idOclc": [ + "31187193" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659308511682, + "publicationStatement": [ + "[Maisūru] Prasārāṇga, Maisūru Viśvavidyānilaya, 196-" + ], + "identifier": [ + "urn:bnum:10864908", + "urn:lccn:sa 68002831", + "urn:oclc:31187193", + "urn:undefined:(WaOLN)nyp0871959", + "urn:undefined:(OCoLC)31187193" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "India -- History." + ], + "titleDisplay": [ + "Bhāratada caritre. [Lēkhaka] Ke. Narasayya." + ], + "uri": "b10864908", + "lccClassification": [ + "DS436 .N37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Maisūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10864908" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13932012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLL 82-770" + ], + "identifierV2": [ + { + "value": "*OLL 82-770", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061320531" + } + ], + "physicalLocation": [ + "*OLL 82-770" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061320531" + ], + "idBarcode": [ + "33433061320531" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLL 82-000770" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10893177", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"State level school reader in Kannada for non-Kannada speaking students.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added t. p. in English: Kannada nudi /editor, M. S.Thirumalai.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada and Hindi ;introductory and explanatory matter in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada language", + "Kannada language -- Textbooks for foreign speakers" + ], + "publisherLiteral": [ + "Senṭral Insṭiṭyūte āph Iṇḍiyan Lāngvējas" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa nuḍi" + ], + "shelfMark": [ + "*OLA 84-2050" + ], + "creatorLiteral": [ + "Mallikārjuna, B." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "83901906" + ], + "seriesStatement": [ + "CIIL second language textbooks series ; 6,7" + ], + "contributorLiteral": [ + "Thirumalai, M. S." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-2050" + }, + { + "type": "nypl:Bnumber", + "value": "10893177" + }, + { + "type": "bf:Lccn", + "value": "83901906" + }, + { + "type": "nypl:Oclc", + "value": "14129155" + }, + { + "type": "nypl:Oclc", + "value": "14129155" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0900270" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)14129155" + } + ], + "idOclc": [ + "14129155" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659324553239, + "publicationStatement": [ + "Maisūru : Senṭral Insṭiṭyūte āph Iṇḍiyan Lāngvējas, 1980-" + ], + "identifier": [ + "urn:bnum:10893177", + "urn:lccn:83901906", + "urn:oclc:14129155", + "urn:undefined:(WaOLN)nyp0900270", + "urn:undefined:(OCoLC)14129155" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada language -- Textbooks for foreign speakers." + ], + "titleDisplay": [ + "Kannaḍa nuḍi / lēkhaka, Bha. Mallikārjuna ;sampadaka, Mā. Su. Tirumalai." + ], + "uri": "b10893177", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10893177" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10187928", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997643" + } + ], + "physicalLocation": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 3" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997643" + ], + "idBarcode": [ + "33433012997643" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10187926", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997627" + } + ], + "physicalLocation": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 2" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997627" + ], + "idBarcode": [ + "33433012997627" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10187927", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997635" + } + ], + "physicalLocation": [ + "*OLA 84-2050|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 1" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997635" + ], + "idBarcode": [ + "33433012997635" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10893183", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Songs without music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 2 published in 1974.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Purandaradāsa, 1484-1564", + "Purandaradāsa, 1484-1564 -- Criticism and interpretation", + "Carnatic music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrīpurandaradāsara Nānnūraneya Varṣada Utsava Maṇḍala" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "̄Srī Purandaradāsara sāhitya" + ], + "shelfMark": [ + "JMK 84-11" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1974" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Purandaradāsa, 1484-1564.", + "Krṣṇaśarmā, Beṭagēri, 1900-", + "Huccarāyaru, Beṅgēri." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMK 84-11" + }, + { + "type": "nypl:Bnumber", + "value": "10893183" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B80116" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0900276" + } + ], + "idOclc": [ + "NYPG84-B80116" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689723786448, + "publicationStatement": [ + "Dhāravāḍa : Śrīpurandaradāsara Nānnūraneya Varṣada Utsava Maṇḍala, 1974-" + ], + "identifier": [ + "urn:bnum:10893183", + "urn:oclc:NYPG84-B80116", + "urn:undefined:(WaOLN)nyp0900276" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Purandaradāsa, 1484-1564 -- Criticism and interpretation.", + "Carnatic music." + ], + "titleDisplay": [ + "̄Srī Purandaradāsara sāhitya / sampādakaru Śrī Beṭagēri Krṣṇaśarma ; Śrī Beṅgēri Huccarāyaru." + ], + "uri": "b10893183", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dhāravāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "2. Ārtabhāva." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10893183" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14916909", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMK 84-11 v. 2" + ], + "identifierV2": [ + { + "value": "JMK 84-11 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433068805302" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "JMK 84-11" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433068805302" + ], + "idBarcode": [ + "33433068805302" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMK 84-11 v. 000002" + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10894417", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Yakṣagāna", + "Actors", + "Actors -- Karnataka", + "Actors -- Karnataka -- Biography" + ], + "publisherLiteral": [ + "Mayura Prakashana : adhikrta mārātagāraru, Pragatiśīla Sāhitya Saṅgha" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yakṣagāna kalāvidaru" + ], + "shelfMark": [ + "*OLA 84-1994" + ], + "creatorLiteral": [ + "Alse, A. Ganapaiah, 1940-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75906010" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-1994" + }, + { + "type": "nypl:Bnumber", + "value": "10894417" + }, + { + "type": "bf:Lccn", + "value": "75906010" + }, + { + "type": "nypl:Oclc", + "value": "20808576" + }, + { + "type": "nypl:Oclc", + "value": "20808576" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0901510" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20808576" + } + ], + "idOclc": [ + "20808576" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659354932047, + "publicationStatement": [ + "Beṅgaḷūru : Mayura Prakashana : adhikrta mārātagāraru, Pragatiśīla Sāhitya Saṅgha, 1974-" + ], + "identifier": [ + "urn:bnum:10894417", + "urn:lccn:75906010", + "urn:oclc:20808576", + "urn:undefined:(WaOLN)nyp0901510", + "urn:undefined:(OCoLC)20808576" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Yakṣagāna.", + "Actors -- Karnataka -- Biography." + ], + "titleDisplay": [ + "Yakṣagāna kalāvidaru / A. Gaṇapayya Alse." + ], + "uri": "b10894417", + "lccClassification": [ + "PN2881.5 .A4" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10894417" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10188096", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-1994|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 84-1994|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997601" + } + ], + "physicalLocation": [ + "*OLA 84-1994|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997601" + ], + "idBarcode": [ + "33433012997601" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-1994|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10894424", + "_score": null, + "_source": { + "extent": [ + "v. : ill., map ;" + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1959.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Rājya Sāhitya Akāḍemiyinda puraskrta grantha, 1960.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: v.1, p. [290]-296.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada literature", + "Kannada literature -- History and criticism" + ], + "publisherLiteral": [ + "Samāja Pustakālaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sāhitya saṃśōdhane mattu samālōcane" + ], + "shelfMark": [ + "*OLA 83-4874" + ], + "creatorLiteral": [ + "Naik, Sadanand Narayan, 1913-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74904049" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-4874" + }, + { + "type": "nypl:Bnumber", + "value": "10894424" + }, + { + "type": "bf:Lccn", + "value": "74904049" + }, + { + "type": "nypl:Oclc", + "value": "20496091" + }, + { + "type": "nypl:Oclc", + "value": "20496091" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0901517" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20496091" + } + ], + "idOclc": [ + "20496091" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659344353544, + "publicationStatement": [ + "Dhāravāḍa : Samāja Pustakālaya, 1974-" + ], + "identifier": [ + "urn:bnum:10894424", + "urn:lccn:74904049", + "urn:oclc:20496091", + "urn:undefined:(WaOLN)nyp0901517", + "urn:undefined:(OCoLC)20496091" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada literature -- History and criticism." + ], + "titleDisplay": [ + "Sāhitya saṃśōdhane mattu samālōcane / lēkhakaru Sadānanda N̄yaka." + ], + "uri": "b10894424", + "lccClassification": [ + "PL4650.5 .N26 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dhāravāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10894424" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10188098", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 83-4874|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 83-4874|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012996918" + } + ], + "physicalLocation": [ + "*OLA 83-4874|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012996918" + ], + "idBarcode": [ + "33433012996918" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 83-4874|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10902372", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Without the music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 7: Karnāṭaka Viśvavidyālaya, Rajata Mahōtsava prakaṭane.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Folk songs, Kannada", + "Folk songs, Kannada -- Texts" + ], + "publisherLiteral": [ + "Karnāṭaka Viśvavidyālaya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jīvana Jōkāli." + ], + "shelfMark": [ + "*OLA 84-3320" + ], + "creatorLiteral": [ + "Sunkapur, M. S." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "70928091" + ], + "seriesStatement": [ + "Janapada sāhitya māle, 11, 16, 17" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-3320" + }, + { + "type": "nypl:Bnumber", + "value": "10902372" + }, + { + "type": "bf:Lccn", + "value": "70928091" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0909480" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636202044347, + "publicationStatement": [ + "Dhāravāḍa, Karnāṭaka Viśvavidyālaya [1971-" + ], + "identifier": [ + "urn:bnum:10902372", + "urn:lccn:70928091", + "urn:undefined:(WaOLN)nyp0909480" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Folk songs, Kannada -- Texts." + ], + "titleDisplay": [ + "Jīvana Jōkāli. Sampādakaru Eṃ. Es. Suṅkāpura." + ], + "uri": "b10902372", + "lccClassification": [ + "M1808.S795 J6" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Dhāravāḍa," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "6. Ḍoḷḷina hāḍu. -- 7. Gaṇgigauri saṃvāda-Bedeṇḍegabba. -- 8 K̲olupada." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10902372" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012998203" + ], + "physicalLocation": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8." + ], + "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000008", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10189109", + "shelfMark": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 8" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 8" + }, + { + "type": "bf:Barcode", + "value": "33433012998203" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 8" + ], + "idBarcode": [ + "33433012998203" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012998195" + ], + "physicalLocation": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8." + ], + "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10189108", + "shelfMark": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 7" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 7" + }, + { + "type": "bf:Barcode", + "value": "33433012998195" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 7" + ], + "idBarcode": [ + "33433012998195" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012998187" + ], + "physicalLocation": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8." + ], + "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000006", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10189107", + "shelfMark": [ + "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433012998187" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433012998187" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10920342", + "_score": null, + "_source": { + "extent": [ + "v. port." + ], + "note": [ + { + "noteType": "Note", + "label": "Comprises collected writings of the author, chiefly prefaces to his own works.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Viśvabhārati Prakāśana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ciracētana." + ], + "shelfMark": [ + "*OLA 84-4187" + ], + "creatorLiteral": [ + "Krishnarao, A. N., 1908-1971." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "72907646" + ], + "contributorLiteral": [ + "Krṣṇarāya, Śā. Maṃ." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-4187" + }, + { + "type": "nypl:Bnumber", + "value": "10920342" + }, + { + "type": "bf:Lccn", + "value": "72907646" + }, + { + "type": "nypl:Oclc", + "value": "20716535" + }, + { + "type": "nypl:Oclc", + "value": "20716535" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0927484" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20716535" + } + ], + "idOclc": [ + "20716535" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659310404344, + "publicationStatement": [ + "Maḍagāṃva, Viśvabhārati Prakāśana 1894- i.e. 1972-" + ], + "identifier": [ + "urn:bnum:10920342", + "urn:lccn:72907646", + "urn:oclc:20716535", + "urn:undefined:(WaOLN)nyp0927484", + "urn:undefined:(OCoLC)20716535" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Ciracētana. Sampādaka Śā. Maṃ. Krṣṇarāya." + ], + "uri": "b10920342", + "lccClassification": [ + "PL4659.K68 C5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maḍagāṃva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10920342" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10194087", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-4187|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 84-4187|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012998468" + } + ], + "physicalLocation": [ + "*OLA 84-4187|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012998468" + ], + "idBarcode": [ + "33433012998468" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-4187|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10920356", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada language", + "Kannada language -- Grammar" + ], + "publisherLiteral": [ + "Kannada Saṃśōdhana Saṃsthe, Karnāṭaka Viśvavidyāla" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa vyākaraṇada kelavu samasyegaḷu" + ], + "shelfMark": [ + "*OLA 84-4185" + ], + "creatorLiteral": [ + "Krṣṇa Bhaṭṭa, Seḍiyāpu, 1902-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75906826" + ], + "seriesStatement": [ + "Saṃśōdhana upanyāsamāle ; 10-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-4185" + }, + { + "type": "nypl:Bnumber", + "value": "10920356" + }, + { + "type": "bf:Lccn", + "value": "75906826" + }, + { + "type": "nypl:Oclc", + "value": "35765149" + }, + { + "type": "nypl:Oclc", + "value": "35765149" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0927498" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)35765149" + } + ], + "idOclc": [ + "35765149" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659324590260, + "publicationStatement": [ + "Dhāravāḍa : Kannada Saṃśōdhana Saṃsthe, Karnāṭaka Viśvavidyāla, 1974-" + ], + "identifier": [ + "urn:bnum:10920356", + "urn:lccn:75906826", + "urn:oclc:35765149", + "urn:undefined:(WaOLN)nyp0927498", + "urn:undefined:(OCoLC)35765149" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada language -- Grammar." + ], + "titleDisplay": [ + "Kannaḍa vyākaraṇada kelavu samasyegaḷu / upanyāsakaru sēḍiy̲apu lrṣṇabhaṭṭa." + ], + "uri": "b10920356", + "lccClassification": [ + "PL4644 .K7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dhāravāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10920356" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10194093", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-4185|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 84-4185|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012998450" + } + ], + "physicalLocation": [ + "*OLA 84-4185|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012998450" + ], + "idBarcode": [ + "33433012998450" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-4185|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10920641", + "_score": null, + "_source": { + "extent": [ + "v. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Published on the occasion of the golden jubilee celebration of the Kannada Sahitya Parishat.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannada literature", + "Kannada literature -- Congresses" + ], + "publisherLiteral": [ + "Kannaḍa Sāhitya Pariṣattu" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa sāhitya sammēḷanagaḷa adhyakṣara bhāṣaṇagaḷu." + ], + "shelfMark": [ + "*OLA 84-4113" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "76922271" + ], + "seriesStatement": [ + "Trivārṣika yōjaneya pustakamāle, 10" + ], + "contributorLiteral": [ + "Kannada Literary Akademy.", + "Kannada Literary Conference." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-4113" + }, + { + "type": "nypl:Bnumber", + "value": "10920641" + }, + { + "type": "bf:Lccn", + "value": "76922271" + }, + { + "type": "nypl:Oclc", + "value": "35765152" + }, + { + "type": "nypl:Oclc", + "value": "35765152" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0927784" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)35765152" + } + ], + "idOclc": [ + "35765152" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659324553239, + "publicationStatement": [ + "Beṅgaḷūru, Kannaḍa Sāhitya Pariṣattu, 1970-" + ], + "identifier": [ + "urn:bnum:10920641", + "urn:lccn:76922271", + "urn:oclc:35765152", + "urn:undefined:(WaOLN)nyp0927784", + "urn:undefined:(OCoLC)35765152" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannada literature -- Congresses." + ], + "titleDisplay": [ + "Kannaḍa sāhitya sammēḷanagaḷa adhyakṣara bhāṣaṇagaḷu." + ], + "uri": "b10920641", + "lccClassification": [ + "PL4650 .A27" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10920641" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10194135", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-4113|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 84-4113|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012998286" + } + ], + "physicalLocation": [ + "*OLA 84-4113|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012998286" + ], + "idBarcode": [ + "33433012998286" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-4113|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10926039", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Geḷeyara Gumpu (Karnataka, India)" + ], + "publisherLiteral": [ + "Rājahaṃsa Prakāśana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nānu kaṇḍa Geḷeyara Gumpu" + ], + "shelfMark": [ + "*OLA 84-2972" + ], + "creatorLiteral": [ + "Kulakarṇi, S. G." + ], + "createdString": [ + "1978" + ], + "idLccn": [ + "79900881 /SA" + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-2972" + }, + { + "type": "nypl:Bnumber", + "value": "10926039" + }, + { + "type": "bf:Lccn", + "value": "79900881 /SA" + }, + { + "type": "nypl:Oclc", + "value": "8845502" + }, + { + "type": "nypl:Oclc", + "value": "8845502" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0933193" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)8845502" + } + ], + "idOclc": [ + "8845502" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659333550531, + "publicationStatement": [ + "Dhāravāḍa : Rājahaṃsa Prakāśana, [1978]-" + ], + "identifier": [ + "urn:bnum:10926039", + "urn:lccn:79900881 /SA", + "urn:oclc:8845502", + "urn:undefined:(WaOLN)nyp0933193", + "urn:undefined:(OCoLC)8845502" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Geḷeyara Gumpu (Karnataka, India)" + ], + "titleDisplay": [ + "Nānu kaṇḍa Geḷeyara Gumpu / Śē. Gō. Kulakarṇi." + ], + "uri": "b10926039", + "lccClassification": [ + "PL4650.A243 K84 1978" + ], + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Dhāravāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Śānti-Nikētana.--2. Jayakarnāṭka.--3. Sādhana Mudraṇālaya mattu Jīvana māsapatrike." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10926039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10195006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 3" + ], + "identifierV2": [ + { + "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997999" + } + ], + "physicalLocation": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 3" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997999" + ], + "idBarcode": [ + "33433012997999" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000003" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10195005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 2" + ], + "identifierV2": [ + { + "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997981" + } + ], + "physicalLocation": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 2" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997981" + ], + "idBarcode": [ + "33433012997981" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10195004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 1" + ], + "identifierV2": [ + { + "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012997973" + } + ], + "physicalLocation": [ + "*OLA 84-2972|zLibrary has: Vols. 1-3." + ], + "enumerationChronology": [ + "v. 1" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012997973" + ], + "idBarcode": [ + "33433012997973" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10946973", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 published in 1971.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kālidāsa.", + "Kālidāsa. -- Poetry" + ], + "publisherLiteral": [ + "Rāsa Prakāśana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śākuntalā." + ], + "shelfMark": [ + "*OLA 84-4754" + ], + "creatorLiteral": [ + "Rāmarāya, Samētanahaḷḷi, 1917-1999." + ], + "createdString": [ + "1971" + ], + "seriesStatement": [ + "S. Rama Raya. Rāsa sāhitya, 16", + "Rāsa prakāśana, 9" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-4754" + }, + { + "type": "nypl:Bnumber", + "value": "10946973" + }, + { + "type": "nypl:Oclc", + "value": "32071380" + }, + { + "type": "nypl:Oclc", + "value": "32071380" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0954152" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)32071380" + } + ], + "idOclc": [ + "32071380" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659355644076, + "publicationStatement": [ + "[Maṇḍya?] Rāsa Prakāśana [1971-" + ], + "identifier": [ + "urn:bnum:10946973", + "urn:oclc:32071380", + "urn:undefined:(WaOLN)nyp0954152", + "urn:undefined:(OCoLC)32071380" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kālidāsa. -- Poetry." + ], + "titleDisplay": [ + "Śākuntalā. [Lēkhaka] Samētanahaḷḷi Rāmarāya." + ], + "uri": "b10946973", + "lccClassification": [ + "PK4659.R316 S2" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Maṇḍya?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "2. Vyavahārāṅgaṃ." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10946973" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10198402", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-4754|zLibrary has: Vol. 2." + ], + "identifierV2": [ + { + "value": "*OLA 84-4754|zLibrary has: Vol. 2.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012998641" + } + ], + "physicalLocation": [ + "*OLA 84-4754|zLibrary has: Vol. 2." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012998641" + ], + "idBarcode": [ + "33433012998641" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-4754|zLibrary has: Vol. 2." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10956213", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit (Kannada script); introductory matter in English and Kannada; commentary in Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Madhva, active 13th century", + "Dvaita (Vedanta)", + "Dvaita (Vedanta) -- Early works to 1800" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrī Sarvajñācārya Sēvā Saṅgha" + ], + "description": [ + "Exposition of philosophical concepts according to the Dvaita (dualism) school in Indian philosophy as propounded by Madhva, 13th cent." + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 10 + ], + "createdYear": [ + 1978 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yuktimallikā : mūlasahita Kannaḍa arthānuvāda" + ], + "shelfMark": [ + "*OKN 85-1560" + ], + "numItemVolumesParsed": [ + 10 + ], + "creatorLiteral": [ + "Vādirāja, active 16th century." + ], + "createdString": [ + "1978" + ], + "idLccn": [ + "83901597 /SA" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 85-1560" + }, + { + "type": "nypl:Bnumber", + "value": "10956213" + }, + { + "type": "bf:Lccn", + "value": "83901597 /SA" + }, + { + "type": "nypl:Oclc", + "value": "NYPG85-B59981" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0963410" + } + ], + "idOclc": [ + "NYPG85-B59981" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675264539633, + "publicationStatement": [ + "Dāvaṇagere : Śrī Sarvajñācārya Sēvā Saṅgha, 1978-" + ], + "identifier": [ + "urn:bnum:10956213", + "urn:lccn:83901597 /SA", + "urn:oclc:NYPG85-B59981", + "urn:undefined:(WaOLN)nyp0963410" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Madhva, active 13th century.", + "Dvaita (Vedanta) -- Early works to 1800." + ], + "titleDisplay": [ + "Yuktimallikā : mūlasahita Kannaḍa arthānuvāda / anuvādakaru Bi. Bhīmarāv." + ], + "uri": "b10956213", + "lccClassification": [ + "BL1286.292.M34 V33 1978" + ], + "numItems": [ + 10 + ], + "numAvailable": [ + 10 + ], + "placeOfPublication": [ + "Dāvaṇagere" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10956213" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 10, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "uri": "i13951317", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 14" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 14", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618830" + } + ], + "enumerationChronology": [ + "v. 14" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618830" + ], + "idBarcode": [ + "33433058618830" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 14, + "lte": 14 + } + ], + "enumerationChronology_sort": [ + " 14-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000014" + }, + "sort": [ + " 14-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "uri": "i13951316", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 13" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 13", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618822" + } + ], + "enumerationChronology": [ + "v. 13" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618822" + ], + "idBarcode": [ + "33433058618822" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "enumerationChronology_sort": [ + " 13-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000013" + }, + "sort": [ + " 13-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "uri": "i13951315", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 11" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 11", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618749" + } + ], + "enumerationChronology": [ + "v. 11" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618749" + ], + "idBarcode": [ + "33433058618749" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], + "enumerationChronology_sort": [ + " 11-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000011" + }, + "sort": [ + " 11-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "uri": "i13951314", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 10" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 10", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618731" + } + ], + "enumerationChronology": [ + "v. 10" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618731" + ], + "idBarcode": [ + "33433058618731" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "enumerationChronology_sort": [ + " 10-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000010" + }, + "sort": [ + " 10-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i13951313", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 8" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 8", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618814" + } + ], + "enumerationChronology": [ + "v. 8" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618814" + ], + "idBarcode": [ + "33433058618814" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "enumerationChronology_sort": [ + " 8-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000008" + }, + "sort": [ + " 8-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i13951312", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 7" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 7", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618806" + } + ], + "enumerationChronology": [ + "v. 7" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618806" + ], + "idBarcode": [ + "33433058618806" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "enumerationChronology_sort": [ + " 7-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000007" + }, + "sort": [ + " 7-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i13951311", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 6" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618798" + } + ], + "enumerationChronology": [ + "v. 6" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618798" + ], + "idBarcode": [ + "33433058618798" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000006" + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i13951310", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 5" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618780" + } + ], + "enumerationChronology": [ + "v. 5" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618780" + ], + "idBarcode": [ + "33433058618780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000005" + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i13951309", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 4" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618772" + } + ], + "enumerationChronology": [ + "v. 4" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618772" + ], + "idBarcode": [ + "33433058618772" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000004" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13951308", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 85-1560 v. 3" + ], + "identifierV2": [ + { + "value": "*OKN 85-1560 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618764" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OKN 85-1560" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618764" + ], + "idBarcode": [ + "33433058618764" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 85-1560 v. 000003" + }, + "sort": [ + " 3-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10960071", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Folk songs, Kannada", + "Folk songs, Kannada -- Dhāwār (District)", + "Folk songs, Kannada -- Dhāwār (District) -- Texts" + ], + "publisherLiteral": [ + "Bhārati Prakāśana ayāṇḍa Buk Ḍipō," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Gī gī padagaḷu." + ], + "shelfMark": [ + "*OLA 85-1273" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78903423 /SA" + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1273" + }, + { + "type": "nypl:Bnumber", + "value": "10960071" + }, + { + "type": "bf:Lccn", + "value": "78903423 /SA" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0967274" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636195364637, + "publicationStatement": [ + "Hubbaḷḷi : Bhārati Prakāśana ayāṇḍa Buk Ḍipō, [197-]" + ], + "identifier": [ + "urn:bnum:10960071", + "urn:lccn:78903423 /SA", + "urn:undefined:(WaOLN)nyp0967274" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Folk songs, Kannada -- Dhāwār (District) -- Texts." + ], + "titleDisplay": [ + "Gī gī padagaḷu." + ], + "uri": "b10960071", + "lccClassification": [ + "PL4658.5.D482 G5 1970z" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Hubbaḷḷi :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10960071" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999102" + ], + "physicalLocation": [ + "*OLA 85-1273" + ], + "shelfMark_sort": "a*OLA 85-001273", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10200106", + "shelfMark": [ + "*OLA 85-1273" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1273" + }, + { + "type": "bf:Barcode", + "value": "33433012999102" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012999102" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10960726", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2- Pradhāna sampādakaru Es. Eṃ. Vrṣabhēndrasvāmi.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Basava, active 1160", + "Basava, active 1160 -- Criticism and interpretation", + "Lingayats" + ], + "publisherLiteral": [ + "Kannaḍa Adhyayanapīṭha, Karnāṭaka Viśvavidyālaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Basavamārga" + ], + "shelfMark": [ + "*OLA 85-1658" + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82903291 /SA" + ], + "contributorLiteral": [ + "Kalaburgi, Eṃ. Eṃ., 1938-", + "Sunkapur, M. S." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1658" + }, + { + "type": "nypl:Bnumber", + "value": "10960726" + }, + { + "type": "bf:Lccn", + "value": "82903291 /SA" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0967929" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636173089685, + "publicationStatement": [ + "Dhāravāḍa : Kannaḍa Adhyayanapīṭha, Karnāṭaka Viśvavidyālaya, 1980-" + ], + "identifier": [ + "urn:bnum:10960726", + "urn:lccn:82903291 /SA", + "urn:undefined:(WaOLN)nyp0967929" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Basava, active 1160 -- Criticism and interpretation.", + "Lingayats." + ], + "titleDisplay": [ + "Basavamārga / pradhāna sampādakaru Eṃ. Es. Suṅkāpura, sampādakaru Eṃ. Eṃ. Kalaburgi." + ], + "uri": "b10960726", + "lccClassification": [ + "PL4659.B34 Z64 1980" + ], + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Dhāravāḍa :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1-2. Basavamārga.--3. Śivaśaraṇara kāyaka siddhānta.--4. Basavēśvara-Gāndhīji." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10960726" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999300" + ], + "physicalLocation": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4." + ], + "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10200274", + "shelfMark": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433012999300" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433012999300" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999318" + ], + "physicalLocation": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4." + ], + "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10200273", + "shelfMark": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433012999318" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433012999318" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999284" + ], + "physicalLocation": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4." + ], + "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10200272", + "shelfMark": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433012999284" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433012999284" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433012999292" + ], + "physicalLocation": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4." + ], + "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10200271", + "shelfMark": [ + "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433012999292" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433012999292" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10960742", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 2- published by: Rāyabḡa, Jille Beḷagāvi : Kālagati Prakāśana.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hinduism" + ], + "publisherLiteral": [ + "Prasārāṅga, Beṅgaḷūru Viśvavidyālaya," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Pravāha patitara karma ʻHindūʼ emba dharma" + ], + "shelfMark": [ + "*OLY 85-1572" + ], + "creatorLiteral": [ + "Joshi, Shankar Baldixit, 1896-" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77904440" + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 85-1572" + }, + { + "type": "nypl:Bnumber", + "value": "10960742" + }, + { + "type": "bf:Lccn", + "value": "77904440" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0967945" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636217462897, + "publicationStatement": [ + "Beṅgaḷūru : Prasārāṅga, Beṅgaḷūru Viśvavidyālaya, c1976-" + ], + "identifier": [ + "urn:bnum:10960742", + "urn:lccn:77904440", + "urn:undefined:(WaOLN)nyp0967945" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hinduism." + ], + "titleDisplay": [ + "Pravāha patitara karma ʻHindūʼ emba dharma / Śaṃ. Bā. Jōśi." + ], + "uri": "b10960742", + "lccClassification": [ + "BL1210 .J63 1976" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. [Without special title] -- 2. Vaivasvata Manupranita Manava dharma." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10960742" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060421967" + ], + "physicalLocation": [ + "*OLY 85-1572" + ], + "shelfMark_sort": "a*OLY 85-1572 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13952123", + "shelfMark": [ + "*OLY 85-1572 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 85-1572 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433060421967" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433060421967" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060421959" + ], + "physicalLocation": [ + "*OLY 85-1572" + ], + "shelfMark_sort": "a*OLY 85-1572 v. 000001", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13952122", + "shelfMark": [ + "*OLY 85-1572 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 85-1572 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433060421959" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433060421959" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10977467", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Śūnyasampādane", + "Lingayat poetry, Kannada", + "Lingayat poetry, Kannada -- History and criticism" + ], + "publisherLiteral": [ + "Ṡrī śaila Jagadguru Niḍumāmiḍi Nivāsa" + ], + "description": [ + "On the Śūnyasampādane, 15th century anthology of Virasaivite poetry." + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sampādaneya sompu : samagra vivēcane" + ], + "shelfMark": [ + "*OLA 84-4577" + ], + "creatorLiteral": [ + "Ja. Ca. Ni., 1911-" + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78904240 /SA" + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 84-4577" + }, + { + "type": "nypl:Bnumber", + "value": "10977467" + }, + { + "type": "bf:Lccn", + "value": "78904240 /SA" + }, + { + "type": "nypl:Oclc", + "value": "11210904" + }, + { + "type": "nypl:Oclc", + "value": "11210904" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0984696" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11210904" + } + ], + "idOclc": [ + "11210904" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1659340534228, + "publicationStatement": [ + "Beṅgaḷūru : Ṡrī śaila Jagadguru Niḍumāmiḍi Nivāsa, 1977-" + ], + "identifier": [ + "urn:bnum:10977467", + "urn:lccn:78904240 /SA", + "urn:oclc:11210904", + "urn:undefined:(WaOLN)nyp0984696", + "urn:undefined:(OCoLC)11210904" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Śūnyasampādane.", + "Lingayat poetry, Kannada -- History and criticism." + ], + "titleDisplay": [ + "Sampādaneya sompu : samagra vivēcane / Ja.Ca.Ni." + ], + "uri": "b10977467", + "lccClassification": [ + "PL4656.S953 J3 1977" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Esaḷondu. Anubhava sampuṭa." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10977467" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10202056", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 84-4577|zLibrary has: Vol. 1." + ], + "identifierV2": [ + { + "value": "*OLA 84-4577|zLibrary has: Vol. 1.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012998591" + } + ], + "physicalLocation": [ + "*OLA 84-4577|zLibrary has: Vol. 1." + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012998591" + ], + "idBarcode": [ + "33433012998591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "a*OLA 84-4577|zLibrary has: Vol. 1." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10996867", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994", + "Authors, Kannada", + "Authors, Kannada -- 20th century", + "Authors, Kannada -- 20th century -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sahyādri Prakāśana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1980 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Nenapina dōṇiyalli" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OLA 86-3268" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1980" + ], + "creatorLiteral": [ + "Kuvempu, 1904-1994." + ], + "idLccn": [ + "81901148 /SA" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Sahyādri Prakāśana ; 25" + ], + "dateStartYear": [ + 1980 + ], + "idOclc": [ + "8111415", + "NYPG86-B104049" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 86-3268" + }, + { + "type": "nypl:Bnumber", + "value": "10996867" + }, + { + "type": "nypl:Oclc", + "value": "8111415" + }, + { + "type": "nypl:Oclc", + "value": "NYPG86-B104049" + }, + { + "type": "bf:Lccn", + "value": "81901148 /SA" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1004145" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)8111415" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1703708208747, + "publicationStatement": [ + "Maisūru : Sahyādri Prakāśana 1980-" + ], + "identifier": [ + "urn:shelfmark:*OLA 86-3268", + "urn:bnum:10996867", + "urn:oclc:8111415", + "urn:oclc:NYPG86-B104049", + "urn:lccn:81901148 /SA", + "urn:identifier:(WaOLN)nyp1004145", + "urn:identifier:(OCoLC)8111415" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994.", + "Authors, Kannada -- 20th century -- Biography." + ], + "titleDisplay": [ + "Nenapina dōṇiyalli / Kuvempu." + ], + "uri": "b10996867", + "lccClassification": [ + "PL4659.K94 Z468" + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10996867" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013120096" + ], + "identifier": [ + "urn:shelfmark:*OLA 86-3268 v. 2", + "urn:barcode:33433013120096" + ], + "identifierV2": [ + { + "value": "*OLA 86-3268 v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433013120096", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 86-3268" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 86-3268 v. 2" + ], + "shelfMark_sort": "a*OLA 86-3268 v. 000002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "uri": "i10209587" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "enumerationChronology": [ + "v. 1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013120682" + ], + "identifier": [ + "urn:shelfmark:*OLA 86-3268 v. 1", + "urn:barcode:33433013120682" + ], + "identifierV2": [ + { + "value": "*OLA 86-3268 v. 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433013120682", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLA 86-3268" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLA 86-3268 v. 1" + ], + "shelfMark_sort": "a*OLA 86-3268 v. 000001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i10209586" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:08 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "291444", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"lte\":1985}}},{\"range\":{\"dateEndYear\":{\"lte\":1985}}}]}},{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":1984}}},{\"range\":{\"dateEndYear\":{\"gte\":1984}}}]}}]}},{\"bool\":{\"should\":[{\"term\":{\"language.id\":\"lang:kan\"}},{\"term\":{\"language.label\":\"lang:kan\"}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "857" + }, + "timeout": 30000 + }, + "options": {}, + "id": 53 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json b/test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json deleted file mode 100644 index 7b204fea..00000000 --- a/test/fixtures/query-718f499a27489109e9b1b6c1f418f385.json +++ /dev/null @@ -1,2797 +0,0 @@ -{ - "took": 115, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 13.445197, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10833141", - "_score": 13.445197, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Some issues bear also thematic titles.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Vol. 73, no. 1 never published.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Has occasional supplements.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Vol. 90, no. 24 (Aug. 25, 2014).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with issue for Feb. 21, 1925." - ], - "subjectLiteral_exploded": [ - "Literature", - "Literature -- Periodicals", - "Intellectual life", - "Electronic journals", - "New York (N.Y.)", - "New York (N.Y.) -- Intellectual life", - "New York (N.Y.) -- Intellectual life -- Directories", - "New York (State)", - "New York (State) -- New York" - ], - "numItemDatesParsed": [ - 911 - ], - "publisherLiteral": [ - "F-R Pub. Corp.", - "D. Carey", - "Condé Nast Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 917 - ], - "createdYear": [ - 1925 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The New Yorker." - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "numItemVolumesParsed": [ - 847 - ], - "createdString": [ - "1925" - ], - "idLccn": [ - " 28005329" - ], - "idIssn": [ - "0028-792X" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ross, Harold Wallace, 1892-1951", - "Shawn, William", - "Brown, Tina", - "Remnick, David", - "White, Katharine Sergeant Angell", - "White, E. B. (Elwyn Brooks), 1899-1985", - "Irvin, Rea, 1881-1972", - "Angell, Roger" - ], - "dateStartYear": [ - 1925 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DA+ (New Yorker)" - }, - { - "type": "nypl:Bnumber", - "value": "10833141" - }, - { - "type": "bf:Issn", - "value": "0028-792X" - }, - { - "type": "bf:Lccn", - "value": " 28005329" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1760231" - }, - { - "type": "bf:Identifier", - "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" - } - ], - "idOclc": [ - "1760231" - ], - "uniformTitle": [ - "New Yorker (New York, N.Y. : 1925)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "97(2021)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 1 (Feb. 14, 2022)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 2 (Feb. 28, 2022)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 3 (Mar. 7, 2022)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 4 (Mar. 14, 2022)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 5 (Mar. 21, 2022)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 6 (Mar. 28, 2022)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 7 (Apr. 4, 2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 8 (Apr. 11, 2022)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 9 (Apr. 18, 2022)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 10 (Apr. 25, 2022)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 11 (May. 9, 2022)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 12 (May. 16, 2022)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 13 (May. 23, 2022)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 14 (May. 30, 2022)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 15 (Jun. 6, 2022)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 16 (Jun. 13, 2022)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 17 (Jun. 20, 2022)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 18 (Jun. 27, 2022)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 19 (Jul. 4, 2022)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 20 (Jul. 11, 2022)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 21 (Jul. 25, 2022)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 22 (Aug. 1, 2022)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 23 (Aug. 8, 2022)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 24 (Aug. 15, 2022)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 25 (Aug. 22, 2022)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 26 (Aug. 29, 2022)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 27 (Sep. 5, 2022)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 28 (Sep. 12, 2022)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 29 (Sep. 19, 2022)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 30 (Sep. 26, 2022)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 31 (Oct. 3, 2022)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 32 (Oct. 10, 2022)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 33 (Oct. 17, 2022)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 34 (Oct. 24, 2022)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 35 (Oct. 31, 2022)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 36 (Nov. 7, 2022)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 37 (Nov. 14, 2022)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 38 (Nov. 21, 2022)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 39 (Nov. 28, 2022)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 40 (Dec. 5, 2022)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 41 (Dec. 12, 2022)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 98 No. 42 (Dec. 19, 2022)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 43 (Dec. 26, 2022)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 44 (Jan. 2, 2023)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 45 (Jan. 16, 2023)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 47 (Jan. 23, 2023)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 48 (Jan. 30, 2023)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 49 (Feb. 6, 2023)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 01 (Feb. 13, 2023 - Feb. 20, 2023)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 11 (May. 8, 2023)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 12 (May. 15, 2023)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 13 (May. 22, 2023)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 14 (May. 29, 2023)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 23 (Jul. 31, 2023)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "Room 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1144777", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - }, - { - "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)-94(2018/19)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 95 No. 1 (Feb. 18, 2019)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 2 (Mar. 4, 2019)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 3 (Mar. 11, 2019)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 4 (Mar. 18, 2019)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 5 (Mar. 25, 2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 6 (Apr. 1, 2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 7 (Apr. 8, 2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 8 (Apr. 15, 2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 9 (Apr. 22, 2019)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 10 (Apr. 29, 2019)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 11 (May. 6, 2019)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 12 (May. 13, 2019)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 13 (May. 20, 2019)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 14 (May. 27, 2019)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 15 (Jun. 3, 2019)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 16 (Jun. 10, 2019)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 17 (Jun. 24, 2019)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 18 (Jul. 1, 2019)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 19 (Jul. 8, 2019)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 20 (Jul. 22, 2019)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 21 (Jul. 29, 2019)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 22 (Aug. 5, 2019)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 23 (Aug. 19, 2019)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 24 (Aug. 26, 2019)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 25 (Sep. 2, 2019)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 26 (Sep. 9, 2019)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 27 (Sep. 16, 2019)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 28 (Sep. 23, 2019)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 29 (Sep. 30, 2019)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 30 (Oct. 7, 2019)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 31 (Oct. 14, 2019)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 32 (Oct. 21, 2019)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 33 (Oct. 28, 2019)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 34 (Nov. 4, 2019)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 35 (Nov. 11, 2019)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 36 (Nov. 18, 2019)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 37 (Nov. 25, 2019)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 38 (Dec. 2, 2019)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 39 (Dec. 9, 2019)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 40 (Dec. 16, 2019)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 41 (Dec. 23, 2019)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 42 (Dec. 30, 2019)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 43 (Jan. 6, 2020)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 44 (Jan. 13, 2020)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 45 (Jan. 20, 2020)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 46 (Jan. 27, 2020)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 47 (Feb. 3, 2020)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 48 (Feb. 10, 2020)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 1 (Feb. 17, 2020 - Feb. 24, 2020)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 2 (Mar. 2, 2020)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 3 (Mar. 9, 2020)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 4 (Mar. 16, 2020)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 5 (Mar. 23, 2020)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 6 (Mar. 30, 2020)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 7 (Apr. 6, 2020)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 8 (Apr. 13, 2020)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 09 (Apr. 20, 2020)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 10 (Apr. 27, 2020)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 11 (May. 4, 2020)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 12 (May. 11, 2020)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 13 (May. 18, 2020)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 14 (May. 23, 2020)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 15 (Jun. 1, 2020)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 16 (Jun. 8, 2020)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 17 (Jun. 22, 2020)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 18 (Jun. 29, 2020)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 19 (Jul. 6, 2020 - Jul. 13, 2020)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 20 (Jul. 20, 2020)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 21 (Jul. 27, 2020)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 22 (Aug. 3, 2020)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 23 (Aug. 17, 2020)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 24 (Aug. 24, 2020)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 25 (Aug. 31, 2020)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 26 (Sep. 7, 2020)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 27 (Sep. 14, 2020)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 28 (Sep. 21, 2020)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 29 (Sep. 28, 2020)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 30 (Oct. 5, 2020)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 31 (Oct. 12, 2020)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 32 (Oct. 19, 2020)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 33 (Oct. 26, 2020)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 34 (Nov. 2, 2020)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 35 (Nov. 9, 2020)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 36 (Nov. 16, 2020)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 37 (Nov. 23, 2020)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 38 (Nov. 30, 2020)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 39 (Dec. 7, 2020)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 40 (Dec. 14, 2020)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 41 (Dec. 21, 2020)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 42 (Dec. 28, 2020)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 43 (Jan. 4, 2021)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 44 (Jan. 18, 2021)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 45 (Jan. 25, 2021)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 46 (Feb. 1, 2021)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 47 (Feb. 8, 2021)", - "position": "95", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", - "position": "96", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", - "position": "97", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", - "position": "98", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", - "position": "99", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", - "position": "100", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", - "position": "101", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", - "position": "102", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", - "position": "103", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", - "position": "104", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", - "position": "105", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 11 (May. 10, 2021)", - "position": "106", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 12 (May. 17, 2021)", - "position": "107", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 13 (May. 24, 2021)", - "position": "108", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 14 (May. 31, 2021)", - "position": "109", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", - "position": "110", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", - "position": "111", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", - "position": "112", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", - "position": "113", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", - "position": "114", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", - "position": "115", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", - "position": "116", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", - "position": "117", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", - "position": "118", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", - "position": "119", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "ROOM 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1059671", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - } - ], - "updatedAt": 1690905757761, - "publicationStatement": [ - "New York : F-R Pub. Corp., 1925-", - "[New York] : D. Carey", - "[New York] : Condé Nast Publications" - ], - "identifier": [ - "urn:bnum:10833141", - "urn:issn:0028-792X", - "urn:lccn: 28005329", - "urn:oclc:1760231", - "urn:undefined:(OCoLC)1760231", - "urn:undefined:(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" - ], - "genreForm": [ - "Collections.", - "Directories.", - "Periodicals." - ], - "numCheckinCardItems": [ - 213 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Literature -- Periodicals.", - "Intellectual life.", - "Literature.", - "Electronic journals.", - "New York (N.Y.) -- Intellectual life -- Directories.", - "New York (State) -- New York." - ], - "titleDisplay": [ - "The New Yorker." - ], - "uri": "b10833141", - "lccClassification": [ - "AP2 .N6763" - ], - "numItems": [ - 704 - ], - "numAvailable": [ - 789 - ], - "placeOfPublication": [ - "New York", - "[New York]" - ], - "titleAlt": [ - "New Yorker", - "The New Yorker" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28-31 cm" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 183 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-29", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 41 (Dec. 12, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 41" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-12-12", - "lte": "2022-12-12" - } - ], - "enumerationChronology_sort": [ - " 98-2022-12-12" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-12-12" - ] - }, - { - "_nested": { - "field": "items", - "offset": 133 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-79", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 42 (Dec. 20, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 42" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-12-20", - "lte": "2021-12-20" - } - ], - "enumerationChronology_sort": [ - " 97-2021-12-20" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-12-20" - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": 917, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 916 - }, - "_score": 1, - "_source": { - "uri": "i40269792", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742404" - } - ], - "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742404" - ], - "idBarcode": [ - "33433136742404" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2021" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)" - } - }, - { - "_nested": { - "field": "items", - "offset": 915 - }, - "_score": 1, - "_source": { - "uri": "i40269798", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742420" - } - ], - "enumerationChronology": [ - "v. 96 (May-July 2020)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742420" - ], - "idBarcode": [ - "33433136742420" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)" - } - }, - { - "_nested": { - "field": "items", - "offset": 914 - }, - "_score": 1, - "_source": { - "uri": "i40269804", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433136742438" - } - ], - "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "identifier": [ - "urn:barcode:33433136742438" - ], - "idBarcode": [ - "33433136742438" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 96, - "lte": 96 - } - ], - "dateRange": [ - { - "gte": "2020", - "lte": "2020" - } - ], - "enumerationChronology_sort": [ - " 96-2020" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)" - } - } - ] - } - } - } - } - ] - }, - "aggregations": { - "item_location": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", - "doc_count": 572 - }, - { - "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", - "doc_count": 213 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 66 - }, - { - "key": "loc:rcma2||Offsite", - "doc_count": 66 - } - ] - } - }, - "item_format": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 704 - } - ] - } - }, - "item_status": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 789 - }, - { - "key": "status:i||At bindery", - "doc_count": 95 - }, - { - "key": "status:oh||On Holdshelf", - "doc_count": 23 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:na||Not available", - "doc_count": 2 - } - ] - } - } - } -} \ No newline at end of file diff --git a/test/fixtures/query-71d36c1f33f0f5275ed40ae1693d9183.json b/test/fixtures/query-71d36c1f33f0f5275ed40ae1693d9183.json deleted file mode 100644 index fe751d46..00000000 --- a/test/fixtures/query-71d36c1f33f0f5275ed40ae1693d9183.json +++ /dev/null @@ -1,28034 +0,0 @@ -{ - "took": 953, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 18434492, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000103", - "_score": null, - "_source": { - "extent": [ - "11, 602 p.: port.;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "75960366" - ], - "seriesStatement": [ - "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-5137" - }, - { - "type": "nypl:Bnumber", - "value": "10000103" - }, - { - "type": "bf:Lccn", - "value": "75960366" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000051-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100051" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200102" - } - ], - "idOclc": [ - "NYPG001000051-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." - ], - "identifier": [ - "urn:bnum:10000103", - "urn:lccn:75960366", - "urn:oclc:NYPG001000051-B", - "urn:undefined:NNSZ00100051", - "urn:undefined:(WaOLN)nyp0200102" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "uri": "b10000103", - "lccClassification": [ - "PJ7842.H2937 A17 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Jazāʼir]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000103" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000042", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "identifierV2": [ - { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000671" - } - ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000671" - ], - "idBarcode": [ - "33433002000671" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-005137" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000104", - "_score": null, - "_source": { - "extent": [ - "xiv, 211 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Ceṉṉai, mayilai Vivēkānantar Kallūri Śrī Rājāji Caivacittānta aṟakkaṭṭaḷaiyiṉ cārpil nikaḻttiyavai.\"", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Śaivism" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Caivacittāntac coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 82-5150" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Somasundaram Chettiar, Kayappakkah, 1897-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73902751" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Jagannatacharya, C." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5150" - }, - { - "type": "nypl:Bnumber", - "value": "10000104" - }, - { - "type": "bf:Lccn", - "value": "73902751" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000052-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100052" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200103" - } - ], - "idOclc": [ - "NYPG001000052-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Ceṉṉai] 1972." - ], - "identifier": [ - "urn:bnum:10000104", - "urn:lccn:73902751", - "urn:oclc:NYPG001000052-B", - "urn:undefined:NNSZ00100052", - "urn:undefined:(WaOLN)nyp0200103" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Śaivism." - ], - "titleDisplay": [ - "Caivacittāntac coṟpoḻivukaḷ. Āciriyar Kayappākkam Cōmacuntaram Ceṭṭiyār. Tokuttavar C. Jakannātācāryar." - ], - "uri": "b10000104", - "lccClassification": [ - "BL1245.S5 S64" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Ceṉṉai]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000104" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000043", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5150" - ], - "identifierV2": [ - { - "value": "*OLB 82-5150", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838949" - } - ], - "physicalLocation": [ - "*OLB 82-5150" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838949" - ], - "idBarcode": [ - "33433001838949" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005150" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000105", - "_score": null, - "_source": { - "extent": [ - "60 p. illus." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Murugan (Hindu deity)", - "Murugan (Hindu deity) -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "innūlkaḷ kiṭaikkumiṭam Liṭṭil Pḷavar Kampeṉi" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nakkīrar aruḷiya Tirumurukāṟṟuppaṭai; teḷivurai, viḷakkavuraikaḷuṭaṉ." - ], - "shelfMark": [ - "*OLB 82-5148" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nakkīrar." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73902452" - ], - "seriesStatement": [ - "Murukaṉ aruḷ veḷiyīṭu, 3" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kachapesvaran, S. R., 1909-" - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5148" - }, - { - "type": "nypl:Bnumber", - "value": "10000105" - }, - { - "type": "bf:Lccn", - "value": "73902452" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000053-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100053" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200104" - } - ], - "idOclc": [ - "NYPG001000053-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Ceṉṉai]; innūlkaḷ kiṭaikkumiṭam Liṭṭil Pḷavar Kampeṉi, 1972." - ], - "identifier": [ - "urn:bnum:10000105", - "urn:lccn:73902452", - "urn:oclc:NYPG001000053-B", - "urn:undefined:NNSZ00100053", - "urn:undefined:(WaOLN)nyp0200104" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Murugan (Hindu deity) -- Poetry." - ], - "titleDisplay": [ - "Nakkīrar aruḷiya Tirumurukāṟṟuppaṭai; teḷivurai, viḷakkavuraikaḷuṭaṉ. Uraiyāciriyar Ca. Rā. Kaccapēcuvaraṉ." - ], - "uri": "b10000105", - "lccClassification": [ - "PL4758.9.N28 T54" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Ceṉṉai];" - ], - "titleAlt": [ - "Tirumurukāṟṟuppaṭai." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000105" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000044", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5148" - ], - "identifierV2": [ - { - "value": "*OLB 82-5148", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838964" - } - ], - "physicalLocation": [ - "*OLB 82-5148" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838964" - ], - "idBarcode": [ - "33433001838964" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005148" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000106", - "_score": null, - "_source": { - "extent": [ - "78 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tai Nūlakam ; viṟpaṉai urimai, Kavitā Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nallakati : kuṟunāval" - ], - "shelfMark": [ - "*OLB 82-5149" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Shanmugam, A. P., 1929-" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76903205" - ], - "seriesStatement": [ - "Tai Nūlaka veḷiyīṭu ; 4" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5149" - }, - { - "type": "nypl:Bnumber", - "value": "10000106" - }, - { - "type": "bf:Lccn", - "value": "76903205" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000054-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100054" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200105" - } - ], - "idOclc": [ - "NYPG001000054-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Nācciyār Kōvil, Tañcai Māvaṭṭam : Tai Nūlakam ; Ceṉṉai : viṟpaṉai urimai, Kavitā Patippakam, 1975." - ], - "identifier": [ - "urn:bnum:10000106", - "urn:lccn:76903205", - "urn:oclc:NYPG001000054-B", - "urn:undefined:NNSZ00100054", - "urn:undefined:(WaOLN)nyp0200105" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Nallakati : kuṟunāval / Ē. Pi. Caṇmukam." - ], - "uri": "b10000106", - "lccClassification": [ - "PL4758.9.S46 N3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Nācciyār Kōvil, Tañcai Māvaṭṭam : Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000106" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000045", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5149" - ], - "identifierV2": [ - { - "value": "*OLB 82-5149", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838956" - } - ], - "physicalLocation": [ - "*OLB 82-5149" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838956" - ], - "idBarcode": [ - "33433001838956" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005149" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000107", - "_score": null, - "_source": { - "extent": [ - "X, 271 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"1958 il Em. Liṭ. Āyvukkut...innūlai...āyntu Ceṉṉaip Palkalaikkaḻakattil 1961 il Āṅkilattil eṉ āyvukkaṭṭuraiyaik koṭuttēṉ. Ataṉait taḻuvi eḻutappeṟṟatē it Tamiḻ nūl.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Paripāṭal" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maṇivācakam Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Paripāṭal tiṟaṉ." - ], - "shelfMark": [ - "*OLB 82-5147" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cāraṅkapāṇi, Irā. (Irācakōpāl), 1925-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "72901252" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5147" - }, - { - "type": "nypl:Bnumber", - "value": "10000107" - }, - { - "type": "bf:Lccn", - "value": "72901252" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000055-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100055" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200106" - } - ], - "idOclc": [ - "NYPG001000055-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Citamparam, Maṇivācakam Nūlakam [1972]" - ], - "identifier": [ - "urn:bnum:10000107", - "urn:lccn:72901252", - "urn:oclc:NYPG001000055-B", - "urn:undefined:NNSZ00100055", - "urn:undefined:(WaOLN)nyp0200106" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Paripāṭal." - ], - "titleDisplay": [ - "Paripāṭal tiṟaṉ. [Eḻutiyavar] Irā. Cāraṅkapāṇi." - ], - "uri": "b10000107", - "lccClassification": [ - "PL4758.6.P37 S2" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Citamparam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000107" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000046", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5147" - ], - "identifierV2": [ - { - "value": "*OLB 82-5147", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838972" - } - ], - "physicalLocation": [ - "*OLB 82-5147" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838972" - ], - "idBarcode": [ - "33433001838972" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005147" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000108", - "_score": null, - "_source": { - "extent": [ - "314 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Yugavāṇī Prakāśana; [Ekādhikārī Vitaraka Sahacārī Prakāśana Prasāraṇa" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nīhārikā; Kalāpūrṇa sāmājika upanyāsa." - ], - "shelfMark": [ - "*OKTN 82-5146" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pant, Govind Ballabh, 1887-1961." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "sa 68007148" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTN 82-5146" - }, - { - "type": "nypl:Bnumber", - "value": "10000108" - }, - { - "type": "bf:Lccn", - "value": "sa 68007148" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000056-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100056" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200107" - } - ], - "idOclc": [ - "NYPG001000056-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Kānapura, Yugavāṇī Prakāśana; [Ekādhikārī Vitaraka Sahacārī Prakāśana Prasāraṇa, 1968]" - ], - "identifier": [ - "urn:bnum:10000108", - "urn:lccn:sa 68007148", - "urn:oclc:NYPG001000056-B", - "urn:undefined:NNSZ00100056", - "urn:undefined:(WaOLN)nyp0200107" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Nīhārikā; Kalāpūrṇa sāmājika upanyāsa. Lekhaka Govindavallabha Panta." - ], - "uri": "b10000108", - "lccClassification": [ - "PK2098.P319 N5 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kānapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000108" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942050", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTN 82-5146" - ], - "identifierV2": [ - { - "value": "*OKTN 82-5146", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012457234" - } - ], - "physicalLocation": [ - "*OKTN 82-5146" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012457234" - ], - "idBarcode": [ - "33433012457234" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTN 82-005146" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000109", - "_score": null, - "_source": { - "extent": [ - "xxii, 321 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [305]-321).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Americans", - "Americans -- History", - "Americans -- History -- China", - "Americans -- History -- China -- 19th century", - "Public opinion", - "Public opinion -- United States", - "Public opinion -- United States -- History", - "Public opinion -- United States -- History -- 19th century", - "United States", - "United States -- Chinese influences", - "United States -- Intellectual life", - "United States -- Intellectual life -- 19th century", - "China", - "China -- History", - "China -- History -- 19th century", - "China -- Description and travel", - "China -- In popular culture", - "United States -- Relations", - "United States -- Relations -- China", - "China -- Relations", - "China -- Relations -- United States" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Columbia University Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2008 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Haddad, John Rogers." - ], - "createdString": [ - "2008" - ], - "idLccn": [ - "2008037637" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2008 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 09-1362" - }, - { - "type": "nypl:Bnumber", - "value": "10000109" - }, - { - "type": "bf:Isbn", - "value": "9780231130943 (cloth : alk. paper)" - }, - { - "type": "bf:Isbn", - "value": "0231130945 (cloth : alk. paper)" - }, - { - "type": "bf:Lccn", - "value": "2008037637" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "nypl:Oclc", - "value": "184821618" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)184821618" - } - ], - "idOclc": [ - "184821618" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "New York : Columbia University Press, c2008." - ], - "identifier": [ - "urn:bnum:10000109", - "urn:isbn:9780231130943 (cloth : alk. paper)", - "urn:isbn:0231130945 (cloth : alk. paper)", - "urn:lccn:2008037637", - "urn:oclc:184821618", - "urn:undefined:(OCoLC)184821618" - ], - "idIsbn": [ - "9780231130943 (cloth : alk. paper)", - "0231130945 (cloth : alk. paper)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2008" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Americans -- History -- China -- 19th century.", - "Public opinion -- United States -- History -- 19th century.", - "United States -- Chinese influences.", - "United States -- Intellectual life -- 19th century.", - "China -- History -- 19th century.", - "China -- Description and travel.", - "China -- In popular culture.", - "United States -- Relations -- China.", - "China -- Relations -- United States." - ], - "titleDisplay": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." - ], - "uri": "b10000109", - "lccClassification": [ - "E183.8.C5 H175 2008" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." - ], - "idIsbn_clean": [ - "9780231130943", - "0231130945" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000109" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i23117386", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "shelfMark": [ - "JFE 09-1362" - ], - "identifierV2": [ - { - "value": "JFE 09-1362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084847221" - } - ], - "physicalLocation": [ - "JFE 09-1362" - ], - "identifier": [ - "urn:barcode:33433084847221" - ], - "idBarcode": [ - "33433084847221" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 09-001362" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783799", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLF 82-5145" - ], - "identifierV2": [ - { - "value": "*OLF 82-5145", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061318089" - } - ], - "physicalLocation": [ - "*OLF 82-5145" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061318089" - ], - "idBarcode": [ - "33433061318089" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLF 82-005145" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000110", - "_score": null, - "_source": { - "extent": [ - "xi, 207 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Economic ideas in Kural.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 184-188.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maturaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuṟaḷ kaṇṭa poruḷvāḻvu" - ], - "shelfMark": [ - "*OLB 82-5121" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Murukarattaṉam, Ti., 1934-" - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75902500" - ], - "seriesStatement": [ - "Tirukkuṟaḷ Āyvaka veḷiyīṭu ; 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5121" - }, - { - "type": "nypl:Bnumber", - "value": "10000110" - }, - { - "type": "bf:Lccn", - "value": "75902500" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000058-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100058" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200109" - } - ], - "idOclc": [ - "NYPG001000058-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Maturai : Maturaip Palkalaik Kaḻakam, 1973." - ], - "identifier": [ - "urn:bnum:10000110", - "urn:lccn:75902500", - "urn:oclc:NYPG001000058-B", - "urn:undefined:NNSZ00100058", - "urn:undefined:(WaOLN)nyp0200109" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Kuṟaḷ kaṇṭa poruḷvāḻvu / Āciriyar Ti. Murukarattaṉam." - ], - "uri": "b10000110", - "lccClassification": [ - "PL4758.9T5 M834" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maturai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000110" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000047", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5121" - ], - "identifierV2": [ - { - "value": "*OLB 82-5121", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001837818" - } - ], - "physicalLocation": [ - "*OLB 82-5121" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001837818" - ], - "idBarcode": [ - "33433001837818" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005121" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000111", - "_score": null, - "_source": { - "extent": [ - "330 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic law" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Taʻāmul fī al-Islām" - ], - "shelfMark": [ - "*OGM 82-5151" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Samāwī, ʻAbd al-Wahhāb ibn Muḥammad." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "75960238" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 82-5151" - }, - { - "type": "nypl:Bnumber", - "value": "10000111" - }, - { - "type": "bf:Lccn", - "value": "75960238" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000059-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100059" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200110" - } - ], - "idOclc": [ - "NYPG001000059-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[S.l. : s.n., 1975]" - ], - "identifier": [ - "urn:bnum:10000111", - "urn:lccn:75960238", - "urn:oclc:NYPG001000059-B", - "urn:undefined:NNSZ00100059", - "urn:undefined:(WaOLN)nyp0200110" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic law." - ], - "titleDisplay": [ - "al-Taʻāmul fī al-Islām / ʻAbd al-Wahhāb ibn Muḥammad al-Samāwī." - ], - "uri": "b10000111", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000111" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000048", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGM 82-5151" - ], - "identifierV2": [ - { - "value": "*OGM 82-5151", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001944218" - } - ], - "physicalLocation": [ - "*OGM 82-5151" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001944218" - ], - "idBarcode": [ - "33433001944218" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGM 82-005151" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000112", - "_score": null, - "_source": { - "extent": [ - "397 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 397.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tax accounting", - "Tax accounting -- Libya" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Jāmiʻah al-Lībīyah, Kullīyat al-Iqtiṣād wa-al-Tijārah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "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ī" - ], - "shelfMark": [ - "*OFO 82-5122" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʻAbd al-Raḥīm, Nūḥ Muḥammad." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "74222293" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFO 82-5122" - }, - { - "type": "nypl:Bnumber", - "value": "10000112" - }, - { - "type": "bf:Lccn", - "value": "74222293" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000060-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100060" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200111" - } - ], - "idOclc": [ - "NYPG001000060-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Ṭarābulus] al-Jāmiʻah al-Lībīyah, Kullīyat al-Iqtiṣād wa-al-Tijārah [1971]" - ], - "identifier": [ - "urn:bnum:10000112", - "urn:lccn:74222293", - "urn:oclc:NYPG001000060-B", - "urn:undefined:NNSZ00100060", - "urn:undefined:(WaOLN)nyp0200111" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tax accounting -- Libya." - ], - "titleDisplay": [ - "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ī [taʼlīf] Nūḥ Muḥammad ʻAbd al-Raḥīm." - ], - "uri": "b10000112", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Ṭarābulus]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000112" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000049", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFO 82-5122" - ], - "identifierV2": [ - { - "value": "*OFO 82-5122", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005586205" - } - ], - "physicalLocation": [ - "*OFO 82-5122" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005586205" - ], - "idBarcode": [ - "33433005586205" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFO 82-005122" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000113", - "_score": null, - "_source": { - "extent": [ - "140 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Previously published in Centamiḻ.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kalaimakaḷ Kāriyālayam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vipulānanta ārāyvu." - ], - "shelfMark": [ - "*OLB 82-5157" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Vipulānanta, 1892-1947." - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "78903058" - ], - "seriesStatement": [ - "His Ilakkiyam, tokuti, 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Selvanayagam, Arul." - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5157" - }, - { - "type": "nypl:Bnumber", - "value": "10000113" - }, - { - "type": "bf:Lccn", - "value": "78903058" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000061-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100061" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200112" - } - ], - "idOclc": [ - "NYPG001000061-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ceṉṉai, Kalaimakaḷ Kāriyālayam [1965]" - ], - "identifier": [ - "urn:bnum:10000113", - "urn:lccn:78903058", - "urn:oclc:NYPG001000061-B", - "urn:undefined:NNSZ00100061", - "urn:undefined:(WaOLN)nyp0200112" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Vipulānanta ārāyvu. Tokuppāciriyar Aruḷ Celvanāyakam. Matippurai: Ka. Ce. Naṭarācā." - ], - "uri": "b10000113", - "lccClassification": [ - "AC165.T3 V48" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000113" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000050", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5157" - ], - "identifierV2": [ - { - "value": "*OLB 82-5157", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838923" - } - ], - "physicalLocation": [ - "*OLB 82-5157" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838923" - ], - "idBarcode": [ - "33433001838923" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005157" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000114", - "_score": null, - "_source": { - "extent": [ - "134 p. : ill., map ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran-Iraq War, 1980-1988" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassisah-ʼi Maṭbūʻātī-i ʻAṭāʼī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jang-i Īran va ʻIrāq" - ], - "shelfMark": [ - "*OMZ 82-5156" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Dildam, Iskandar." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 82-5156" - }, - { - "type": "nypl:Bnumber", - "value": "10000114" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000062-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100062" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200113" - } - ], - "idOclc": [ - "NYPG001000062-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Tihrān : Muʼassisah-ʼi Maṭbūʻātī-i ʻAṭāʼī, 1359 [1980]" - ], - "identifier": [ - "urn:bnum:10000114", - "urn:oclc:NYPG001000062-B", - "urn:undefined:NNSZ00100062", - "urn:undefined:(WaOLN)nyp0200113" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran-Iraq War, 1980-1988." - ], - "titleDisplay": [ - "Jang-i Īran va ʻIrāq / Iskandar Dildam." - ], - "uri": "b10000114", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000114" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942051", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMZ 82-5156" - ], - "identifierV2": [ - { - "value": "*OMZ 82-5156", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014543452" - } - ], - "physicalLocation": [ - "*OMZ 82-5156" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014543452" - ], - "idBarcode": [ - "33433014543452" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMZ 82-005156" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000115", - "_score": null, - "_source": { - "extent": [ - "105, [2] p. : map ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Disputes of Iran and Iraq over Sovereignty and shipping rights of the two countries on Arvand Roud, by Maḥmoud M. Aghili.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [1-2] (second group).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran-Iraq War, 1980-1988" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Chāpkhānah-ʼi Sipihr" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "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)" - ], - "shelfMark": [ - "*OMZ 82-5155" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Musallamī ʻAqīlī, Maḥmūd." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 82-5155" - }, - { - "type": "nypl:Bnumber", - "value": "10000115" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000063-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100063" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200114" - } - ], - "idOclc": [ - "NYPG001000063-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Tihrān : Chāpkhānah-ʼi Sipihr, 1359 [1980]" - ], - "identifier": [ - "urn:bnum:10000115", - "urn:oclc:NYPG001000063-B", - "urn:undefined:NNSZ00100063", - "urn:undefined:(WaOLN)nyp0200114" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran-Iraq War, 1980-1988." - ], - "titleDisplay": [ - "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) / taʼlīf-i Maḥmūd Musallamī ʻAqīlī." - ], - "uri": "b10000115", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000115" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942052", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMZ 82-5155" - ], - "identifierV2": [ - { - "value": "*OMZ 82-5155", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014543445" - } - ], - "physicalLocation": [ - "*OMZ 82-5155" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014543445" - ], - "idBarcode": [ - "33433014543445" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMZ 82-005155" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000116", - "_score": null, - "_source": { - "extent": [ - "8, 733p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cuntarar.", - "Cuntarar. -- Indexes", - "Hindu hymns, Tamil", - "Hindu hymns, Tamil -- Indexes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tēvāra oḷineṟi, Cuntarar" - ], - "shelfMark": [ - "*OLB 82-5123" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ceṅkalvarāya Piḷḷai, Va. Cu., 1883-1971." - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "75901411" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu; 1139" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Cuntarar." - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5123" - }, - { - "type": "nypl:Bnumber", - "value": "10000116" - }, - { - "type": "bf:Lccn", - "value": "75901411" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000064-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100064" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200115" - } - ], - "idOclc": [ - "NYPG001000064-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Tirunelvēli : Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1963." - ], - "identifier": [ - "urn:bnum:10000116", - "urn:lccn:75901411", - "urn:oclc:NYPG001000064-B", - "urn:undefined:NNSZ00100064", - "urn:undefined:(WaOLN)nyp0200115" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cuntarar. -- Indexes.", - "Hindu hymns, Tamil -- Indexes." - ], - "titleDisplay": [ - "Tēvāra oḷineṟi, Cuntarar / Va. Cu. Ceṅkalvarāya Piḷḷai eḻutiyatu." - ], - "uri": "b10000116", - "lccClassification": [ - "BL1226.3.C862 C47" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000116" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000051", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5123" - ], - "identifierV2": [ - { - "value": "*OLB 82-5123", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001839004" - } - ], - "physicalLocation": [ - "*OLB 82-5123" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001839004" - ], - "idBarcode": [ - "33433001839004" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005123" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000117", - "_score": null, - "_source": { - "extent": [ - "515 p. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 491-506.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Abū Hurayrah, -677?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktabat al-Nahḍah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Difāʻ ʻan Abī Hurayrah" - ], - "shelfMark": [ - "*OFS 82-5125" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʻIzzī, ʻAbd al-Munʻim Ṣāliḥ al-ʻAlī." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75587091" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 82-5125" - }, - { - "type": "nypl:Bnumber", - "value": "10000117" - }, - { - "type": "bf:Lccn", - "value": "75587091" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000065-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100065" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200116" - } - ], - "idOclc": [ - "NYPG001000065-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Baghdād, Maktabat al-Nahḍah, 1973." - ], - "identifier": [ - "urn:bnum:10000117", - "urn:lccn:75587091", - "urn:oclc:NYPG001000065-B", - "urn:undefined:NNSZ00100065", - "urn:undefined:(WaOLN)nyp0200116" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Abū Hurayrah, -677?" - ], - "titleDisplay": [ - "Difāʻ ʻan Abī Hurayrah [taʼlīf] ʻAbd al-Munʻim Ṣāliḥ al-ʻAlī al-ʻIzzī." - ], - "uri": "b10000117", - "lccClassification": [ - "BP80.A227 A67" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000117" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000052", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 82-5125" - ], - "identifierV2": [ - { - "value": "*OFS 82-5125", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514537" - } - ], - "physicalLocation": [ - "*OFS 82-5125" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514537" - ], - "idBarcode": [ - "33433014514537" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 82-005125" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000118", - "_score": null, - "_source": { - "extent": [ - "310 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 305-308.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Socialism", - "Socialism -- Egypt", - "Egypt", - "Egypt -- History", - "Egypt -- History -- 1919-1952" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah al-Jadīdah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tārīkh al-ḥarakah al-ishtirākīyah fī Miṣr 1900-1925" - ], - "shelfMark": [ - "*OFP 82-5152" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Saʻīd, Rifʻat." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "75960371" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-5152" - }, - { - "type": "nypl:Bnumber", - "value": "10000118" - }, - { - "type": "bf:Lccn", - "value": "75960371" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000066-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100066" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200117" - } - ], - "idOclc": [ - "NYPG001000066-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "al-Qāhirah : Dār al-Thaqāfah al-Jadīdah, [1975?]" - ], - "identifier": [ - "urn:bnum:10000118", - "urn:lccn:75960371", - "urn:oclc:NYPG001000066-B", - "urn:undefined:NNSZ00100066", - "urn:undefined:(WaOLN)nyp0200117" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Socialism -- Egypt.", - "Egypt -- History -- 1919-1952." - ], - "titleDisplay": [ - "Tārīkh al-ḥarakah al-ishtirākīyah fī Miṣr 1900-1925 / Rifʻat al-Saʻīd." - ], - "uri": "b10000118", - "lccClassification": [ - "Hx442 .S233 1975" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000118" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000053", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 82-5152" - ], - "identifierV2": [ - { - "value": "*OFP 82-5152", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001937576" - } - ], - "physicalLocation": [ - "*OFP 82-5152" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001937576" - ], - "idBarcode": [ - "33433001937576" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 82-005152" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000119", - "_score": null, - "_source": { - "extent": [ - "120 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḵẖāṉ, Aḥmad Razā, 1856-1921" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Markazī Majlis Razā" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aʻlāḥazrat kā fiqhī maqām" - ], - "shelfMark": [ - "*OKTY 82-5154" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Aḵẖtar Shāhjahānpūrī." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72930336" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTY 82-5154" - }, - { - "type": "nypl:Bnumber", - "value": "10000119" - }, - { - "type": "bf:Lccn", - "value": "72930336" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000067-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100067" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200118" - } - ], - "idOclc": [ - "NYPG001000067-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Lāhaur, Markazī Majlis Razā [1971]" - ], - "identifier": [ - "urn:bnum:10000119", - "urn:lccn:72930336", - "urn:oclc:NYPG001000067-B", - "urn:undefined:NNSZ00100067", - "urn:undefined:(WaOLN)nyp0200118" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḵẖāṉ, Aḥmad Razā, 1856-1921." - ], - "titleDisplay": [ - "Aʻlāḥazrat kā fiqhī maqām, az Akhtar Shāhjahānpūrī." - ], - "uri": "b10000119", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lāhaur" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000119" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000054", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTY 82-5154" - ], - "identifierV2": [ - { - "value": "*OKTY 82-5154", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011242736" - } - ], - "physicalLocation": [ - "*OKTY 82-5154" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011242736" - ], - "idBarcode": [ - "33433011242736" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTY 82-005154" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000120", - "_score": null, - "_source": { - "extent": [ - "120 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vāṉati Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ navamaṇikaḷ." - ], - "shelfMark": [ - "*OLB 82-5139" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "71901945" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Tarumarācaṉ, Nākai M." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5139" - }, - { - "type": "nypl:Bnumber", - "value": "10000120" - }, - { - "type": "bf:Lccn", - "value": "71901945" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000068-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100068" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200119" - } - ], - "idOclc": [ - "NYPG001000068-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Ceṉṉai, Vāṉati Patippakam [1968]" - ], - "identifier": [ - "urn:bnum:10000120", - "urn:lccn:71901945", - "urn:oclc:NYPG001000068-B", - "urn:undefined:NNSZ00100068", - "urn:undefined:(WaOLN)nyp0200119" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ navamaṇikaḷ. Tokuttavar Nākai-Tarumaṉ." - ], - "uri": "b10000120", - "lccClassification": [ - "DS481.A64 A48" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000120" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000055", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5139" - ], - "identifierV2": [ - { - "value": "*OLB 82-5139", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838998" - } - ], - "physicalLocation": [ - "*OLB 82-5139" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838998" - ], - "idBarcode": [ - "33433001838998" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005139" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000121", - "_score": null, - "_source": { - "extent": [ - "184 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Triveṇī Prakāśana" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Natuna hāoẏā." - ], - "shelfMark": [ - "*OKV 82-5138" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kar, Bimal, 1921-" - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 64001851" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-5138" - }, - { - "type": "nypl:Bnumber", - "value": "10000121" - }, - { - "type": "bf:Lccn", - "value": "sa 64001851" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000069-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100069" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200120" - } - ], - "idOclc": [ - "NYPG001000069-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Kalikātā, Triveṇī Prakāśana [1963]" - ], - "identifier": [ - "urn:bnum:10000121", - "urn:lccn:sa 64001851", - "urn:oclc:NYPG001000069-B", - "urn:undefined:NNSZ00100069", - "urn:undefined:(WaOLN)nyp0200120" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Natuna hāoẏā. [Lekhaka] Bimala Kara." - ], - "uri": "b10000121", - "lccClassification": [ - "PK1718.K3 N3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalikātā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000121" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000056", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKV 82-5138" - ], - "identifierV2": [ - { - "value": "*OKV 82-5138", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011167834" - } - ], - "physicalLocation": [ - "*OKV 82-5138" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011167834" - ], - "idBarcode": [ - "33433011167834" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKV 82-005138" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000122", - "_score": null, - "_source": { - "extent": [ - "96 p. port." - ], - "note": [ - { - "noteType": "Note", - "label": "Series romanized: Urdū ke lokapriya śāyara.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājapāla" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sāhira Ludhyānavī aura unakī śāyarī." - ], - "shelfMark": [ - "*OKTX 82-5136" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sāḥir Ludhiyānvī, 1921-1980." - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "sa 68008215" - ], - "seriesStatement": [ - "Urdū ke lokapriya śāyara" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Panḍit, Prakāsh, 1924-" - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 82-5136" - }, - { - "type": "nypl:Bnumber", - "value": "10000122" - }, - { - "type": "bf:Lccn", - "value": "sa 68008215" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000070-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100070" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200121" - } - ], - "idOclc": [ - "NYPG001000070-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Dillī, Rājapāla [1966]" - ], - "identifier": [ - "urn:bnum:10000122", - "urn:lccn:sa 68008215", - "urn:oclc:NYPG001000070-B", - "urn:undefined:NNSZ00100070", - "urn:undefined:(WaOLN)nyp0200121" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Sāhira Ludhyānavī aura unakī śāyarī. Sampādaka Prakāśa Paṇḍita." - ], - "uri": "b10000122", - "lccClassification": [ - "PK2200.S27 A6 1966" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000122" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000057", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-5136" - ], - "identifierV2": [ - { - "value": "*OKTX 82-5136", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004673145" - } - ], - "physicalLocation": [ - "*OKTX 82-5136" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004673145" - ], - "idBarcode": [ - "33433004673145" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-005136" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000123", - "_score": null, - "_source": { - "extent": [ - "96 p. illus." - ], - "note": [ - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śrī Prakāśa Bhavana" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1962 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Elomelo." - ], - "shelfMark": [ - "*OKV 82-5135" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bose, Buddhadeva." - ], - "createdString": [ - "1962" - ], - "idLccn": [ - "sa 63003593" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1962 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-5135" - }, - { - "type": "nypl:Bnumber", - "value": "10000123" - }, - { - "type": "bf:Lccn", - "value": "sa 63003593" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000071-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100071" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200122" - } - ], - "idOclc": [ - "NYPG001000071-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Kalakātā, Śrī Prakāśa Bhavana [1962]" - ], - "identifier": [ - "urn:bnum:10000123", - "urn:lccn:sa 63003593", - "urn:oclc:NYPG001000071-B", - "urn:undefined:NNSZ00100071", - "urn:undefined:(WaOLN)nyp0200122" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1962" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Elomelo. [Lekhaka] Buddhadeba Basu." - ], - "uri": "b10000123", - "lccClassification": [ - "PZ90.B4 B6" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalakātā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000123" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000058", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKV 82-5135" - ], - "identifierV2": [ - { - "value": "*OKV 82-5135", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011167826" - } - ], - "physicalLocation": [ - "*OKV 82-5135" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011167826" - ], - "idBarcode": [ - "33433011167826" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKV 82-005135" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000124", - "_score": null, - "_source": { - "extent": [ - "190 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Es. Si. Sarakāra" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Samudra śaṅkha." - ], - "shelfMark": [ - "*OKV 82-5134" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rājaguru, Śaktipada." - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 63004625" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-5134" - }, - { - "type": "nypl:Bnumber", - "value": "10000124" - }, - { - "type": "bf:Lccn", - "value": "sa 63004625" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000072-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100072" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200123" - } - ], - "idOclc": [ - "NYPG001000072-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Kalikātā, Es. Si. Sarakāra [1963]" - ], - "identifier": [ - "urn:bnum:10000124", - "urn:lccn:sa 63004625", - "urn:oclc:NYPG001000072-B", - "urn:undefined:NNSZ00100072", - "urn:undefined:(WaOLN)nyp0200123" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Samudra śaṅkha. [Lekhaka] Śaktipada Rājaguru." - ], - "uri": "b10000124", - "lccClassification": [ - "PK1718.R24 S23" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalikātā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000124" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000059", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKV 82-5134" - ], - "identifierV2": [ - { - "value": "*OKV 82-5134", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011167818" - } - ], - "physicalLocation": [ - "*OKV 82-5134" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011167818" - ], - "idBarcode": [ - "33433011167818" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKV 82-005134" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000125", - "_score": null, - "_source": { - "extent": [ - "214 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 209-214.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Poets, Arab", - "Poets, Arab -- Iraq", - "Poets, Arab -- Iraq -- Bibliography", - "Yezidis", - "Yezidis -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tawzīʻ Maktabat al-Andalus]" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Shiʻr al-Yazīdīyīn" - ], - "shelfMark": [ - "*OFS 82-3836" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ghayāḍ, Muḥsin." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74222306" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 82-3836" - }, - { - "type": "nypl:Bnumber", - "value": "10000125" - }, - { - "type": "bf:Lccn", - "value": "74222306" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000073-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100073" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200124" - } - ], - "idOclc": [ - "NYPG001000073-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[Baghdād, Tawzīʻ Maktabat al-Andalus] 1973." - ], - "identifier": [ - "urn:bnum:10000125", - "urn:lccn:74222306", - "urn:oclc:NYPG001000073-B", - "urn:undefined:NNSZ00100073", - "urn:undefined:(WaOLN)nyp0200124" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Poets, Arab -- Iraq -- Bibliography.", - "Yezidis -- Biography." - ], - "titleDisplay": [ - "Shiʻr al-Yazīdīyīn, jamaʻahu wa-ḥaqqaqahu Muḥsin Ghayāḍ." - ], - "uri": "b10000125", - "lccClassification": [ - "PJ8034 .G5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000125" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000060", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 82-3836" - ], - "identifierV2": [ - { - "value": "*OFS 82-3836", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514172" - } - ], - "physicalLocation": [ - "*OFS 82-3836" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514172" - ], - "idBarcode": [ - "33433014514172" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 82-003836" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000126", - "_score": null, - "_source": { - "extent": [ - "72 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ramana, Maharshi", - "Ramana, Maharshi -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śrī Ramaṇāśrama" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." - ], - "shelfMark": [ - "*OLY 82-4666" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-4666" - }, - { - "type": "nypl:Bnumber", - "value": "10000126" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000074-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200125" - } - ], - "idOclc": [ - "NYPG001000074-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tirūvaṇṇāmalai : Śrī Ramaṇāśrama, 1974." - ], - "identifier": [ - "urn:bnum:10000126", - "urn:oclc:NYPG001000074-B", - "urn:undefined:NNSZ00100074", - "urn:undefined:(WaOLN)nyp0200125" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ramana, Maharshi -- Biography." - ], - "titleDisplay": [ - "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." - ], - "uri": "b10000126", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirūvaṇṇāmalai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000126" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783800", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-4666" - ], - "identifierV2": [ - { - "value": "*OLY 82-4666", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417551" - } - ], - "physicalLocation": [ - "*OLY 82-4666" - ], - "identifier": [ - "urn:barcode:33433060417551" - ], - "idBarcode": [ - "33433060417551" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-004666" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000127", - "_score": null, - "_source": { - "extent": [ - "269 p. maps." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The modern history of Lebanon.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Lebanon", - "Lebanon -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Nahār lil-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tārīkh Lubnān al-ḥadīth" - ], - "shelfMark": [ - "*OFP 82-3837" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Salibi, Kamal S. (Kamal Suleiman), 1929-2011." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "75232402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-3837" - }, - { - "type": "nypl:Bnumber", - "value": "10000127" - }, - { - "type": "bf:Lccn", - "value": "75232402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000075-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100075" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200126" - } - ], - "idOclc": [ - "NYPG001000075-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Bayrūt, Dār al-Nahār lil-Nashr [1967]" - ], - "identifier": [ - "urn:bnum:10000127", - "urn:lccn:75232402", - "urn:oclc:NYPG001000075-B", - "urn:undefined:NNSZ00100075", - "urn:undefined:(WaOLN)nyp0200126" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lebanon -- History." - ], - "titleDisplay": [ - "Tārīkh Lubnān al-ḥadīth [taʼlīf] Kamāl Sulaymān al-Ṣalībī." - ], - "uri": "b10000127", - "lccClassification": [ - "DS84 .S25" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000061", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 82-3837" - ], - "identifierV2": [ - { - "value": "*OFP 82-3837", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001542319" - } - ], - "physicalLocation": [ - "*OFP 82-3837" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001542319" - ], - "idBarcode": [ - "33433001542319" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 82-003837" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000128", - "_score": null, - "_source": { - "extent": [ - "247 p. maps, ports." - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Lawrence, T. E. 1888-1935" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Nahār" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lūrins kamā ʻaraftuh" - ], - "shelfMark": [ - "*OFS 82-3903" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʻUmarī, Ṣubḥī, 1898-" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "79282457" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 82-3903" - }, - { - "type": "nypl:Bnumber", - "value": "10000128" - }, - { - "type": "bf:Lccn", - "value": "79282457" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000076-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100076" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200127" - } - ], - "idOclc": [ - "NYPG001000076-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[Bayrūt] Dār al-Nahār [1969]" - ], - "identifier": [ - "urn:bnum:10000128", - "urn:lccn:79282457", - "urn:oclc:NYPG001000076-B", - "urn:undefined:NNSZ00100076", - "urn:undefined:(WaOLN)nyp0200127" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Lawrence, T. E. 1888-1935." - ], - "titleDisplay": [ - "Lūrins kamā ʻaraftuh [taʼlīf] Ṣubḥī al-ʻUmarī." - ], - "uri": "b10000128", - "lccClassification": [ - "D568.4.L45 U45" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000128" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000062", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 82-3903" - ], - "identifierV2": [ - { - "value": "*OFS 82-3903", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514271" - } - ], - "physicalLocation": [ - "*OFS 82-3903" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514271" - ], - "idBarcode": [ - "33433014514271" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 82-003903" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000129", - "_score": null, - "_source": { - "extent": [ - "117 p. : facsims. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 99-104.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Jumhūrīyah al-ʻIrāqīyah, Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān ʻAmr ibn Qamīʼah" - ], - "shelfMark": [ - "*OEM 82-3896" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʻAmr ibn Qamīʼah." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75587883" - ], - "seriesStatement": [ - "Silsilat Kutub al-turāth." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "ʻAṭīyah, Khalīl Ibrāhīm." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OEM 82-3896" - }, - { - "type": "nypl:Bnumber", - "value": "10000129" - }, - { - "type": "bf:Lccn", - "value": "75587883" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000077-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100077" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200128" - } - ], - "idOclc": [ - "NYPG001000077-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Baghdād : al-Jumhūrīyah al-ʻIrāqīyah, Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah, 1972." - ], - "identifier": [ - "urn:bnum:10000129", - "urn:lccn:75587883", - "urn:oclc:NYPG001000077-B", - "urn:undefined:NNSZ00100077", - "urn:undefined:(WaOLN)nyp0200128" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān ʻAmr ibn Qamīʼah / ʻuniya bi-taḥqīqihi wa-sharḥih Khalīl Ibrāhīm al-ʻAṭīyah." - ], - "uri": "b10000129", - "lccClassification": [ - "PJ7696.A5 A6 1972" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000129" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000063", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OEM 82-3896" - ], - "identifierV2": [ - { - "value": "*OEM 82-3896", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002038218" - } - ], - "physicalLocation": [ - "*OEM 82-3896" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002038218" - ], - "idBarcode": [ - "33433002038218" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OEM 82-003896" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000130", - "_score": null, - "_source": { - "extent": [ - "478 p. facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: al-Burhan, edited with an introd. by Ahmad Matloub [and] Khadijah al-Hadithi.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "The work, under title Naqd al-Nathr, has been attributed by Ṭāhā Ḥusayn and ʻAbd al-Ḥamīd al-ʻAbbādī to Qudāmah. The present editors, on the basis of a newly discovered MS., attribute it to Abū al-Ḥusayn Isḥāq ibn Ibrāhīm al-Kātib, an otherwise unknown author.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Arabic language", - "Arabic language -- Rhetoric" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jāmiʻat Baghdād" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Burhān fī wujūh al-bayān" - ], - "shelfMark": [ - "*OEQ 82-4707" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "ne 68003583" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Abū al-Ḥusayn Isḥāq ibn Ibrāhīm al-Kātib.", - "Qudāmah ibn Jaʻfar, -922?", - "Maṭlūb, Aḥmad.", - "Ḥadīthī, Khadījah." - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OEQ 82-4707" - }, - { - "type": "nypl:Bnumber", - "value": "10000130" - }, - { - "type": "bf:Lccn", - "value": "ne 68003583" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000078-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100078" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200129" - } - ], - "idOclc": [ - "NYPG001000078-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Baghdād] Jāmiʻat Baghdād 1967." - ], - "identifier": [ - "urn:bnum:10000130", - "urn:lccn:ne 68003583", - "urn:oclc:NYPG001000078-B", - "urn:undefined:NNSZ00100078", - "urn:undefined:(WaOLN)nyp0200129" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Arabic language -- Rhetoric." - ], - "titleDisplay": [ - "al-Burhān fī wujūh al-bayān [allafahu] Abū al-Ḥusayn Isḥāq ibn Ibrāhīm ibn Sulaymān ibn Wahb al-Kātib. Taḥqīq Aḥmad Maṭlūb [wa]-Khadījah al-Ḥadīthī." - ], - "uri": "b10000130", - "lccClassification": [ - "PJ6161 .B78 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Baghdād]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Naqd al-nathr." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000130" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000064", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OEQ 82-4707" - ], - "identifierV2": [ - { - "value": "*OEQ 82-4707", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014519783" - } - ], - "physicalLocation": [ - "*OEQ 82-4707" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014519783" - ], - "idBarcode": [ - "33433014519783" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OEQ 82-004707" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000131", - "_score": null, - "_source": { - "extent": [ - "631 p. ; 24 cm." - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 577-601.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic: Summary in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Muqtadir billāh, Caliph, 895-932", - "Abbasids", - "Islamic Empire", - "Islamic Empire -- History", - "Islamic Empire -- History -- 750-1258" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OFM 82-4705" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kubaysī, Ḥamdān ʻAbd al-Majīd." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "78970114" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFM 82-4705" - }, - { - "type": "nypl:Bnumber", - "value": "10000131" - }, - { - "type": "bf:Lccn", - "value": "78970114" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000079-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100079" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200130" - } - ], - "idOclc": [ - "NYPG001000079-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[5.1. : s.n.], 1974" - ], - "identifier": [ - "urn:bnum:10000131", - "urn:lccn:78970114", - "urn:oclc:NYPG001000079-B", - "urn:undefined:NNSZ00100079", - "urn:undefined:(WaOLN)nyp0200130" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Muqtadir billāh, Caliph, 895-932.", - "Abbasids.", - "Islamic Empire -- History -- 750-1258." - ], - "titleDisplay": [ - "ʻ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 / taʼlīf Ḥamdān ʻAbd al-Majīd al-Kubaysī." - ], - "uri": "b10000131", - "lccClassification": [ - "DS38.6 .K82" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[5.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - "b10000131" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000065", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFM 82-4705" - ], - "identifierV2": [ - { - "value": "*OFM 82-4705", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014463446" - } - ], - "physicalLocation": [ - "*OFM 82-4705" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014463446" - ], - "idBarcode": [ - "33433014463446" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFM 82-004705" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000132", - "_score": null, - "_source": { - "extent": [ - "302 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 293-297.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Almohades" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suqūṭ Dawlat al-Muwaḥḥidīn" - ], - "shelfMark": [ - "*OFO 82-4577" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ghannāy, Marājiʻ ʻAqīlah." - ], - "createdString": [ - "1975" - ], - "seriesStatement": [ - "Manshūrāt Jāmiʻat Binghāzī" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFO 82-4577" - }, - { - "type": "nypl:Bnumber", - "value": "10000132" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000080-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100080" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200131" - } - ], - "idOclc": [ - "NYPG001000080-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[S.l. : s.n.] 1975" - ], - "identifier": [ - "urn:bnum:10000132", - "urn:oclc:NYPG001000080-B", - "urn:undefined:NNSZ00100080", - "urn:undefined:(WaOLN)nyp0200131" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Almohades." - ], - "titleDisplay": [ - "Suqūṭ Dawlat al-Muwaḥḥidīn / taʼlīf Marājiʻ ʻAqīlah al-Ghannāy." - ], - "uri": "b10000132", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000132" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000066", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFO 82-4577" - ], - "identifierV2": [ - { - "value": "*OFO 82-4577", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005586346" - } - ], - "physicalLocation": [ - "*OFO 82-4577" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005586346" - ], - "idBarcode": [ - "33433005586346" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFO 82-004577" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000133", - "_score": null, - "_source": { - "extent": [ - "177 p. ; port." - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Socialism", - "Socialism -- Sudan", - "Sudan", - "Sudan -- Politics and government" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Maktabah al-ʻAṣrīyah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Dīmūqrāṭīyah wa-al-ishtirākīyah fī al-Sūdān" - ], - "shelfMark": [ - "*OFP 82-4578" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Amīn, ʻAlī ʻAbd al-Raḥmān." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-4578" - }, - { - "type": "nypl:Bnumber", - "value": "10000133" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000081-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100081" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200132" - } - ], - "idOclc": [ - "NYPG001000081-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Ṣaydā : al-Maktabah al-ʻAṣrīyah, 1970." - ], - "identifier": [ - "urn:bnum:10000133", - "urn:oclc:NYPG001000081-B", - "urn:undefined:NNSZ00100081", - "urn:undefined:(WaOLN)nyp0200132" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Socialism -- Sudan.", - "Sudan -- Politics and government." - ], - "titleDisplay": [ - "al-Dīmūqrāṭīyah wa-al-ishtirākīyah fī al-Sūdān / taʼlīf ʻAlī ʻAbd al-Raḥmān al-Amīn." - ], - "uri": "b10000133", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ṣaydā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000133" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000067", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 82-4578" - ], - "identifierV2": [ - { - "value": "*OFP 82-4578", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001937469" - } - ], - "physicalLocation": [ - "*OFP 82-4578" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001937469" - ], - "idBarcode": [ - "33433001937469" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 82-004578" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000134", - "_score": null, - "_source": { - "extent": [ - "192, 12 p. illus., map, plans." - ], - "note": [ - { - "noteType": "Note", - "label": "Added title: Political [sic] and aspects [sic] of the cultural life in Samarra in the third century of Hejra, by Jahadia al-Karghouli.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Risālat al-Mājistīr-- Jāmiʻat al-Qāhirah.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 141-167.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Summary in English.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sāmarrāʼ (Iraq)", - "Sāmarrāʼ (Iraq) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maṭbaʻat Dār al-Baṣrī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "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ī" - ], - "shelfMark": [ - "*OFQ 81-2737" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Qaraghūllī, Jihādīyah." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "74248948" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFQ 81-2737" - }, - { - "type": "nypl:Bnumber", - "value": "10000134" - }, - { - "type": "bf:Lccn", - "value": "74248948" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000082-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100082" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200133" - } - ], - "idOclc": [ - "NYPG001000082-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Baghdād, Maṭbaʻat Dār al-Baṣrī [1969]" - ], - "identifier": [ - "urn:bnum:10000134", - "urn:lccn:74248948", - "urn:oclc:NYPG001000082-B", - "urn:undefined:NNSZ00100082", - "urn:undefined:(WaOLN)nyp0200133" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sāmarrāʼ (Iraq) -- History." - ], - "titleDisplay": [ - "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ī [taʼlīf] Jihādīyah al-Qaraghūllī." - ], - "uri": "b10000134", - "lccClassification": [ - "DS51.S2 Q3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000134" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000068", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFQ 81-2737" - ], - "identifierV2": [ - { - "value": "*OFQ 81-2737", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014504074" - } - ], - "physicalLocation": [ - "*OFQ 81-2737" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014504074" - ], - "idBarcode": [ - "33433014504074" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFQ 81-002737" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000135", - "_score": null, - "_source": { - "extent": [ - "216 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Short stories", - "Short stories -- Iraq" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[Maktabat Baghdād]" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Qiṣaṣ ʻIrāqīyah muʻāṣirah" - ], - "shelfMark": [ - "*OFC 81-3162" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "75972325" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Thāmir, Fāḍil.", - "Naṣīr, Yāsīn." - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFC 81-3162" - }, - { - "type": "nypl:Bnumber", - "value": "10000135" - }, - { - "type": "bf:Lccn", - "value": "75972325" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000083-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100083" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200134" - } - ], - "idOclc": [ - "NYPG001000083-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Baghdād : [Maktabat Baghdād], 1971." - ], - "identifier": [ - "urn:bnum:10000135", - "urn:lccn:75972325", - "urn:oclc:NYPG001000083-B", - "urn:undefined:NNSZ00100083", - "urn:undefined:(WaOLN)nyp0200134" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Short stories -- Iraq." - ], - "titleDisplay": [ - "Qiṣaṣ ʻIrāqīyah muʻāṣirah / Muḥammad Khuḍayr ... [et al.] ; ditāsat Fāḍil Thāmir, Yāsīn al-Naṣīr." - ], - "uri": "b10000135", - "lccClassification": [ - "75972325" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000135" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000069", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFC 81-3162" - ], - "identifierV2": [ - { - "value": "*OFC 81-3162", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001965965" - } - ], - "physicalLocation": [ - "*OFC 81-3162" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001965965" - ], - "idBarcode": [ - "33433001965965" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFC 81-003162" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000136", - "_score": null, - "_source": { - "extent": [ - "6, 488 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 6 (1st group)", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Love" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dar al-Ṣafā, yuṭlab min Maktabat al-Jāmiʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rawḍat al-muḥibbīn wa-nuzhat al-mushtāqīn" - ], - "shelfMark": [ - "*OFC 81-3166" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ibn Qayyim al-Jawzīyah, Muḥammad ibn Abī Bakr, 1292-1350." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74960035" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Yūsuf, Ṣābir." - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFC 81-3166" - }, - { - "type": "nypl:Bnumber", - "value": "10000136" - }, - { - "type": "bf:Lccn", - "value": "74960035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000084-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100084" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200135" - } - ], - "idOclc": [ - "NYPG001000084-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "al-Qāhirah, Dar al-Ṣafā, yuṭlab min Maktabat al-Jāmiʻah [1973]" - ], - "identifier": [ - "urn:bnum:10000136", - "urn:lccn:74960035", - "urn:oclc:NYPG001000084-B", - "urn:undefined:NNSZ00100084", - "urn:undefined:(WaOLN)nyp0200135" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Love." - ], - "titleDisplay": [ - "Rawḍat al-muḥibbīn wa-nuzhat al-mushtāqīn [taʼlīf] Shams al-Dīn Muḥammad ibn Abī Bakr ibn Qayyim al-Jawzīyah. Fassara gharībahu wa-rājaʻahu Ṣābir Yūsuf." - ], - "uri": "b10000136", - "lccClassification": [ - "HQ801 .I25 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000136" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000070", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFC 81-3166" - ], - "identifierV2": [ - { - "value": "*OFC 81-3166", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001965734" - } - ], - "physicalLocation": [ - "*OFC 81-3166" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001965734" - ], - "idBarcode": [ - "33433001965734" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFC 81-003166" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000137", - "_score": null, - "_source": { - "extent": [ - "947 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān al-Qarawī" - ], - "shelfMark": [ - "*OFA 81-3160" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Shāʻir al-Qarawī." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74960574" - ], - "seriesStatement": [ - "Dīwān al-Shiʻr al-ʻArabī al-ḥadīth ; 27" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 81-3160" - }, - { - "type": "nypl:Bnumber", - "value": "10000137" - }, - { - "type": "bf:Lccn", - "value": "74960574" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000085-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100085" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200136" - } - ], - "idOclc": [ - "NYPG001000085-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[Baghdād] : Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah, [1973]" - ], - "identifier": [ - "urn:bnum:10000137", - "urn:lccn:74960574", - "urn:oclc:NYPG001000085-B", - "urn:undefined:NNSZ00100085", - "urn:undefined:(WaOLN)nyp0200136" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān al-Qarawī / Rashīd Salīm Khūrī." - ], - "uri": "b10000137", - "lccClassification": [ - "PJ7842.H858 A6 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Baghdād]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000137" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000071", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 81-3160" - ], - "identifierV2": [ - { - "value": "*OFA 81-3160", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001999683" - } - ], - "physicalLocation": [ - "*OFA 81-3160" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001999683" - ], - "idBarcode": [ - "33433001999683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 81-003160" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000138", - "_score": null, - "_source": { - "extent": [ - "112 p. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "In the Egyptian dialect.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jamʻīyat Udabāʼ al-Shaʻb" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aḥibb baladī" - ], - "shelfMark": [ - "*OFA 81-3163" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Faraj, Faraj Khamīs." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "73961049" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 81-3163" - }, - { - "type": "nypl:Bnumber", - "value": "10000138" - }, - { - "type": "bf:Lccn", - "value": "73961049" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000086-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100086" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200137" - } - ], - "idOclc": [ - "NYPG001000086-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "al-Iskandarīyah, Jamʻīyat Udabāʼ al-Shaʻb [1968]" - ], - "identifier": [ - "urn:bnum:10000138", - "urn:lccn:73961049", - "urn:oclc:NYPG001000086-B", - "urn:undefined:NNSZ00100086", - "urn:undefined:(WaOLN)nyp0200137" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aḥibb baladī, azjāl Faraj Khamīs Faraj <>" - ], - "uri": "b10000138", - "lccClassification": [ - "PJ7824.A68 A7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Iskandarīyah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000138" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000072", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 81-3163" - ], - "identifierV2": [ - { - "value": "*OFA 81-3163", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001999675" - } - ], - "physicalLocation": [ - "*OFA 81-3163" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001999675" - ], - "idBarcode": [ - "33433001999675" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 81-003163" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000139", - "_score": null, - "_source": { - "extent": [ - "292 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [289]-290.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nadīm, ʻAbd Allāh, 1845-1896" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktabat al-Kullīyat al-Azharīyah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "ʻAbd Allāh al-Nadīm Khaṭīb al-Thawrah al-ʻUrābīyah" - ], - "shelfMark": [ - "*OFS 81-3165" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tawfīq, Najīb." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74963003" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 81-3165" - }, - { - "type": "nypl:Bnumber", - "value": "10000139" - }, - { - "type": "bf:Lccn", - "value": "74963003" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000087-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100087" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200138" - } - ], - "idOclc": [ - "NYPG001000087-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[al-Qāhirah] Maktabat al-Kullīyat al-Azharīyah [1970]" - ], - "identifier": [ - "urn:bnum:10000139", - "urn:lccn:74963003", - "urn:oclc:NYPG001000087-B", - "urn:undefined:NNSZ00100087", - "urn:undefined:(WaOLN)nyp0200138" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nadīm, ʻAbd Allāh, 1845-1896." - ], - "titleDisplay": [ - "ʻAbd Allāh al-Nadīm Khaṭīb al-Thawrah al-ʻUrābīyah, bi-qalam Najīb Tawfīq. Taqdīm ʻAbd al-Raḥmān al-Rāfiʻī." - ], - "uri": "b10000139", - "lccClassification": [ - "DT107.2.N25 T38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000139" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000073", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 81-3165" - ], - "identifierV2": [ - { - "value": "*OFS 81-3165", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005562628" - } - ], - "physicalLocation": [ - "*OFS 81-3165" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005562628" - ], - "idBarcode": [ - "33433005562628" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 81-003165" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000140", - "_score": null, - "_source": { - "extent": [ - "184 p. : port. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Muslim pilgrims and pilgrimages", - "Muslim pilgrims and pilgrimages -- Mecca" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1979" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ḥajj" - ], - "shelfMark": [ - "*OGH 82-280" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ṭāliqānī, Maḥmūd." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGH 82-280" - }, - { - "type": "nypl:Bnumber", - "value": "10000140" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000088-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100088" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200139" - } - ], - "idOclc": [ - "NYPG001000088-B" - ], - "dateEndYear": [ - 1979 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[S.l. : s.n., 197-?]" - ], - "identifier": [ - "urn:bnum:10000140", - "urn:oclc:NYPG001000088-B", - "urn:undefined:NNSZ00100088", - "urn:undefined:(WaOLN)nyp0200139" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Muslim pilgrims and pilgrimages -- Mecca." - ], - "titleDisplay": [ - "Ḥajj / Āyat Allāh Sayyid Maḥmūd Ṭāliqānī." - ], - "uri": "b10000140", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000140" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGH 82-280" - ], - "identifierV2": [ - { - "value": "*OGH 82-280", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058007638" - } - ], - "physicalLocation": [ - "*OGH 82-280" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058007638" - ], - "idBarcode": [ - "33433058007638" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGH 82-000280" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000141", - "_score": null, - "_source": { - "extent": [ - "703 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Jis prugrim yūnivirsṭī n̲e muʼallif kū 1966 meṉ Ph.D. kī ra̤tā kī tahī.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Urdu poetry", - "Urdu poetry -- History and criticism", - "Women", - "Women -- Language" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nasīm Bukḍipu" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rekḥtī kā tanqīdī mṳtālaʻah" - ], - "shelfMark": [ - "*OKTW 82-277" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Mushīr, Khalīl Aḥmad." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903710" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTW 82-277" - }, - { - "type": "nypl:Bnumber", - "value": "10000141" - }, - { - "type": "bf:Lccn", - "value": "74903710" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000089-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100089" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200140" - } - ], - "idOclc": [ - "NYPG001000089-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Likhnu : Nasīm Bukḍipu, 1974." - ], - "identifier": [ - "urn:bnum:10000141", - "urn:lccn:74903710", - "urn:oclc:NYPG001000089-B", - "urn:undefined:NNSZ00100089", - "urn:undefined:(WaOLN)nyp0200140" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Urdu poetry -- History and criticism.", - "Women -- Language." - ], - "titleDisplay": [ - "Rekḥtī kā tanqīdī mṳtālaʻah / az Khalīl Aḥmad Ṣiddīqī Mushīr." - ], - "uri": "b10000141", - "lccClassification": [ - "PK2167 .M794" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Likhnu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000141" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000074", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTW 82-277 " - ], - "identifierV2": [ - { - "value": "*OKTW 82-277 ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004668285" - } - ], - "physicalLocation": [ - "*OKTW 82-277 " - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004668285" - ], - "idBarcode": [ - "33433004668285" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2020-10-27" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTW 82-277 " - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000142", - "_score": null, - "_source": { - "extent": [ - "65, 41 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Islamic government and the present revolution in Iran/by Yahja Noori.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian or English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam and state", - "Iran", - "Iran -- Politics and government", - "Iran -- Politics and government -- 1979-1997" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Majmaʻ-i Maʻārif-i Islāmī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ḥukūmat-i Islāmī va taḥlīlī az nihẓat-i ḥāẓir" - ], - "shelfMark": [ - "*OGC 82-274" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nūrī, Yaḥyá." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 82-274" - }, - { - "type": "nypl:Bnumber", - "value": "10000142" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000090-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100090" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200141" - } - ], - "idOclc": [ - "NYPG001000090-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tihrān : Majmaʻ-i Maʻārif-i Islāmī, 1979." - ], - "identifier": [ - "urn:bnum:10000142", - "urn:oclc:NYPG001000090-B", - "urn:undefined:NNSZ00100090", - "urn:undefined:(WaOLN)nyp0200141" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam and state.", - "Iran -- Politics and government -- 1979-1997." - ], - "titleDisplay": [ - "Ḥukūmat-i Islāmī va taḥlīlī az nihẓat-i ḥāẓir / muntakhabī az chand muṣāḥibah bā Āyat Allāh Nūrī." - ], - "uri": "b10000142", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic government and the present revolution in Iran." - ], - "dimensions": [ - "22cm." - ] - }, - "sort": [ - "b10000142" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540041", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 82-274" - ], - "identifierV2": [ - { - "value": "*OGC 82-274", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022688901" - } - ], - "physicalLocation": [ - "*OGC 82-274" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022688901" - ], - "idBarcode": [ - "33433022688901" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 82-000274" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000143", - "_score": null, - "_source": { - "extent": [ - "244 p. : maps. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 243-244.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Oudh (India)", - "Oudh (India) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "taqsīmkār, Vājid ʻAlī Shāh Akāḍmī" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tārīkh-i Avadh kā mukhtaṣar jāʼizah" - ], - "shelfMark": [ - "*OLL 82-275" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḵẖāṉ, Amjad ʻAlī." - ], - "createdString": [ - "1978" - ], - "idLccn": [ - "78908573" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLL 82-275" - }, - { - "type": "nypl:Bnumber", - "value": "10000143" - }, - { - "type": "bf:Lccn", - "value": "78908573" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000091-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100091" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200142" - } - ], - "idOclc": [ - "NYPG001000091-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Lakhaʼū : taqsīmkār, Vājid ʻAlī Shāh Akāḍmī, 1978." - ], - "identifier": [ - "urn:bnum:10000143", - "urn:lccn:78908573", - "urn:oclc:NYPG001000091-B", - "urn:undefined:NNSZ00100091", - "urn:undefined:(WaOLN)nyp0200142" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Oudh (India) -- History." - ], - "titleDisplay": [ - "Tārīkh-i Avadh kā mukhtaṣar jāʼizah / Amjad ʻAlī Khāṉ." - ], - "uri": "b10000143", - "lccClassification": [ - "DS485.094 K42" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lakhaʼū" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000143" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783801", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLL 82-275" - ], - "identifierV2": [ - { - "value": "*OLL 82-275", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061320515" - } - ], - "physicalLocation": [ - "*OLL 82-275" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061320515" - ], - "idBarcode": [ - "33433061320515" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLL 82-000275" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000144", - "_score": null, - "_source": { - "extent": [ - "116 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Rafʻat" - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1979" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Īshīq" - ], - "shelfMark": [ - "*OOX 82-272" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nābadal, ʻAlī Rizā." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OOX 82-272" - }, - { - "type": "nypl:Bnumber", - "value": "10000144" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000092-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100092" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200143" - } - ], - "idOclc": [ - "NYPG001000092-B" - ], - "dateEndYear": [ - 1979 - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Tihrān?] : Nashr-i Rafʻat, 1357 [1978 or 1979]" - ], - "identifier": [ - "urn:bnum:10000144", - "urn:oclc:NYPG001000092-B", - "urn:undefined:NNSZ00100092", - "urn:undefined:(WaOLN)nyp0200143" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Īshīq / ʻAlī Rizā Nābadal Ukhtāy." - ], - "uri": "b10000144", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tihrān?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000144" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000075", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OOX 82-272" - ], - "identifierV2": [ - { - "value": "*OOX 82-272", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001718117" - } - ], - "physicalLocation": [ - "*OOX 82-272" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001718117" - ], - "idBarcode": [ - "33433001718117" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OOX 82-000272" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000145", - "_score": null, - "_source": { - "extent": [ - "275 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktabat Miṣr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khān al-Khalīlī" - ], - "shelfMark": [ - "*OFC 82-271" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Maḥfūẓ, Najīb, 1911-2006." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "73962212" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFC 82-271" - }, - { - "type": "nypl:Bnumber", - "value": "10000145" - }, - { - "type": "bf:Lccn", - "value": "73962212" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000093-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100093" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200144" - } - ], - "idOclc": [ - "NYPG001000093-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[al-Qāhirah] Maktabat Miṣr [1969]" - ], - "identifier": [ - "urn:bnum:10000145", - "urn:lccn:73962212", - "urn:oclc:NYPG001000093-B", - "urn:undefined:NNSZ00100093", - "urn:undefined:(WaOLN)nyp0200144" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Khān al-Khalīlī, taʼlīf Najīb Maḥfūẓ" - ], - "uri": "b10000145", - "lccClassification": [ - "PJ7846.A46 K48 1969" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "A novel" - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000145" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000076", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFC 82-271" - ], - "identifierV2": [ - { - "value": "*OFC 82-271", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001965767" - } - ], - "physicalLocation": [ - "*OFC 82-271" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001965767" - ], - "idBarcode": [ - "33433001965767" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFC 82-000271" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000146", - "_score": null, - "_source": { - "extent": [ - "767 p. port., fold. map." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 33-34.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tipu Sultan, Fath ʻAli, Nawab of Mysore, 1753-1799" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himaliyah Pablishīng Haus" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ṣaḥīfah-yi Ṭīpū Sul̤tān" - ], - "shelfMark": [ - "*OLO 82-265" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Maḥmūd Banglaurī." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "79928817" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLO 82-265" - }, - { - "type": "nypl:Bnumber", - "value": "10000146" - }, - { - "type": "bf:Lccn", - "value": "79928817" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000094-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100094" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200145" - } - ], - "idOclc": [ - "NYPG001000094-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Dihlī, Himaliyah Pablishīng Haus [1971]" - ], - "identifier": [ - "urn:bnum:10000146", - "urn:lccn:79928817", - "urn:oclc:NYPG001000094-B", - "urn:undefined:NNSZ00100094", - "urn:undefined:(WaOLN)nyp0200145" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tipu Sultan, Fath ʻAli, Nawab of Mysore, 1753-1799." - ], - "titleDisplay": [ - "Ṣaḥīfah-yi Ṭīpū Sul̤tān, az Maḥmūd Khāṉ Maḥmūd Banglaurī." - ], - "uri": "b10000146", - "lccClassification": [ - "DS470.T6 M34" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dihlī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000146" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783802", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLO 82-265" - ], - "identifierV2": [ - { - "value": "*OLO 82-265", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061328062" - } - ], - "physicalLocation": [ - "*OLO 82-265" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061328062" - ], - "idBarcode": [ - "33433061328062" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLO 82-000265" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000147", - "_score": null, - "_source": { - "extent": [ - "70 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Vacana Māḷavikāgnimitraṃ.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jayantipablikēṣans" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Māḷavikāgnimitraṃ." - ], - "shelfMark": [ - "*OLC 82-270" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gōpālakrṣṇa, Reṇṭāla, 1922-" - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "77901180" - ], - "seriesStatement": [ - "Vacana prabandha sāhityaṃ." - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kālidāsa." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 82-270" - }, - { - "type": "nypl:Bnumber", - "value": "10000147" - }, - { - "type": "bf:Lccn", - "value": "77901180" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000095-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100095" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200146" - } - ], - "idOclc": [ - "NYPG001000095-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Vijayavāḍa, Jayantipablikēṣans [1968]" - ], - "identifier": [ - "urn:bnum:10000147", - "urn:lccn:77901180", - "urn:oclc:NYPG001000095-B", - "urn:undefined:NNSZ00100095", - "urn:undefined:(WaOLN)nyp0200146" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Māḷavikāgnimitraṃ. Vacana racana: Reṇṭāla Gōpālakrṣna." - ], - "uri": "b10000147", - "lccClassification": [ - "PL4780.9.G563 M27" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vijayavāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000147" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000077", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLC 82-270" - ], - "identifierV2": [ - { - "value": "*OLC 82-270", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004552323" - } - ], - "physicalLocation": [ - "*OLC 82-270" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004552323" - ], - "idBarcode": [ - "33433004552323" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLC 82-000270" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000148", - "_score": null, - "_source": { - "extent": [ - "68 p. port." - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Proverbs, Kannada" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sāhitya Sadana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa ogaṭugaḷu." - ], - "shelfMark": [ - "*OLA 82-269" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Paramashivaiah, Ji. Sam., 1933-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "sa 68011006" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-269" - }, - { - "type": "nypl:Bnumber", - "value": "10000148" - }, - { - "type": "bf:Lccn", - "value": "sa 68011006" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000096-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100096" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200147" - } - ], - "idOclc": [ - "NYPG001000096-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Maisūru, Sāhitya Sadana [1967]" - ], - "identifier": [ - "urn:bnum:10000148", - "urn:lccn:sa 68011006", - "urn:oclc:NYPG001000096-B", - "urn:undefined:NNSZ00100096", - "urn:undefined:(WaOLN)nyp0200147" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Proverbs, Kannada." - ], - "titleDisplay": [ - "Kannaḍa ogaṭugaḷu. Sampādaka Jī. Śaṃ. Paramaśivayya. Hinnuḍi Si. Pi. Ke." - ], - "uri": "b10000148", - "lccClassification": [ - "PN6519.K25 P3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000148" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000078", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 82-269" - ], - "identifierV2": [ - { - "value": "*OLA 82-269", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013118892" - } - ], - "physicalLocation": [ - "*OLA 82-269" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013118892" - ], - "idBarcode": [ - "33433013118892" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 82-000269" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000149", - "_score": null, - "_source": { - "extent": [ - "2 v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Majlis-i Taraqqī-i Adab" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 2 - ], - "dateEndString": [ - "1976" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kullīyāt-i Saudā" - ], - "shelfMark": [ - "*OKTX 82-5167" - ], - "numItemVolumesParsed": [ - 2 - ], - "creatorLiteral": [ - "Saudā, Mirzā Muḥammad Rafiʻ, 1713-1781." - ], - "createdString": [ - "1973" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ṣiddīqī, Muḥammad Shamsuddīn." - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 82-5167" - }, - { - "type": "nypl:Bnumber", - "value": "10000149" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000097-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100097" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200148" - } - ], - "idOclc": [ - "NYPG001000097-B" - ], - "dateEndYear": [ - 1976 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Lāhaur : Majlis-i Taraqqī-i Adab, 1973-1976." - ], - "identifier": [ - "urn:bnum:10000149", - "urn:oclc:NYPG001000097-B", - "urn:undefined:NNSZ00100097", - "urn:undefined:(WaOLN)nyp0200148" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Kullīyāt-i Saudā / murattabah-yi Muḥammad Shamsuddīn Ṣiddīqī." - ], - "uri": "b10000149", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Lāhaur" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Jild-i 1. Ghazaliyyāt.--Jild-i 2. Qaṣāʼid." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000149" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-5167 v. 2" - ], - "identifierV2": [ - { - "value": "*OKTX 82-5167 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004673160" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OKTX 82-5167" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004673160" - ], - "idBarcode": [ - "33433004673160" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-5167 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-5167 v. 1" - ], - "identifierV2": [ - { - "value": "*OKTX 82-5167 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004673152" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OKTX 82-5167" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004673152" - ], - "idBarcode": [ - "33433004673152" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-5167 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000150", - "_score": null, - "_source": { - "extent": [ - "270 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Maktab al-Tijārī lil-Ṭibāʻah wa-al-Tawzīʻ wa-al-Nashr, 196-]" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1969" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Min al-Yaman" - ], - "shelfMark": [ - "*OFA 82-4408" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Shāmī, Aḥmad Muḥammad, 1924-" - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "ne 66000571" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-4408" - }, - { - "type": "nypl:Bnumber", - "value": "10000150" - }, - { - "type": "bf:Lccn", - "value": "ne 66000571" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000098-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100098" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200149" - } - ], - "idOclc": [ - "NYPG001000098-B" - ], - "dateEndYear": [ - 1969 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[Bayrūt, al-Maktab al-Tijārī lil-Ṭibāʻah wa-al-Tawzīʻ wa-al-Nashr, 196-]" - ], - "identifier": [ - "urn:bnum:10000150", - "urn:lccn:ne 66000571", - "urn:oclc:NYPG001000098-B", - "urn:undefined:NNSZ00100098", - "urn:undefined:(WaOLN)nyp0200149" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Min al-Yaman, shiʻr Aḥmad Muḥammad al-Shāmī." - ], - "uri": "b10000150", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000150" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000081", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-4408" - ], - "identifierV2": [ - { - "value": "*OFA 82-4408", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000598" - } - ], - "physicalLocation": [ - "*OFA 82-4408" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000598" - ], - "idBarcode": [ - "33433002000598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-004408" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000151", - "_score": null, - "_source": { - "extent": [ - "9, 158 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Muslim saints" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Maktab al-Islāmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Furqān bayna awliyāʼ al-Raḥmān wa-awliyāʼ al-Shayṭān" - ], - "shelfMark": [ - "*OGL 82-4418" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ibn Taymīyah, Aḥmad ibn ʻAbd al-Ḥalīm, 1263-1328." - ], - "createdString": [ - "1971" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGL 82-4418" - }, - { - "type": "nypl:Bnumber", - "value": "10000151" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000099-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100099" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200150" - } - ], - "idOclc": [ - "NYPG001000099-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Bayrūt : al-Maktab al-Islāmī, [1971]" - ], - "identifier": [ - "urn:bnum:10000151", - "urn:oclc:NYPG001000099-B", - "urn:undefined:NNSZ00100099", - "urn:undefined:(WaOLN)nyp0200150" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Muslim saints." - ], - "titleDisplay": [ - "al-Furqān bayna awliyāʼ al-Raḥmān wa-awliyāʼ al-Shayṭān / taʼlīf Shaykh al-Islām Ibn Taymīyah." - ], - "uri": "b10000151", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000151" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858034", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGL 82-4418" - ], - "identifierV2": [ - { - "value": "*OGL 82-4418", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058069497" - } - ], - "physicalLocation": [ - "*OGL 82-4418" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058069497" - ], - "idBarcode": [ - "33433058069497" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGL 82-004418" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000152", - "_score": null, - "_source": { - "extent": [ - "[iv] 92, xi [1] p. port." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Kailāsaṃra Iṅglīṣ nāṭakagaḷu. [Lēkhaka] Ji. Es. Amūra:\" p. [73]-92.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bi. Es. Rāmarāv" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ēkalavya." - ], - "shelfMark": [ - "*OLA 83-693" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kailāsaṃ, Ṭī. Pi., 1885-1948." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "73925571" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Rāmarāv, B. S." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-693" - }, - { - "type": "nypl:Bnumber", - "value": "10000152" - }, - { - "type": "bf:Lccn", - "value": "73925571" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000100-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100100" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200151" - } - ], - "idOclc": [ - "NYPG001000100-B" - ], - "uniformTitle": [ - "Purpose. Kannada" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Beṅgaḷūru, Bi. Es. Rāmarāv [1969]" - ], - "identifier": [ - "urn:bnum:10000152", - "urn:lccn:73925571", - "urn:oclc:NYPG001000100-B", - "urn:undefined:NNSZ00100100", - "urn:undefined:(WaOLN)nyp0200151" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Ēkalavya. Mūla Kailāsaṃ avara Iṅgliṣina ʻPurpose.ʼ Anuvāda Bi. Es. Rāmarāv. Pariṣkaraṇa: ʻŚriraṅgaʼ[sic]" - ], - "uri": "b10000152", - "lccClassification": [ - "PR9480.9.K32 P814" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "titleAlt": [ - "Purpose." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000152" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000082", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 83-693" - ], - "identifierV2": [ - { - "value": "*OLA 83-693", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013125202" - } - ], - "physicalLocation": [ - "*OLA 83-693" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013125202" - ], - "idBarcode": [ - "33433013125202" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 83-000693" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000153", - "_score": null, - "_source": { - "extent": [ - "69, 472 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 471-472.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sufism", - "Sufism -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yanbūʻ al-asrār fī naṣāʼiḥ al-abrār : taʼlīf shudah bi-sāl-i 832 Hijrī Qamarī" - ], - "shelfMark": [ - "*OMQ 83-4676" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khvārazmī, Kamāl al-Dīn Ḥusayn." - ], - "createdString": [ - "1981" - ], - "seriesStatement": [ - "Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī ; 7" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Dirakhshān, Mahdī." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 83-4676" - }, - { - "type": "nypl:Bnumber", - "value": "10000153" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000101-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100101" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200152" - } - ], - "idOclc": [ - "NYPG001000101-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tihrān : Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī, 1360 [1981]" - ], - "identifier": [ - "urn:bnum:10000153", - "urn:oclc:NYPG001000101-B", - "urn:undefined:NNSZ00100101", - "urn:undefined:(WaOLN)nyp0200152" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sufism -- Early works to 1800." - ], - "titleDisplay": [ - "Yanbūʻ al-asrār fī naṣāʼiḥ al-abrār : taʼlīf shudah bi-sāl-i 832 Hijrī Qamarī / taʼlīf-i Kamāl al-Dīn Ḥusayn Khvārazmī ; bi-ihtimām-i Mahdī Dirakhshān." - ], - "uri": "b10000153", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000153" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000083", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMQ 83-4676" - ], - "identifierV2": [ - { - "value": "*OMQ 83-4676", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013145382" - } - ], - "physicalLocation": [ - "*OMQ 83-4676" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013145382" - ], - "idBarcode": [ - "33433013145382" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMQ 83-004676" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000154", - "_score": null, - "_source": { - "extent": [ - "26, 117 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rshabhadeva" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śrī Vivēkōdaya Granthamāle" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āditīrthankara Rṣabhadēva." - ], - "shelfMark": [ - "*OLA 83-4815" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Anna Rao Appanna, Mirji, 1918-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72903657" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-4815" - }, - { - "type": "nypl:Bnumber", - "value": "10000154" - }, - { - "type": "bf:Lccn", - "value": "72903657" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000102-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100102" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200153" - } - ], - "idOclc": [ - "NYPG001000102-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Guḍibaṇḍe, Kōlārajille, Śrī Vivēkōdaya Granthamāle [1971]" - ], - "identifier": [ - "urn:bnum:10000154", - "urn:lccn:72903657", - "urn:oclc:NYPG001000102-B", - "urn:undefined:NNSZ00100102", - "urn:undefined:(WaOLN)nyp0200153" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rshabhadeva." - ], - "titleDisplay": [ - "Āditīrthankara Rṣabhadēva. [Lēkhaka] Mirji Aṇṇārāya." - ], - "uri": "b10000154", - "lccClassification": [ - "BL1373.R7 A66" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Guḍibaṇḍe, Kōlārajille" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000154" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000084", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 83-4815" - ], - "identifierV2": [ - { - "value": "*OLA 83-4815", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012996868" - } - ], - "physicalLocation": [ - "*OLA 83-4815" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012996868" - ], - "idBarcode": [ - "33433012996868" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 83-004815" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000155", - "_score": null, - "_source": { - "extent": [ - "270 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jāḥiẓ, -868 or 869", - "Jāḥiẓ, -868 or 869 -- Knowledge", - "Jāḥiẓ, -868 or 869 -- Knowledge -- Folklore", - "Jāḥiẓ, -868 or 869 -- Mythology" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Wizārah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Mawrūth al-shaʻbī fī āthār al-Jāḥiẓ i : muʻjam mufahras" - ], - "shelfMark": [ - "*OEM 83-4899" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Markaz al-Fūlklurī al-ʻIrāqī." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "78971085" - ], - "seriesStatement": [ - "Silsilat al-maʻājim wa-al-fahāris ; 10" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OEM 83-4899" - }, - { - "type": "nypl:Bnumber", - "value": "10000155" - }, - { - "type": "bf:Lccn", - "value": "78971085" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000103-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100103" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200154" - } - ], - "idOclc": [ - "NYPG001000103-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[Baghdād] : al-Wizārah, [1976]" - ], - "identifier": [ - "urn:bnum:10000155", - "urn:lccn:78971085", - "urn:oclc:NYPG001000103-B", - "urn:undefined:NNSZ00100103", - "urn:undefined:(WaOLN)nyp0200154" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jāḥiẓ, -868 or 869 -- Knowledge -- Folklore.", - "Jāḥiẓ, -868 or 869 -- Mythology." - ], - "titleDisplay": [ - "al-Mawrūth al-shaʻbī fī āthār al-Jāḥiẓ i : muʻjam mufahras / aṣdarahu al-Markaz al-fulklūrī al-ʻIrāqī, Wizārat al-Iʻlām." - ], - "uri": "b10000155", - "lccClassification": [ - "PJ7745.J3 Z785" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Baghdād]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000155" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000085", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OEM 83-4899" - ], - "identifierV2": [ - { - "value": "*OEM 83-4899", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001925001" - } - ], - "physicalLocation": [ - "*OEM 83-4899" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001925001" - ], - "idBarcode": [ - "33433001925001" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OEM 83-004899" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000156", - "_score": null, - "_source": { - "extent": [ - "10, 9 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Additions and corrections in MS.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter in Sanskrit or English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu gods", - "Hindu hymns, Sanskrit" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Go. Venkaṭarāmaśāstri]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" - ], - "shelfMark": [ - "*OLY 83-4674" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902648" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-4674" - }, - { - "type": "nypl:Bnumber", - "value": "10000156" - }, - { - "type": "bf:Lccn", - "value": "75902648" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000104-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100104" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200155" - } - ], - "idOclc": [ - "NYPG001000104-B" - ], - "uniformTitle": [ - "Aṣṭakapañcaka" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[S.l. : Go. Venkaṭarāmaśāstri], 1972." - ], - "identifier": [ - "urn:bnum:10000156", - "urn:lccn:75902648", - "urn:oclc:NYPG001000104-B", - "urn:undefined:NNSZ00100104", - "urn:undefined:(WaOLN)nyp0200155" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu gods.", - "Hindu hymns, Sanskrit." - ], - "titleDisplay": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari / praṇetā Garikapāṭi Lakshmīkāntaḥ." - ], - "uri": "b10000156", - "lccClassification": [ - "BL1216 .L34" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "titleAlt": [ - "Aṣṭakapañcaka", - "Jaladhijānandalaharī." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000156" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783803", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-4674" - ], - "identifierV2": [ - { - "value": "*OLY 83-4674", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060370396" - } - ], - "physicalLocation": [ - "*OLY 83-4674" - ], - "identifier": [ - "urn:barcode:33433060370396" - ], - "idBarcode": [ - "33433060370396" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-004674" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000157", - "_score": null, - "_source": { - "extent": [ - "342 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Prophets in the Qurʼan" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-shaʻb" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Anbiyāʼ fī al-Qurʼān al-karīm" - ], - "shelfMark": [ - "*OGDM 83-4900" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sharqāwī, Maḥmūd." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "75961943" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGDM 83-4900" - }, - { - "type": "nypl:Bnumber", - "value": "10000157" - }, - { - "type": "bf:Lccn", - "value": "75961943" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000105-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100105" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200156" - } - ], - "idOclc": [ - "NYPG001000105-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "al-Qāhirah, Dār al-shaʻb [1970]" - ], - "identifier": [ - "urn:bnum:10000157", - "urn:lccn:75961943", - "urn:oclc:NYPG001000105-B", - "urn:undefined:NNSZ00100105", - "urn:undefined:(WaOLN)nyp0200156" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Prophets in the Qurʼan." - ], - "titleDisplay": [ - "al-Anbiyāʼ fī al-Qurʼān al-karīm [taʼlīf] Maḥmūd al-Sharqāwī." - ], - "uri": "b10000157", - "lccClassification": [ - "BP134.P745 S5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000157" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000086", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGDM 83-4900" - ], - "identifierV2": [ - { - "value": "*OGDM 83-4900", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005577659" - } - ], - "physicalLocation": [ - "*OGDM 83-4900" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005577659" - ], - "idBarcode": [ - "33433005577659" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGDM 83-004900" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000158", - "_score": null, - "_source": { - "extent": [ - "241, [27] p. : port. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Śrīnātha, active 1400-1440", - "Śrīnātha, active 1400-1440 -- Criticism and interpretation" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tammayya" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrīnāthamahākavi" - ], - "shelfMark": [ - "*OLC 83-4816" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Thammaiah, Bandaru, 1891-1970." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "79901118" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-4816" - }, - { - "type": "nypl:Bnumber", - "value": "10000158" - }, - { - "type": "bf:Lccn", - "value": "79901118" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000106-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100106" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200157" - } - ], - "idOclc": [ - "NYPG001000106-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Kākināḍa : Tammayya, 1968." - ], - "identifier": [ - "urn:bnum:10000158", - "urn:lccn:79901118", - "urn:oclc:NYPG001000106-B", - "urn:undefined:NNSZ00100106", - "urn:undefined:(WaOLN)nyp0200157" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Śrīnātha, active 1400-1440 -- Criticism and interpretation." - ], - "titleDisplay": [ - "Śrīnāthamahākavi / granthakarta Baṇḍāru Tamayya." - ], - "uri": "b10000158", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kākināḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000158" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLC 83-4816" - ], - "identifierV2": [ - { - "value": "*OLC 83-4816", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004689307" - } - ], - "physicalLocation": [ - "*OLC 83-4816" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004689307" - ], - "idBarcode": [ - "33433004689307" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLC 83-004816" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000159", - "_score": null, - "_source": { - "extent": [ - "64 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tales, Kannada" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Āśā Sāhitya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jānapada kathālōka" - ], - "shelfMark": [ - "*OLA 83-4817" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902609" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Srikripananda Basavani, 1933-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-4817" - }, - { - "type": "nypl:Bnumber", - "value": "10000159" - }, - { - "type": "bf:Lccn", - "value": "75902609" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000107-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100107" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200158" - } - ], - "idOclc": [ - "NYPG001000107-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Beṅgaḷūru : Āśā Sāhitya, 1974." - ], - "identifier": [ - "urn:bnum:10000159", - "urn:lccn:75902609", - "urn:oclc:NYPG001000107-B", - "urn:undefined:NNSZ00100107", - "urn:undefined:(WaOLN)nyp0200158" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tales, Kannada." - ], - "titleDisplay": [ - "Jānapada kathālōka / Krpānanda." - ], - "uri": "b10000159", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000159" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000088", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 83-4817" - ], - "identifierV2": [ - { - "value": "*OLA 83-4817", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012996876" - } - ], - "physicalLocation": [ - "*OLA 83-4817" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012996876" - ], - "idBarcode": [ - "33433012996876" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 83-004817" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000160", - "_score": null, - "_source": { - "extent": [ - "143 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil literature", - "Tamil literature -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Paḻaṉiyappā Piratars" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ilakkiya nayam" - ], - "shelfMark": [ - "*OLB 83-4818" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācāmaṇi, R." - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "75908529" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-4818" - }, - { - "type": "nypl:Bnumber", - "value": "10000160" - }, - { - "type": "bf:Lccn", - "value": "75908529" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000108-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100108" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200159" - } - ], - "idOclc": [ - "NYPG001000108-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Ceṉṉai : Paḻaṉiyappā Piratars, [1966]." - ], - "identifier": [ - "urn:bnum:10000160", - "urn:lccn:75908529", - "urn:oclc:NYPG001000108-B", - "urn:undefined:NNSZ00100108", - "urn:undefined:(WaOLN)nyp0200159" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil literature -- History and criticism." - ], - "titleDisplay": [ - "Ilakkiya nayam / [Eḻutiyavar] Ra. Irācāmaṇi." - ], - "uri": "b10000160", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000160" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783804", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-4818" - ], - "identifierV2": [ - { - "value": "*OLB 83-4818", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299065" - } - ], - "physicalLocation": [ - "*OLB 83-4818" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299065" - ], - "idBarcode": [ - "33433061299065" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-004818" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000161", - "_score": null, - "_source": { - "extent": [ - "xiv, 71 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on t.p. verso: Manitha soroobangal.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Short stories.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Civaṉ Kalvi Nilaiya Veḷiyīṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Maṉita coṟūpaṅkaḷ : paṉṉiru ciṟu kataikaḷ" - ], - "shelfMark": [ - "*OLB 83-4819" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kohila Mahendiran." - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83900649" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-4819" - }, - { - "type": "nypl:Bnumber", - "value": "10000161" - }, - { - "type": "bf:Lccn", - "value": "83900649" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000109-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100109" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200160" - } - ], - "idOclc": [ - "NYPG001000109-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Tellippalai] : Civaṉ Kalvi Nilaiya Veḷiyīṭu, 1982." - ], - "identifier": [ - "urn:bnum:10000161", - "urn:lccn:83900649", - "urn:oclc:NYPG001000109-B", - "urn:undefined:NNSZ00100109", - "urn:undefined:(WaOLN)nyp0200160" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Maṉita coṟūpaṅkaḷ : paṉṉiru ciṟu kataikaḷ / Kōkilā Makēntiraṉ." - ], - "uri": "b10000161", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tellippalai]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000161" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783805", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-4819" - ], - "identifierV2": [ - { - "value": "*OLB 83-4819", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299073" - } - ], - "physicalLocation": [ - "*OLB 83-4819" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299073" - ], - "idBarcode": [ - "33433061299073" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-004819" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000162", - "_score": null, - "_source": { - "extent": [ - "x, 96 p. (p. 95-96 advertisements)" - ], - "note": [ - { - "noteType": "Note", - "label": "Running title: Candrahāsa nāṭaka samīkṣe.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "On page 96: x + 96 = 106.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Pampa Prakāśạna" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mahākavi Kuvempu avara Candrahāsa nāṭaka samīkṣe." - ], - "shelfMark": [ - "*OLA 83-4864" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Vasantakumār, Maḷali." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902165" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-4864" - }, - { - "type": "nypl:Bnumber", - "value": "10000162" - }, - { - "type": "bf:Lccn", - "value": "72902165" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000110-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100110" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200161" - } - ], - "idOclc": [ - "NYPG001000110-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Maisūru, Pampa Prakāśạna [1971]" - ], - "identifier": [ - "urn:bnum:10000162", - "urn:lccn:72902165", - "urn:oclc:NYPG001000110-B", - "urn:undefined:NNSZ00100110", - "urn:undefined:(WaOLN)nyp0200161" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994." - ], - "titleDisplay": [ - "Mahākavi Kuvempu avara Candrahāsa nāṭaka samīkṣe. Sampādaka Eṃ. Si. Vasantakumār." - ], - "uri": "b10000162", - "lccClassification": [ - "PL4659.P797 C339" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Candrahāsa nāṭaka samīkṣe." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000162" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000089", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 83-4864" - ], - "identifierV2": [ - { - "value": "*OLA 83-4864", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012996892" - } - ], - "physicalLocation": [ - "*OLA 83-4864" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012996892" - ], - "idBarcode": [ - "33433012996892" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 83-004864" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000163", - "_score": null, - "_source": { - "extent": [ - "13 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Novelette.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Kalaiñar Patippaka veḷiyīṭu-3.\"", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kalaiñar Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Iruḷiṉ viṭivu : kuṟunāval" - ], - "shelfMark": [ - "*OLB 83-4821" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tāvaiyūr Kāṇṭīpaṉ." - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83900646" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-4821" - }, - { - "type": "nypl:Bnumber", - "value": "10000163" - }, - { - "type": "bf:Lccn", - "value": "83900646" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000111-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100111" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200162" - } - ], - "idOclc": [ - "NYPG001000111-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Tirunelvēli, Yāḻppāṇam : Kalaiñar Patippakam, 1982." - ], - "identifier": [ - "urn:bnum:10000163", - "urn:lccn:83900646", - "urn:oclc:NYPG001000111-B", - "urn:undefined:NNSZ00100111", - "urn:undefined:(WaOLN)nyp0200162" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Iruḷiṉ viṭivu : kuṟunāval / Tāvaiyūr Kāṇṭīpaṉ." - ], - "uri": "b10000163", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli, Yāḻppāṇam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000163" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783806", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-4821" - ], - "identifierV2": [ - { - "value": "*OLB 83-4821", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299099" - } - ], - "physicalLocation": [ - "*OLB 83-4821" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299099" - ], - "idBarcode": [ - "33433061299099" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-004821" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000164", - "_score": null, - "_source": { - "extent": [ - "148 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannadhasan, 1927-", - "Kannadhasan, 1927- -- Criticism and interpretation" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vāṉati Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kaṇṇatācaṉ kavinayam" - ], - "shelfMark": [ - "*OLB 83-4822" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gunasekar, P., 1936-" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900404" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-4822" - }, - { - "type": "nypl:Bnumber", - "value": "10000164" - }, - { - "type": "bf:Lccn", - "value": "76900404" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000112-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100112" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200163" - } - ], - "idOclc": [ - "NYPG001000112-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ceṉṉai : Vāṉati Patippakam, 1975." - ], - "identifier": [ - "urn:bnum:10000164", - "urn:lccn:76900404", - "urn:oclc:NYPG001000112-B", - "urn:undefined:NNSZ00100112", - "urn:undefined:(WaOLN)nyp0200163" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannadhasan, 1927- -- Criticism and interpretation." - ], - "titleDisplay": [ - "Kaṇṇatācaṉ kavinayam / Pa. Kuṇacēkar." - ], - "uri": "b10000164", - "lccClassification": [ - "PL4758.9.K327 Z65" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000164" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783807", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-4822" - ], - "identifierV2": [ - { - "value": "*OLB 83-4822", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299107" - } - ], - "physicalLocation": [ - "*OLB 83-4822" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299107" - ], - "idBarcode": [ - "33433061299107" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-004822" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000165", - "_score": null, - "_source": { - "extent": [ - "47, 112 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vaishnavism", - "Vaishnavism -- Prayer books and devotions", - "Vaishnavism -- Prayer books and devotions -- Tamil" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nārāyaṇacāmi Nāyaṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" - ], - "shelfMark": [ - "*OLY 83-4895" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76901471" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Narayanaswami Naidu, Tiruchirrambalam Krishnaswamy, 1906-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-4895" - }, - { - "type": "nypl:Bnumber", - "value": "10000165" - }, - { - "type": "bf:Lccn", - "value": "76901471" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000113-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100113" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200164" - } - ], - "idOclc": [ - "NYPG001000113-B" - ], - "uniformTitle": [ - "Nālāyirat tivviyap pirapantam. Selections." - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Kaṭalūr : Nārāyaṇacāmi Nāyaṭu, 1975." - ], - "identifier": [ - "urn:bnum:10000165", - "urn:lccn:76901471", - "urn:oclc:NYPG001000113-B", - "urn:undefined:NNSZ00100113", - "urn:undefined:(WaOLN)nyp0200164" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vaishnavism -- Prayer books and devotions -- Tamil." - ], - "titleDisplay": [ - "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ / [Tokuppāciriyar Ti. Ki. Nārāyaṇacāmi Nāyaṭu]." - ], - "uri": "b10000165", - "lccClassification": [ - "BL1245.V3 N28 1975" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kaṭalūr" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000165" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783808", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-4895" - ], - "identifierV2": [ - { - "value": "*OLY 83-4895", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419649" - } - ], - "physicalLocation": [ - "*OLY 83-4895" - ], - "identifier": [ - "urn:barcode:33433060419649" - ], - "idBarcode": [ - "33433060419649" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-004895" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000166", - "_score": null, - "_source": { - "extent": [ - "328, 8 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sufism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dānishgāh-i Tihrān, Dānishkadah-ʼi ʻUlūm-i Maʻqūl va Manqūl" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1962 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMQ 84-154" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥakīm, Muḥammad ʻAlī." - ], - "createdString": [ - "1962" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1962 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMQ 84-154" - }, - { - "type": "nypl:Bnumber", - "value": "10000166" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000114-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100114" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200165" - } - ], - "idOclc": [ - "NYPG001000114-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Tihrān : Dānishgāh-i Tihrān, Dānishkadah-ʼi ʻUlūm-i Maʻqūl va Manqūl, 1340 [1962]" - ], - "identifier": [ - "urn:bnum:10000166", - "urn:oclc:NYPG001000114-B", - "urn:undefined:NNSZ00100114", - "urn:undefined:(WaOLN)nyp0200165" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1962" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sufism." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad ʻAlī Ḥakīm." - ], - "uri": "b10000166", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000166" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000090", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMQ 84-154 " - ], - "identifierV2": [ - { - "value": "*OMQ 84-154 ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013145390" - } - ], - "physicalLocation": [ - "*OMQ 84-154 " - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013145390" - ], - "idBarcode": [ - "33433013145390" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMQ 84-154 " - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000167", - "_score": null, - "_source": { - "extent": [ - "4, 261 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic civilization" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Chakāmah" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "ʻUlūm-i Islāmī dar qarn-i avval-i Hijrī" - ], - "shelfMark": [ - "*OGC 84-151" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Manṣūrī, Ẕabīḥ Allāh." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-151" - }, - { - "type": "nypl:Bnumber", - "value": "10000167" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000115-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100115" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200166" - } - ], - "idOclc": [ - "NYPG001000115-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Tihrān : Nashr-i Chakāmah, 1362 [1983]" - ], - "identifier": [ - "urn:bnum:10000167", - "urn:oclc:NYPG001000115-B", - "urn:undefined:NNSZ00100115", - "urn:undefined:(WaOLN)nyp0200166" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic civilization." - ], - "titleDisplay": [ - "ʻUlūm-i Islāmī dar qarn-i avval-i Hijrī / nivishtah-ʼi Ẕabīḥ Allāh Manṣūrī." - ], - "uri": "b10000167", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000167" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540042", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-151" - ], - "identifierV2": [ - { - "value": "*OGC 84-151", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691053" - } - ], - "physicalLocation": [ - "*OGC 84-151" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691053" - ], - "idBarcode": [ - "33433022691053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-000151" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000168", - "_score": null, - "_source": { - "extent": [ - "83 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title on p. facing t.p.: Kerala Panineeyam, chila anubandhachinthakal.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rajaraja Varma, A. R., 1863-1918", - "Malayalam language", - "Malayalam language -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mīrākkuṭṭi ; vitaraṇaṃ, Nāṣanal Bukksṯāḷ" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kēraḷapāṇinīyaṃ, cila anubandhacintakaḷ : paṭhanaṃ" - ], - "shelfMark": [ - "*OLD 84-110" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Mīrākkuṭṭi, Pi., 1930-" - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "82906730" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-110" - }, - { - "type": "nypl:Bnumber", - "value": "10000168" - }, - { - "type": "bf:Lccn", - "value": "82906730" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000116-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100116" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200167" - } - ], - "idOclc": [ - "NYPG001000116-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[S.l.] : Mīrākkuṭṭi ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Bukksṯāḷ, 1982." - ], - "identifier": [ - "urn:bnum:10000168", - "urn:lccn:82906730", - "urn:oclc:NYPG001000116-B", - "urn:undefined:NNSZ00100116", - "urn:undefined:(WaOLN)nyp0200167" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rajaraja Varma, A. R., 1863-1918.", - "Malayalam language -- History and criticism." - ], - "titleDisplay": [ - "Kēraḷapāṇinīyaṃ, cila anubandhacintakaḷ : paṭhanaṃ / Pi. Mīrākkuṭṭi." - ], - "uri": "b10000168", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l.] : Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000168" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000091", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 84-110" - ], - "identifierV2": [ - { - "value": "*OLD 84-110", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011098963" - } - ], - "physicalLocation": [ - "*OLD 84-110" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011098963" - ], - "idBarcode": [ - "33433011098963" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 84-000110" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000169", - "_score": null, - "_source": { - "extent": [ - "xii, 639 p. : ill., fold. map. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [635]-639.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamils", - "Tamils -- Social life and customs", - "South Arcot (India)", - "South Arcot (India) -- Social life and customs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "viṟpaṉai urimai, Tirunelvēli Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Keṭilakkarai nākarikam" - ], - "shelfMark": [ - "*OLB 84-112" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cuntara Caṇmukaṉār, 1922-" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900317" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-112" - }, - { - "type": "nypl:Bnumber", - "value": "10000169" - }, - { - "type": "bf:Lccn", - "value": "76900317" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000117-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100117" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200168" - } - ], - "idOclc": [ - "NYPG001000117-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Ceṉṉai : viṟpaṉai urimai, Tirunelvēli Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1975." - ], - "identifier": [ - "urn:bnum:10000169", - "urn:lccn:76900317", - "urn:oclc:NYPG001000117-B", - "urn:undefined:NNSZ00100117", - "urn:undefined:(WaOLN)nyp0200168" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamils -- Social life and customs.", - "South Arcot (India) -- Social life and customs." - ], - "titleDisplay": [ - "Keṭilakkarai nākarikam / Āciriyar Cuntara Caṇmukaṉār." - ], - "uri": "b10000169", - "lccClassification": [ - "DS432.T3 S95" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000169" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783809", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-112" - ], - "identifierV2": [ - { - "value": "*OLB 84-112", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299735" - } - ], - "physicalLocation": [ - "*OLB 84-112" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299735" - ], - "idBarcode": [ - "33433061299735" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-000112" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000170", - "_score": null, - "_source": { - "extent": [ - "ix, 488 p., [6] leaves of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Perunthamizh: the third ten days' seminar papers.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Organized by the Dept. of Tamil, Madras University.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil philology", - "Tamil philology -- Congresses" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ceṉṉai Palkalaik Kaḻaka Veḷiyīṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Peruṅkāppiyac ciṟṟilakkiyap peruntamiḻ : mūṉṟām Potunilaip Pattunāḷ Karuttāyvaraṅkak kaṭṭuraikaḷ" - ], - "shelfMark": [ - "*OLB 84-105" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Potunilaip Pattunāḷ Karuttaraṅku (3rd : 1974 : University of Madras, India)" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76901454" - ], - "seriesStatement": [ - "Ceṉṉaip Palkalaik Kaḻakat Tamiḻt Tuṟai veḷiyīṭu ; 37" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Cañcīvi, Na., 1927-", - "University of Madras. Tamil Department." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-105" - }, - { - "type": "nypl:Bnumber", - "value": "10000170" - }, - { - "type": "bf:Lccn", - "value": "76901454" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000118-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100118" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200169" - } - ], - "idOclc": [ - "NYPG001000118-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[Ceṉṉai] : Ceṉṉai Palkalaik Kaḻaka Veḷiyīṭu, 1975." - ], - "identifier": [ - "urn:bnum:10000170", - "urn:lccn:76901454", - "urn:oclc:NYPG001000118-B", - "urn:undefined:NNSZ00100118", - "urn:undefined:(WaOLN)nyp0200169" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil philology -- Congresses." - ], - "titleDisplay": [ - "Peruṅkāppiyac ciṟṟilakkiyap peruntamiḻ : mūṉṟām Potunilaip Pattunāḷ Karuttāyvaraṅkak kaṭṭuraikaḷ / Potup patippāciriyar, Na. Cañcīvi ; utavi, Tamiḻttuṟai āciriyarkaḷum māṇavarkaḷum." - ], - "uri": "b10000170", - "lccClassification": [ - "PL4751 .P73 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Ceṉṉai]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000170" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783810", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-105" - ], - "identifierV2": [ - { - "value": "*OLB 84-105", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299719" - } - ], - "physicalLocation": [ - "*OLB 84-105" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299719" - ], - "idBarcode": [ - "33433061299719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-000105" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000171", - "_score": null, - "_source": { - "extent": [ - "261p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At the head of title: Haykakan SSH Gitutʻyunneri Akademia Patmutʻian Institut.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added title page : Dvizhenie dzhelaliev i polozhenie arm︠i︡anskogo naroda v Osmanskoĭ imperii (XVI-XVII veka).", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 221-226.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Armenian.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Summary in Russian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jellali Insurrections", - "Turkey", - "Turkey -- History", - "Turkey -- History -- 1453-1683", - "Armenia", - "Armenia -- History", - "Armenia -- History -- 1522-1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Haykakan SSH GA Hratarakchʻutʻyun" - ], - "language": [ - { - "id": "lang:arm", - "label": "Armenian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jalalineri sharzhumě ev Hay zhoghovrdi vichake Osmanian Kaysrutʻian mej (XVI-XVII darer)" - ], - "shelfMark": [ - "*ONQ 84-119" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zulalyan, M. K. (Manvel Karapeti)" - ], - "createdString": [ - "1966" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONQ 84-119" - }, - { - "type": "nypl:Bnumber", - "value": "10000171" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000119-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100119" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200170" - } - ], - "idOclc": [ - "NYPG001000119-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Erevan : Haykakan SSH GA Hratarakchʻutʻyun" - ], - "identifier": [ - "urn:bnum:10000171", - "urn:oclc:NYPG001000119-B", - "urn:undefined:NNSZ00100119", - "urn:undefined:(WaOLN)nyp0200170" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jellali Insurrections.", - "Turkey -- History -- 1453-1683.", - "Armenia -- History -- 1522-1800." - ], - "titleDisplay": [ - "Jalalineri sharzhumě ev Hay zhoghovrdi vichake Osmanian Kaysrutʻian mej (XVI-XVII darer) / M.K. Zulalian." - ], - "uri": "b10000171", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Erevan" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Dvizhenie dzhelaliev i polozhenie arm︠i︡anskogo naroda v Osmanskoĭ imperii (XVI-XVII veka)." - ], - "dimensions": [ - "22cm." - ] - }, - "sort": [ - "b10000171" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000092", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*ONQ 84-119" - ], - "identifierV2": [ - { - "value": "*ONQ 84-119", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001889223" - } - ], - "physicalLocation": [ - "*ONQ 84-119" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001889223" - ], - "idBarcode": [ - "33433001889223" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONQ 84-000119" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000172", - "_score": null, - "_source": { - "extent": [ - "225p. : [2] facsims. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p. in Russian.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Head of title: \"Matenadaran\" Haykakan SSH Ministrneri Sovetin aṛĕntʻer Mashtotsʻi anvan hin dzeṛagreri institut.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Armenian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Armenian language, Classical", - "Armenian language, Classical -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Haykakan SSH GA Hratarakchutʻyun" - ], - "language": [ - { - "id": "lang:arm", - "label": "Armenian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Haghags ḳerakani" - ], - "shelfMark": [ - "*ONL 84-118" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hovhannes, Ḳṛnetsʻi, active 14th century." - ], - "createdString": [ - "1977" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Khachʻikyan, L. S. (Levon Stepʻani), 1918-1982.", - "Avagian, S. A." - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONL 84-118" - }, - { - "type": "nypl:Bnumber", - "value": "10000172" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000120-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100120" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200171" - } - ], - "idOclc": [ - "NYPG001000120-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Erevan : Haykakan SSH GA Hratarakchutʻyun, 1977." - ], - "identifier": [ - "urn:bnum:10000172", - "urn:oclc:NYPG001000120-B", - "urn:undefined:NNSZ00100120", - "urn:undefined:(WaOLN)nyp0200171" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Armenian language, Classical -- Grammar." - ], - "titleDisplay": [ - "Haghags ḳerakani / Hovhannes Ḳṛnetsʻi. Bnagire hratarakutʻian patrastetsʻ L.S. Khachʻikianĕ. Neratsutʻyunĕ L.S. Khachʻikiani ev S.A. Avagiani." - ], - "uri": "b10000172", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Erevan" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10000172" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000093", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*ONL 84-118" - ], - "identifierV2": [ - { - "value": "*ONL 84-118", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013020924" - } - ], - "physicalLocation": [ - "*ONL 84-118" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013020924" - ], - "idBarcode": [ - "33433013020924" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONL 84-000118" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000173", - "_score": null, - "_source": { - "extent": [ - "520 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Navadhāra" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kāṭṭāḷan" - ], - "shelfMark": [ - "*OLD 84-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Manōj." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82903306" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000173" - }, - { - "type": "bf:Lccn", - "value": "82903306" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000121-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100121" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200172" - } - ], - "idOclc": [ - "NYPG001000121-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Tiruvanantapuram : Navadhāra, 1980." - ], - "identifier": [ - "urn:bnum:10000173", - "urn:lccn:82903306", - "urn:oclc:NYPG001000121-B", - "urn:undefined:NNSZ00100121", - "urn:undefined:(WaOLN)nyp0200172" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Kāṭṭāḷan / Manoj." - ], - "uri": "b10000173", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tiruvanantapuram" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000173" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000094", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 84-113" - ], - "identifierV2": [ - { - "value": "*OLD 84-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011098971" - } - ], - "physicalLocation": [ - "*OLD 84-113" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011098971" - ], - "idBarcode": [ - "33433011098971" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 84-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000174", - "_score": null, - "_source": { - "extent": [ - "xvi, 232 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Dictionary of dialectal usages, courtesy-language and culture of Kerala Brahmins.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title on page facing t.p.. :Namboodiribhasha sabdakosham.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Malayalam language", - "Malayalam language -- Terms and phrases" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Visnunampūtiri ; Nāṣanal Bukksṯāḷ" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nampūtiribhāṣā śabdakōśaṃ" - ], - "shelfMark": [ - "*OLD 84-116" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Viṣṇunampūtiri, Eṃ. Vi." - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83900738" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-116" - }, - { - "type": "nypl:Bnumber", - "value": "10000174" - }, - { - "type": "bf:Lccn", - "value": "83900738" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000122-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100122" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200173" - } - ], - "idOclc": [ - "NYPG001000122-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[Rāmantaḷi] : Visnunampūtiri ; Kōṭṭayaṃ : Nāṣanal Bukksṯāḷ 1982." - ], - "identifier": [ - "urn:bnum:10000174", - "urn:lccn:83900738", - "urn:oclc:NYPG001000122-B", - "urn:undefined:NNSZ00100122", - "urn:undefined:(WaOLN)nyp0200173" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Malayalam language -- Terms and phrases." - ], - "titleDisplay": [ - "Nampūtiribhāṣā śabdakōśaṃ / Eṃ. Vi. Viṣṇunampūtiri." - ], - "uri": "b10000174", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Rāmantaḷi] : Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000174" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000095", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 84-116" - ], - "identifierV2": [ - { - "value": "*OLD 84-116", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011098989" - } - ], - "physicalLocation": [ - "*OLD 84-116" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011098989" - ], - "idBarcode": [ - "33433011098989" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 84-000116" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000175", - "_score": null, - "_source": { - "extent": [ - "15,111 p. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Persian and Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Self-instruction" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shirkat-i Dānish" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1983" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khud'āmūz-i zabān-i Sanskrīt" - ], - "shelfMark": [ - "*OKE 84-115" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥasanī Dāʻī al-Islāmī, Muḥammad ʻAlī." - ], - "createdString": [ - "1982" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKE 84-115" - }, - { - "type": "nypl:Bnumber", - "value": "10000175" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000123-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100123" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200174" - } - ], - "idOclc": [ - "NYPG001000123-B" - ], - "dateEndYear": [ - 1983 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Tihrān : Shirkat-i Dānish, 1361 [1982 or 1983]" - ], - "identifier": [ - "urn:bnum:10000175", - "urn:oclc:NYPG001000123-B", - "urn:undefined:NNSZ00100123", - "urn:undefined:(WaOLN)nyp0200174" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Self-instruction." - ], - "titleDisplay": [ - "Khud'āmūz-i zabān-i Sanskrīt / taʼlīf-i Muḥammad ʻAlī Ḥasanī Dāʻī al-Islāmī." - ], - "uri": "b10000175", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000175" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858035", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKE 84-115" - ], - "identifierV2": [ - { - "value": "*OKE 84-115", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058552856" - } - ], - "physicalLocation": [ - "*OKE 84-115" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058552856" - ], - "idBarcode": [ - "33433058552856" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKE 84-000115" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000176", - "_score": null, - "_source": { - "extent": [ - "44, 286 p., [4] leaves of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p. in English.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter and paraphrase in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Raj Singh, Maharana of Mewar, 1629-1680", - "Raj Singh, Maharana of Mewar, 1629-1680 -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sāhitya saṃsthāna, Rājasthāna Vidyāpīṭha" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rājapraśastiḥ mahākāvyam" - ], - "shelfMark": [ - "*OKP 84-84" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Raṇachoḍabhaṭṭa, active 1661-1681." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75902395" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Menaria, Moti Lal, 1905-" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-84" - }, - { - "type": "nypl:Bnumber", - "value": "10000176" - }, - { - "type": "bf:Lccn", - "value": "75902395" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000124-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100124" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200175" - } - ], - "idOclc": [ - "NYPG001000124-B" - ], - "uniformTitle": [ - "Rājapraśasti" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Udayapura : Sāhitya saṃsthāna, Rājasthāna Vidyāpīṭha, 1973." - ], - "identifier": [ - "urn:bnum:10000176", - "urn:lccn:75902395", - "urn:oclc:NYPG001000124-B", - "urn:undefined:NNSZ00100124", - "urn:undefined:(WaOLN)nyp0200175" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Raj Singh, Maharana of Mewar, 1629-1680 -- Poetry." - ], - "titleDisplay": [ - "Rājapraśastiḥ mahākāvyam / Raṇachoṛabhaṭṭa praṇītam ; sampādaka Motilāla Menāriyā." - ], - "uri": "b10000176", - "lccClassification": [ - "PK3798.R2872 R3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "titleAlt": [ - "Rājapraśasti", - "Rājapraśasti." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000176" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783811", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-84" - ], - "identifierV2": [ - { - "value": "*OKP 84-84", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153408" - } - ], - "physicalLocation": [ - "*OKP 84-84" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153408" - ], - "idBarcode": [ - "33433058153408" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-000084" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000177", - "_score": null, - "_source": { - "extent": [ - "4, 4, 354 p. col. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [349]-354.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rām Sanehīs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rāmasnehī Sāhitya Śodha Saṃsthāna" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." - ], - "shelfMark": [ - "*OLY 84-85" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pāṇḍeya, Śivāśaṅkara, 1935-" - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74901467" - ], - "seriesStatement": [ - "Rāmasnehī sāhitya śodha saṃsthāna, pushpa 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-85" - }, - { - "type": "nypl:Bnumber", - "value": "10000177" - }, - { - "type": "bf:Lccn", - "value": "74901467" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000125-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100125" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200176" - } - ], - "idOclc": [ - "NYPG001000125-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Dillī, Rāmasnehī Sāhitya Śodha Saṃsthāna [1973]" - ], - "identifier": [ - "urn:bnum:10000177", - "urn:lccn:74901467", - "urn:oclc:NYPG001000125-B", - "urn:undefined:NNSZ00100125", - "urn:undefined:(WaOLN)nyp0200176" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rām Sanehīs." - ], - "titleDisplay": [ - "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi. Lekhaka Śivāśaṅkara Pāṇḍeya." - ], - "uri": "b10000177", - "lccClassification": [ - "BL1245.R35 P36" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000177" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783812", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-85" - ], - "identifierV2": [ - { - "value": "*OLY 84-85", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419680" - } - ], - "physicalLocation": [ - "*OLY 84-85" - ], - "identifier": [ - "urn:barcode:33433060419680" - ], - "idBarcode": [ - "33433060419680" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-000085" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000178", - "_score": null, - "_source": { - "extent": [ - "16, 440 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Kāśī Hindū Viśvavidyālaya kī Pī. ech. Ḍī. upādhi ke lie svīkrta śodha prabandha.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [436]-440.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindi poetry", - "Hindi poetry -- History and criticism", - "Bhakti in literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Abhinava Bhārati Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hindī Krshṇabhakti sāhitya meṃ madhurabhāva kī upāsanā." - ], - "shelfMark": [ - "*OKTM 84-81" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rai, Purnamasi, 1928-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74901757" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-81" - }, - { - "type": "nypl:Bnumber", - "value": "10000178" - }, - { - "type": "bf:Lccn", - "value": "74901757" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000126-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100126" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200177" - } - ], - "idOclc": [ - "NYPG001000126-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ilāhābāda, Abhinava Bhārati Prakāśana [1974]" - ], - "identifier": [ - "urn:bnum:10000178", - "urn:lccn:74901757", - "urn:oclc:NYPG001000126-B", - "urn:undefined:NNSZ00100126", - "urn:undefined:(WaOLN)nyp0200177" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindi poetry -- History and criticism.", - "Bhakti in literature." - ], - "titleDisplay": [ - "Hindī Krshṇabhakti sāhitya meṃ madhurabhāva kī upāsanā. [Lekhaka] Pūrṇamāsī Rāya." - ], - "uri": "b10000178", - "lccClassification": [ - "PK2040 .R33" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ilāhābāda" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000178" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942053", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-81" - ], - "identifierV2": [ - { - "value": "*OKTM 84-81", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011093949" - } - ], - "physicalLocation": [ - "*OKTM 84-81" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011093949" - ], - "idBarcode": [ - "33433011093949" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-000081" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000179", - "_score": null, - "_source": { - "extent": [ - "126 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Series romanized: Śrīrāmavarmma granthāvali.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added t.p. in English: Kalakeyavadham.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Libretto for thullal, a variation of the kathakali dance drama of Kerala.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Malayalam.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ottanthullal", - "Dance", - "Dance -- Kerala", - "Kathakali" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Malayāḷasāhityanidhi, Kēraḷa Sāhitya Akkādami ; vitaraṇaṃ, Nāṣanal Buksṯṯāḷ" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kālakēyavadhaṃ : śītaṅkantuḷḷal" - ], - "shelfMark": [ - "*MGS (Hindu) 84-117" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Dāmōdaran Nampūtiri, Pūntōttattu, 1815-1865." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78900937" - ], - "seriesStatement": [ - "Sṟīrāmavarmma granthāvali" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*MGS (Hindu) 84-117" - }, - { - "type": "nypl:Bnumber", - "value": "10000179" - }, - { - "type": "bf:Lccn", - "value": "78900937" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000127-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100127" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200178" - } - ], - "idOclc": [ - "NYPG001000127-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[Trśśūr] : Malayāḷasāhityanidhi, Kēraḷa Sāhitya Akkādami ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Buksṯṯāḷ, 1975." - ], - "identifier": [ - "urn:bnum:10000179", - "urn:lccn:78900937", - "urn:oclc:NYPG001000127-B", - "urn:undefined:NNSZ00100127", - "urn:undefined:(WaOLN)nyp0200178" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ottanthullal", - "Dance -- Kerala.", - "Kathakali." - ], - "titleDisplay": [ - "Kālakēyavadhaṃ : śītaṅkantuḷḷal / Granthakarttā Puntōṭṭattu Dāmōdaran Nampūtiri." - ], - "uri": "b10000179", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Trśśūr] : Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000179" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746410", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1121", - "label": "Jerome Robbins Dance Division" - } - ], - "owner_packed": [ - "orgs:1121||Jerome Robbins Dance Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:myd32", - "label": "Performing Arts Research Collections - Dance" - } - ], - "holdingLocation_packed": [ - "loc:myd32||Performing Arts Research Collections - Dance" - ], - "shelfMark": [ - "*MGS (Hindu) 84-117" - ], - "identifierV2": [ - { - "value": "*MGS (Hindu) 84-117", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093040370" - } - ], - "physicalLocation": [ - "*MGS (Hindu) 84-117" - ], - "identifier": [ - "urn:barcode:33433093040370" - ], - "idBarcode": [ - "33433093040370" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*MGS (Hindu) 84-000117" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000180", - "_score": null, - "_source": { - "extent": [ - "95 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Putumaip Piracuram" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vitiyō? Vīṇaiyō?" - ], - "shelfMark": [ - "*OLB 84-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tamiḻoḷi." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72908855" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Iḷaṅkōvaṭikaḷ." - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000180" - }, - { - "type": "bf:Lccn", - "value": "72908855" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000128-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100128" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200179" - } - ], - "idOclc": [ - "NYPG001000128-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Ceṉṉai : Putumaip Piracuram, [1971]" - ], - "identifier": [ - "urn:bnum:10000180", - "urn:lccn:72908855", - "urn:oclc:NYPG001000128-B", - "urn:undefined:NNSZ00100128", - "urn:undefined:(WaOLN)nyp0200179" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Vitiyō? Vīṇaiyō? / Kaviñar Tamiḻoḷi ; muṉṉurai : A. Citamparanātaṉ." - ], - "uri": "b10000180", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000180" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783813", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-102" - ], - "identifierV2": [ - { - "value": "*OLB 84-102", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299701" - } - ], - "physicalLocation": [ - "*OLB 84-102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299701" - ], - "idBarcode": [ - "33433061299701" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-000102" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000181", - "_score": null, - "_source": { - "extent": [ - "104 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title on p. facing t.p.: Inside Singhbhum of Bihar.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Mēri Jōsna", - "Social workers", - "Social workers -- Kerala", - "Social workers -- Kerala -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kaṟanṯ Buks" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Simhabhūmiyil : yātṟāvivaraṇaṃ" - ], - "shelfMark": [ - "*OLD 84-103" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kuryan Pāmpāṭi, 1941-" - ], - "createdString": [ - "1981" - ], - "idLccn": [ - "82904779" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-103" - }, - { - "type": "nypl:Bnumber", - "value": "10000181" - }, - { - "type": "bf:Lccn", - "value": "82904779" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000129-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100129" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200180" - } - ], - "idOclc": [ - "NYPG001000129-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Kōṭṭayaṃ : Kaṟanṯ Buks, 1981." - ], - "identifier": [ - "urn:bnum:10000181", - "urn:lccn:82904779", - "urn:oclc:NYPG001000129-B", - "urn:undefined:NNSZ00100129", - "urn:undefined:(WaOLN)nyp0200180" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Mēri Jōsna.", - "Social workers -- Kerala -- Biography." - ], - "titleDisplay": [ - "Simhabhūmiyil : yātṟāvivaraṇaṃ / Kuryan Pāmpāṭi." - ], - "uri": "b10000181", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Inside Singhbhum of Bihar." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000181" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000096", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 84-103" - ], - "identifierV2": [ - { - "value": "*OLD 84-103", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011098955" - } - ], - "physicalLocation": [ - "*OLD 84-103" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011098955" - ], - "idBarcode": [ - "33433011098955" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 84-000103" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000182", - "_score": null, - "_source": { - "extent": [ - "5, v, 281 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Viśvavidyālaya-starīya grantha-nirmāṇa-yojanā ke antargata ... prakāśita.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [275]-281.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindi poetry", - "Hindi poetry -- 1947-", - "Hindi poetry -- 1947- -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bihāra Hindī Grantha Akādamī" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Naī kavitā, udbhava aura vikāsa" - ], - "shelfMark": [ - "*OKTM 84-86" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rāya, Rāma Vacana." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902264" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-86" - }, - { - "type": "nypl:Bnumber", - "value": "10000182" - }, - { - "type": "bf:Lccn", - "value": "75902264" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000130-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100130" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200181" - } - ], - "idOclc": [ - "NYPG001000130-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Patanā : Bihāra Hindī Grantha Akādamī, 1974." - ], - "identifier": [ - "urn:bnum:10000182", - "urn:lccn:75902264", - "urn:oclc:NYPG001000130-B", - "urn:undefined:NNSZ00100130", - "urn:undefined:(WaOLN)nyp0200181" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindi poetry -- 1947- -- History and criticism." - ], - "titleDisplay": [ - "Naī kavitā, udbhava aura vikāsa / lekhaka Rāmavacana Rāya." - ], - "uri": "b10000182", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Patanā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000182" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942054", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-86" - ], - "identifierV2": [ - { - "value": "*OKTM 84-86", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011093956" - } - ], - "physicalLocation": [ - "*OKTM 84-86" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011093956" - ], - "idBarcode": [ - "33433011093956" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-000086" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000183", - "_score": null, - "_source": { - "extent": [ - "680, [1] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: P. 681.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Malayalam language", - "Malayalam language -- Idioms" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sāhityapṟavarttaka Sahakaraṇasaṅghaṃ : Nāṣanal Bukksṯāḷ" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Apaśabdabodhini" - ], - "shelfMark": [ - "*OLD 84-90" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Damodaran Nair, P., 1913-" - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83901968" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-90" - }, - { - "type": "nypl:Bnumber", - "value": "10000183" - }, - { - "type": "bf:Lccn", - "value": "83901968" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000131-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100131" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200182" - } - ], - "idOclc": [ - "NYPG001000131-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Kōṭṭayaṃ : Sāhityapṟavarttaka Sahakaraṇasaṅghaṃ : Nāṣanal Bukksṯāḷ, 1982." - ], - "identifier": [ - "urn:bnum:10000183", - "urn:lccn:83901968", - "urn:oclc:NYPG001000131-B", - "urn:undefined:NNSZ00100131", - "urn:undefined:(WaOLN)nyp0200182" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Malayalam language -- Idioms." - ], - "titleDisplay": [ - "Apaśabdabodhini / Pi. Dāmōdarannāyar." - ], - "uri": "b10000183", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000183" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000097", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 84-90" - ], - "identifierV2": [ - { - "value": "*OLD 84-90", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011098930" - } - ], - "physicalLocation": [ - "*OLD 84-90" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011098930" - ], - "idBarcode": [ - "33433011098930" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 84-000090" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000184", - "_score": null, - "_source": { - "extent": [ - "18, 343 p. facsims., ports." - ], - "note": [ - { - "noteType": "Note", - "label": "Reviews of the author's works: p. 16-18.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Singh, Bhagat" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bhāratīya Jñānapīṭha Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yugadrashṭā Bhagata Siṃha aura una ke mrtyuñjaya purakhe." - ], - "shelfMark": [ - "*OKTO 84-164" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sindhu, Virendra, 1940-" - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75901954" - ], - "seriesStatement": [ - "Lokodaya granthamālā, granthaṅka 268" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTO 84-164" - }, - { - "type": "nypl:Bnumber", - "value": "10000184" - }, - { - "type": "bf:Lccn", - "value": "75901954" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000132-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100132" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200183" - } - ], - "idOclc": [ - "NYPG001000132-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[Vārāṇasī] Bhāratīya Jñānapīṭha Prakāśana [1968]" - ], - "identifier": [ - "urn:bnum:10000184", - "urn:lccn:75901954", - "urn:oclc:NYPG001000132-B", - "urn:undefined:NNSZ00100132", - "urn:undefined:(WaOLN)nyp0200183" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Singh, Bhagat." - ], - "titleDisplay": [ - "Yugadrashṭā Bhagata Siṃha aura una ke mrtyuñjaya purakhe. Lekhikā Vīrendra Sindhu. Bhūmikā: Yaśavantarāva Cahvāṇa." - ], - "uri": "b10000184", - "lccClassification": [ - "DS481.S55 S5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Vārāṇasī]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000184" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000098", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTO 84-164" - ], - "identifierV2": [ - { - "value": "*OKTO 84-164", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011049917" - } - ], - "physicalLocation": [ - "*OKTO 84-164" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011049917" - ], - "idBarcode": [ - "33433011049917" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTO 84-000164" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000185", - "_score": null, - "_source": { - "extent": [ - "xiv, 259 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"'Periya Purāṇattil uvamaikaḷʼ eṉṉum āyvuk kaṭṭuraiyiṉai mutukalaippaṭṭat tērviṉ oru pakutiyākat tantuḷḷār. Avvārāyccik kaṭṭuraiyē ... āyvu nūlāka ippoḻutu veḷivarukiṉṟatu.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 255-259.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sankari ; viṟpaṉai urimai, Jeyakumāri Sṭōrs" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Periya purāṇattil uvamaikaḷ" - ], - "shelfMark": [ - "*OLB 84-92" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sankari, A., 1950-" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900433" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-92" - }, - { - "type": "nypl:Bnumber", - "value": "10000185" - }, - { - "type": "bf:Lccn", - "value": "76900433" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000133-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100133" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200184" - } - ], - "idOclc": [ - "NYPG001000133-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Ayinkamam : Sankari ; Nākarkōvil : viṟpaṉai urimai, Jeyakumāri Sṭōrs, 1975." - ], - "identifier": [ - "urn:bnum:10000185", - "urn:lccn:76900433", - "urn:oclc:NYPG001000133-B", - "urn:undefined:NNSZ00100133", - "urn:undefined:(WaOLN)nyp0200184" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Periya purāṇattil uvamaikaḷ / A. Caṅkari." - ], - "uri": "b10000185", - "lccClassification": [ - "PL4758.9.C385 P479" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ayinkamam : Nākarkōvil" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000185" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783814", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-92" - ], - "identifierV2": [ - { - "value": "*OLB 84-92", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061299693" - } - ], - "physicalLocation": [ - "*OLB 84-92" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061299693" - ], - "idBarcode": [ - "33433061299693" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-000092" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000186", - "_score": null, - "_source": { - "extent": [ - "15, 146 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vedic language", - "Vedic language -- Pronunciation", - "Vedic language -- Accents and accentuation" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vaidika Sāhitya Sadana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaidika-svara-bodha." - ], - "shelfMark": [ - "*OKTH 84-163" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Caube, Vrajabihārī, 1940-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "72902691" - ], - "seriesStatement": [ - "Vaidika sāhitya sadana granthamālā, pushpa 2" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTH 84-163" - }, - { - "type": "nypl:Bnumber", - "value": "10000186" - }, - { - "type": "bf:Lccn", - "value": "72902691" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000134-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100134" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200185" - } - ], - "idOclc": [ - "NYPG001000134-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Hośiyārapura, Vaidika Sāhitya Sadana, 1972." - ], - "identifier": [ - "urn:bnum:10000186", - "urn:lccn:72902691", - "urn:oclc:NYPG001000134-B", - "urn:undefined:NNSZ00100134", - "urn:undefined:(WaOLN)nyp0200185" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vedic language -- Pronunciation.", - "Vedic language -- Accents and accentuation." - ], - "titleDisplay": [ - "Vaidika-svara-bodha. Lekhaka Vrajabihārī Caube." - ], - "uri": "b10000186", - "lccClassification": [ - "PK243 .C5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Hośiyārapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000186" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000099", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTH 84-163" - ], - "identifierV2": [ - { - "value": "*OKTH 84-163", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010762189" - } - ], - "physicalLocation": [ - "*OKTH 84-163" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010762189" - ], - "idBarcode": [ - "33433010762189" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTH 84-000163" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000187", - "_score": null, - "_source": { - "extent": [ - "535 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Azărbaĭjanja-Farsja lüghăt [by] Măhămmăd Peĭfun.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "p.[375]-381: Jughrāfī ādlār-nāmhā-yi jughrāfiyāʼī.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "p. [383]-535: Fihrist-i vāzhigān bā āvā'nivīsī-i Āẕarbāyjānī.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian and Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Dictionaries", - "Azerbaijani language -- Dictionaries -- Persian" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Dānishpāyah" - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "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ī" - ], - "shelfMark": [ - "*OOX 84-178" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Payfun, Muḥammad." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OOX 84-178" - }, - { - "type": "nypl:Bnumber", - "value": "10000187" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000135-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100135" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200186" - } - ], - "idOclc": [ - "NYPG001000135-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Tihrān : Nashr-i Dānishpāyah, 1361 [1983]" - ], - "identifier": [ - "urn:bnum:10000187", - "urn:oclc:NYPG001000135-B", - "urn:undefined:NNSZ00100135", - "urn:undefined:(WaOLN)nyp0200186" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Dictionaries -- Persian." - ], - "titleDisplay": [ - "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ī / Muḥammad Payfun." - ], - "uri": "b10000187", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Azărbaĭjanja-Farsja lüghăt." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000187" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000100", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OOX 84-178" - ], - "identifierV2": [ - { - "value": "*OOX 84-178", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001718323" - } - ], - "physicalLocation": [ - "*OOX 84-178" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001718323" - ], - "idBarcode": [ - "33433001718323" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OOX 84-000178" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000188", - "_score": null, - "_source": { - "extent": [ - "160 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bahār Urdū Ākādimī" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Intikhāb-i kalām-i kulliyyāt-i Muntaẓar, (nuskhah-yi Nadvat al-ʻUlamāʼ Lakhav)" - ], - "shelfMark": [ - "*OKTX 84-150" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Muntaẓar Lakhnavī, Nūrulislām, 1769?-1806?" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903706" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Kutub Ḵẖȧnah Nadvat al Ulamaʻ." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 84-150" - }, - { - "type": "nypl:Bnumber", - "value": "10000188" - }, - { - "type": "bf:Lccn", - "value": "74903706" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000136-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100136" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200187" - } - ], - "idOclc": [ - "NYPG001000136-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Paṭnah, Bahār Urdū Ākādimī [1974]" - ], - "identifier": [ - "urn:bnum:10000188", - "urn:lccn:74903706", - "urn:oclc:NYPG001000136-B", - "urn:undefined:NNSZ00100136", - "urn:undefined:(WaOLN)nyp0200187" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Intikhāb-i kalām-i kulliyyāt-i Muntaẓar, (nuskhah-yi Nadvat al-ʻUlamāʼ Lakhav) [Shāʻir] Nūrulislām Muntaẓar Lakhnav̄. Murattabah-yi Shamsī Nadvī." - ], - "uri": "b10000188", - "lccClassification": [ - "PK2198.M874 I58" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paṭnah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000188" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942055", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 84-150" - ], - "identifierV2": [ - { - "value": "*OKTX 84-150", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015458726" - } - ], - "physicalLocation": [ - "*OKTX 84-150" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015458726" - ], - "idBarcode": [ - "33433015458726" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 84-000150" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000189", - "_score": null, - "_source": { - "extent": [ - "5, 227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Dillī Viśvavidyālaya se Pīeca. Ḍī kī upādhi ke lie svīkrta śodha prabandha kā parivartita tathā parivardhita rūpa.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p.[220]-227.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindi language", - "Hindi language -- Vocabulary", - "Hindi language -- Etymology" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Neśanala Pabḷiśiṅga Hāusa" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hindī meṃ deśaja śabda." - ], - "shelfMark": [ - "*OKTH 84-155" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Daḅāsa, Pūrṇasiṃha, 1938-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73903281" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTH 84-155" - }, - { - "type": "nypl:Bnumber", - "value": "10000189" - }, - { - "type": "bf:Lccn", - "value": "73903281" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000137-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100137" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200188" - } - ], - "idOclc": [ - "NYPG001000137-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Dillī, Neśanala Pabḷiśiṅga Hāusa [1972]" - ], - "identifier": [ - "urn:bnum:10000189", - "urn:lccn:73903281", - "urn:oclc:NYPG001000137-B", - "urn:undefined:NNSZ00100137", - "urn:undefined:(WaOLN)nyp0200188" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindi language -- Vocabulary.", - "Hindi language -- Etymology." - ], - "titleDisplay": [ - "Hindī meṃ deśaja śabda. [Lekhaka] Pūrṇasiṃha Ḍabāsa. Bhūmikā Bholānātha Tivārī." - ], - "uri": "b10000189", - "lccClassification": [ - "PK1939 .D24" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000189" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000101", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTH 84-155" - ], - "identifierV2": [ - { - "value": "*OKTH 84-155", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010762171" - } - ], - "physicalLocation": [ - "*OKTH 84-155" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010762171" - ], - "idBarcode": [ - "33433010762171" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTH 84-000155" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000190", - "_score": null, - "_source": { - "extent": [ - "168 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit; introductory matter in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Gītā Presa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1967" - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vidura nīti; Mahābhārata Udyogaparva se." - ], - "shelfMark": [ - "*OKOC 84-137" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "sa 68014141" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOC 84-137" - }, - { - "type": "nypl:Bnumber", - "value": "10000190" - }, - { - "type": "bf:Lccn", - "value": "sa 68014141" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000138-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100138" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200189" - } - ], - "idOclc": [ - "NYPG001000138-B" - ], - "uniformTitle": [ - "Mahābhārata. Udyogaparva Viduranīti." - ], - "dateEndYear": [ - 1967 - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Gorakhapura, Gītā Presa [1966 or 7]" - ], - "identifier": [ - "urn:bnum:10000190", - "urn:lccn:sa 68014141", - "urn:oclc:NYPG001000138-B", - "urn:undefined:NNSZ00100138", - "urn:undefined:(WaOLN)nyp0200189" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Vidura nīti; Mahābhārata Udyogaparva se." - ], - "uri": "b10000190", - "lccClassification": [ - "PK3631 .U32 1966" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Gorakhapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000190" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783815", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKOC 84-137" - ], - "identifierV2": [ - { - "value": "*OKOC 84-137", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058630249" - } - ], - "physicalLocation": [ - "*OKOC 84-137" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058630249" - ], - "idBarcode": [ - "33433058630249" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKOC 84-000137" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000191", - "_score": null, - "_source": { - "extent": [ - "482 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Hindī Krshṇa kāvya.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally presented as the author's thesis, University of Lucknow.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p.[478]-482.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Krishna (Hindu deity) in literature", - "Hindi poetry", - "Hindi poetry -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aśoka Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dvārakālīlāparaka Hindī Krshṇa kāvya." - ], - "shelfMark": [ - "*OKTM 84-130" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Caturvedī, Sudhā, 1944-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74902459" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-130" - }, - { - "type": "nypl:Bnumber", - "value": "10000191" - }, - { - "type": "bf:Lccn", - "value": "74902459" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000139-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100139" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200190" - } - ], - "idOclc": [ - "NYPG001000139-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Lakhanaū, Aśoka Prakāśana [1974]" - ], - "identifier": [ - "urn:bnum:10000191", - "urn:lccn:74902459", - "urn:oclc:NYPG001000139-B", - "urn:undefined:NNSZ00100139", - "urn:undefined:(WaOLN)nyp0200190" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Krishna (Hindu deity) in literature.", - "Hindi poetry -- History and criticism." - ], - "titleDisplay": [ - "Dvārakālīlāparaka Hindī Krshṇa kāvya. Lekhikā Sudhā Caturvedī." - ], - "uri": "b10000191", - "lccClassification": [ - "PK2040 .C313 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lakhanaū" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000191" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942056", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-130" - ], - "identifierV2": [ - { - "value": "*OKTM 84-130", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011093998" - } - ], - "physicalLocation": [ - "*OKTM 84-130" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011093998" - ], - "idBarcode": [ - "33433011093998" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-000130" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000192", - "_score": null, - "_source": { - "extent": [ - "636 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [634]-636.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Indic literature", - "Indic literature -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Granthama" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bhāratīya sāhitya darśana." - ], - "shelfMark": [ - "*OKTM 84-136" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Krishnalal." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "73902642" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-136" - }, - { - "type": "nypl:Bnumber", - "value": "10000192" - }, - { - "type": "bf:Lccn", - "value": "73902642" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000140-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100140" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200191" - } - ], - "idOclc": [ - "NYPG001000140-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Kānapura, Granthama [1973]" - ], - "identifier": [ - "urn:bnum:10000192", - "urn:lccn:73902642", - "urn:oclc:NYPG001000140-B", - "urn:undefined:NNSZ00100140", - "urn:undefined:(WaOLN)nyp0200191" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Indic literature -- History and criticism." - ], - "titleDisplay": [ - "Bhāratīya sāhitya darśana. [Lekhaka] Krshṇalāla Haṃsa." - ], - "uri": "b10000192", - "lccClassification": [ - "PK2903 .K675" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kānapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000192" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942057", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-136" - ], - "identifierV2": [ - { - "value": "*OKTM 84-136", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094004" - } - ], - "physicalLocation": [ - "*OKTM 84-136" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094004" - ], - "idBarcode": [ - "33433011094004" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-000136" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000193", - "_score": null, - "_source": { - "extent": [ - "8, 242, 5 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "No more published.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- History and criticism", - "Poetics" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vyāsabandhu ; prāptisthānam Caukhambā Vidyābhawana]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Abhinava-kāvya-prakāśaḥ" - ], - "shelfMark": [ - "*OKP 84-162" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Vyāsa, Giridharalāla, 1894-" - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "76902375" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-162" - }, - { - "type": "nypl:Bnumber", - "value": "10000193" - }, - { - "type": "bf:Lccn", - "value": "76902375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000141-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100141" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200192" - } - ], - "idOclc": [ - "NYPG001000141-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Udayapura : Vyāsabandhu ; [Vāṛāṇasī : prāptisthānam Caukhambā Vidyābhawana], 1966." - ], - "identifier": [ - "urn:bnum:10000193", - "urn:lccn:76902375", - "urn:oclc:NYPG001000141-B", - "urn:undefined:NNSZ00100141", - "urn:undefined:(WaOLN)nyp0200192" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- History and criticism.", - "Poetics." - ], - "titleDisplay": [ - "Abhinava-kāvya-prakāśaḥ / Vyāsopāhṇena Paṇḍitaśrīgovardhanatanujanuṣā Giridharalālena saṃkalitaḥ." - ], - "uri": "b10000193", - "lccClassification": [ - "PK2916 .V93 1966" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura : [Vāṛāṇasī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm" - ] - }, - "sort": [ - "b10000193" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783816", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-162 v. 1" - ], - "identifierV2": [ - { - "value": "*OKP 84-162 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153416" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OKP 84-162" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153416" - ], - "idBarcode": [ - "33433058153416" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-162 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000194", - "_score": null, - "_source": { - "extent": [ - "147 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Yam. Śēṣācalaṃ; [distributors: Andhra Pradesh Book Distributors, Secunderabad" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hampīkanyalu." - ], - "shelfMark": [ - "*OLC 83-2593" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Calaṃ, 1894-1979." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "77908094" - ], - "seriesStatement": [ - "EMESCO pocket books, 86" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-2593" - }, - { - "type": "nypl:Bnumber", - "value": "10000194" - }, - { - "type": "bf:Lccn", - "value": "77908094" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000142-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100142" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200193" - } - ], - "idOclc": [ - "NYPG001000142-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Macilīpaṭnaṃ, Yam. Śēṣācalaṃ; [distributors: Andhra Pradesh Book Distributors, Secunderabad, 1969]" - ], - "identifier": [ - "urn:bnum:10000194", - "urn:lccn:77908094", - "urn:oclc:NYPG001000142-B", - "urn:undefined:NNSZ00100142", - "urn:undefined:(WaOLN)nyp0200193" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Hampīkanyalu. [Racana] Calaṃ." - ], - "uri": "b10000194", - "lccClassification": [ - "PL4780.9.V4 H3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Macilīpaṭnaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000194" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000102", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLC 83-2593" - ], - "identifierV2": [ - { - "value": "*OLC 83-2593", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004689018" - } - ], - "physicalLocation": [ - "*OLC 83-2593" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004689018" - ], - "idBarcode": [ - "33433004689018" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLC 83-002593" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000195", - "_score": null, - "_source": { - "extent": [ - "116 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vālmīki" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." - ], - "shelfMark": [ - "*OLY 83-2592" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rāmacāmi, Ī. Ve., Tantai Periyār, 1878-1973." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73903633" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-2592" - }, - { - "type": "nypl:Bnumber", - "value": "10000195" - }, - { - "type": "bf:Lccn", - "value": "73903633" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000143-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100143" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200194" - } - ], - "idOclc": [ - "NYPG001000143-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tirucci, Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu [1972]" - ], - "identifier": [ - "urn:bnum:10000195", - "urn:lccn:73903633", - "urn:oclc:NYPG001000143-B", - "urn:undefined:NNSZ00100143", - "urn:undefined:(WaOLN)nyp0200194" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vālmīki." - ], - "titleDisplay": [ - "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu. [Eḻutiyavar] Periyār Ī. Ve. Rā." - ], - "uri": "b10000195", - "lccClassification": [ - "PK3659 .R34 1972" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirucci" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000195" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783817", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-2592" - ], - "identifierV2": [ - { - "value": "*OLY 83-2592", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418526" - } - ], - "physicalLocation": [ - "*OLY 83-2592" - ], - "identifier": [ - "urn:barcode:33433060418526" - ], - "idBarcode": [ - "33433060418526" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-002592" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000196", - "_score": null, - "_source": { - "extent": [ - "96 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "India", - "India -- Politics and government", - "India -- Politics and government -- 1947-" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirāviṭappaṇṇai" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Paṇattōṭṭam." - ], - "shelfMark": [ - "*OLB 83-2591" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "79909527" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2591" - }, - { - "type": "nypl:Bnumber", - "value": "10000196" - }, - { - "type": "bf:Lccn", - "value": "79909527" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000144-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100144" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200195" - } - ], - "idOclc": [ - "NYPG001000144-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tiruccirāppaḷḷi, Tirāviṭappaṇṇai [1969]" - ], - "identifier": [ - "urn:bnum:10000196", - "urn:lccn:79909527", - "urn:oclc:NYPG001000144-B", - "urn:undefined:NNSZ00100144", - "urn:undefined:(WaOLN)nyp0200195" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "India -- Politics and government -- 1947-" - ], - "titleDisplay": [ - "Paṇattōṭṭam. [Eḻutiyavar] C. N. Aṇṇāturai." - ], - "uri": "b10000196", - "lccClassification": [ - "DS480.84 .A76 1969" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tiruccirāppaḷḷi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000196" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783818", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-2591" - ], - "identifierV2": [ - { - "value": "*OLB 83-2591", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061296400" - } - ], - "physicalLocation": [ - "*OLB 83-2591" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061296400" - ], - "idBarcode": [ - "33433061296400" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-002591" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000197", - "_score": null, - "_source": { - "extent": [ - "159 p." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Cilampuc celvar Ma. Po. Ci. avarkaḷatu 69 - vatu piṟanta nāḷ veḷiyīṭu.\"", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Pūṅkoṭi Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tirukkuṟaḷilē kalaipaṟṟik kūṟātatēṉ?" - ], - "shelfMark": [ - "*OLB 83-2587" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Civañāṉam, Ma. Po., 1906-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903607" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2587" - }, - { - "type": "nypl:Bnumber", - "value": "10000197" - }, - { - "type": "bf:Lccn", - "value": "74903607" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000145-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100145" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200196" - } - ], - "idOclc": [ - "NYPG001000145-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Ceṉṉai, Pūṅkoṭi Patippakam [1974]" - ], - "identifier": [ - "urn:bnum:10000197", - "urn:lccn:74903607", - "urn:oclc:NYPG001000145-B", - "urn:undefined:NNSZ00100145", - "urn:undefined:(WaOLN)nyp0200196" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Tirukkuṟaḷilē kalaipaṟṟik kūṟātatēṉ? [Eḻutiyavar] Ma. Po. Civañāṉam." - ], - "uri": "b10000197", - "lccClassification": [ - "PL4758.9.T5 S54" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000197" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783819", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 83-2587" - ], - "identifierV2": [ - { - "value": "*OLB 83-2587", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061296392" - } - ], - "physicalLocation": [ - "*OLB 83-2587" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061296392" - ], - "idBarcode": [ - "33433061296392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 83-002587" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000198", - "_score": null, - "_source": { - "extent": [ - "96 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Si. Vi. Krṣṇā Bukḍipō" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vēmanapadyaratnamulu." - ], - "shelfMark": [ - "*OLC 83-2645" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Vēmana." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "73907881" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-2645" - }, - { - "type": "nypl:Bnumber", - "value": "10000198" - }, - { - "type": "bf:Lccn", - "value": "73907881" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000146-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100146" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200197" - } - ], - "idOclc": [ - "NYPG001000146-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Madarāsu, Si. Vi. Krṣṇā Bukḍipō [1967]" - ], - "identifier": [ - "urn:bnum:10000198", - "urn:lccn:73907881", - "urn:oclc:NYPG001000146-B", - "urn:undefined:NNSZ00100146", - "urn:undefined:(WaOLN)nyp0200197" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Vēmanapadyaratnamulu." - ], - "uri": "b10000198", - "lccClassification": [ - "PL4780.9.V38 V5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Madarāsu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000198" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000103", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLC 83-2645" - ], - "identifierV2": [ - { - "value": "*OLC 83-2645", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004689042" - } - ], - "physicalLocation": [ - "*OLC 83-2645" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004689042" - ], - "idBarcode": [ - "33433004689042" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLC 83-002645" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000199", - "_score": null, - "_source": { - "extent": [ - "32 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sāhitya" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nijera bipakshe." - ], - "shelfMark": [ - "*OKV 83-2643" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Haque, Samsul, 1937-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "sa 65006162" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 83-2643" - }, - { - "type": "nypl:Bnumber", - "value": "10000199" - }, - { - "type": "bf:Lccn", - "value": "sa 65006162" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000147-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100147" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200198" - } - ], - "idOclc": [ - "NYPG001000147-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Kalakātā, Sāhitya [1965]" - ], - "identifier": [ - "urn:bnum:10000199", - "urn:lccn:sa 65006162", - "urn:oclc:NYPG001000147-B", - "urn:undefined:NNSZ00100147", - "urn:undefined:(WaOLN)nyp0200198" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Nijera bipakshe. [Lekhaka] Sāmasula Haka." - ], - "uri": "b10000199", - "lccClassification": [ - "PK1718" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalakātā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000199" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000104", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKV 83-2643" - ], - "identifierV2": [ - { - "value": "*OKV 83-2643", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011439092" - } - ], - "physicalLocation": [ - "*OKV 83-2643" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011439092" - ], - "idBarcode": [ - "33433011439092" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKV 83-002643" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000200", - "_score": null, - "_source": { - "extent": [ - "102 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Assamese.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Laẏārcha Buka Shṭala" - ], - "language": [ - { - "id": "lang:asm", - "label": "Assamese" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nirupāya, nirupāya." - ], - "shelfMark": [ - "*OYE 83-2641" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Dāsa, Yogeśa, 1927-" - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 64006442" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OYE 83-2641" - }, - { - "type": "nypl:Bnumber", - "value": "10000200" - }, - { - "type": "bf:Lccn", - "value": "sa 64006442" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000148-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100148" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200199" - } - ], - "idOclc": [ - "NYPG001000148-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Guwāhāṭī, Laẏārcha Buka Shṭala [1963]" - ], - "identifier": [ - "urn:bnum:10000200", - "urn:lccn:sa 64006442", - "urn:oclc:NYPG001000148-B", - "urn:undefined:NNSZ00100148", - "urn:undefined:(WaOLN)nyp0200199" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Nirupāya, nirupāya. [Likhaka] Yogeśa Dāsa." - ], - "uri": "b10000200", - "lccClassification": [ - "PK1569.D2 N5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Guwāhāṭī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000200" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000105", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OYE 83-2641" - ], - "identifierV2": [ - { - "value": "*OYE 83-2641", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011486549" - } - ], - "physicalLocation": [ - "*OYE 83-2641" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011486549" - ], - "idBarcode": [ - "33433011486549" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OYE 83-002641" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000201", - "_score": null, - "_source": { - "extent": [ - "58 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Plays.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Assamese.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:asm", - "label": "Assamese" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nimātīra māta." - ], - "shelfMark": [ - "*OYE 83-2642" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Das, Kandarpa, 1941-" - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 66006179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OYE 83-2642" - }, - { - "type": "nypl:Bnumber", - "value": "10000201" - }, - { - "type": "bf:Lccn", - "value": "sa 66006179" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000149-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100149" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200200" - } - ], - "idOclc": [ - "NYPG001000149-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[Barapeṭā, 1964]" - ], - "identifier": [ - "urn:bnum:10000201", - "urn:lccn:sa 66006179", - "urn:oclc:NYPG001000149-B", - "urn:undefined:NNSZ00100149", - "urn:undefined:(WaOLN)nyp0200200" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Nimātīra māta. [Likhaka] Kandarpa Dāsa." - ], - "uri": "b10000201", - "lccClassification": [ - "PK1569.D223 N5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Barapeṭā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000201" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000106", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OYE 83-2642" - ], - "identifierV2": [ - { - "value": "*OYE 83-2642", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010171373" - } - ], - "physicalLocation": [ - "*OYE 83-2642" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010171373" - ], - "idBarcode": [ - "33433010171373" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OYE 83-002642" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000202", - "_score": null, - "_source": { - "extent": [ - "2 v." - ], - "note": [ - { - "noteType": "Note", - "label": "Title page of v.2 bears subtitle only.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Arabic literature", - "Arabic literature -- Iraq", - "Arabic literature -- Iraq -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktabat al-Andalus" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Fann al-Qaṣaṣī fī al-adab al-ʻIrāqī al-ḥadīth" - ], - "shelfMark": [ - "*OEM 83-2834" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ṭālib, ʻUmar." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72218369" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OEM 83-2834" - }, - { - "type": "nypl:Bnumber", - "value": "10000202" - }, - { - "type": "bf:Lccn", - "value": "72218369" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000150-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100150" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200201" - } - ], - "idOclc": [ - "NYPG001000150-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Baghdād, Maktabat al-Andalus, 1971." - ], - "identifier": [ - "urn:bnum:10000202", - "urn:lccn:72218369", - "urn:oclc:NYPG001000150-B", - "urn:undefined:NNSZ00100150", - "urn:undefined:(WaOLN)nyp0200201" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Arabic literature -- Iraq -- History and criticism." - ], - "titleDisplay": [ - "al-Fann al-Qaṣaṣī fī al-adab al-ʻIrāqī al-ḥadīth [taʼlīf]ʻUmar al-Ṭālib." - ], - "uri": "b10000202", - "lccClassification": [ - "PJ8038 .T35" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "titleAlt": [ - "Masraḥīyah al-ʻArabīyah fī al-ʻIrāq." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Juzʼ 1. al-Riwāyah al-ʻArabīyah fī al-Irāq.-- Juzʼ 2. al-Masraḥīyah al-ʻArabīyah fī al-ʻIrāq." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000202" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000107", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OEM 83-2834" - ], - "identifierV2": [ - { - "value": "*OEM 83-2834", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002039166" - } - ], - "physicalLocation": [ - "*OEM 83-2834" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002039166" - ], - "idBarcode": [ - "33433002039166" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OEM 83-002834" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json b/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json index 4b226364..1ffde7d8 100644 --- a/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json +++ b/test/fixtures/query-7317ebe654dd7a589f29dcd1b090ebde.json @@ -1,1270 +1,1318 @@ { - "took": 10, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.920464, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b14937001", - "_score": 14.920464, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Kunst-blatt. Stuttgart, 1816-1849.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. G. Cotta'sche buchhandlung." - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1" - ], - "createdYear": [ - 1855 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Morgenblatt für gebildete leser." - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1855" - ], - "idLccn": [ - "cau08001961" - ], - "numElectronicResources": [ - 88 - ], - "dateStartYear": [ - 1855 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DF+ (Morgenblatt für gebildete Leser)" - }, - { - "type": "nypl:Bnumber", - "value": "14937001" - }, - { - "type": "bf:Lccn", - "value": "cau08001961" - }, - { - "type": "nypl:Oclc", - "value": "1608345" - }, - { - "type": "bf:Identifier", - "value": "0494254" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)ret0001042" - } - ], - "idOclc": [ - "1608345" - ], - "dateEndYear": [ - 1 - ], - "updatedAt": 1671729582968, - "publicationStatement": [ - "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." - ], - "identifier": [ - "urn:bnum:14937001", - "urn:lccn:cau08001961", - "urn:oclc:1608345", - "urn:undefined:0494254", - "urn:undefined:(WaOLN)ret0001042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1855" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Morgenblatt für gebildete leser." - ], - "uri": "b14937001", - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Stuttgart, Tübingen [etc.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi14937001-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899526k" - }, - { - "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899527i" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899528g" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899529e" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899530t" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899531r" - }, - { - "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", - "url": "http://hdl.handle.net/2027/umn.31951001899532p" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899534l" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899535j" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899536h" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899537f" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899538d" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899539b" - }, - { - "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", - "url": "http://hdl.handle.net/2027/umn.31951001899541o" - }, - { - "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", - "url": "http://hdl.handle.net/2027/umn.31951001899542m" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899505s" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899506q" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899544i" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899545g" - }, - { - "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", - "url": "http://hdl.handle.net/2027/umn.31951001899547c" - }, - { - "label": "Full text available via HathiTrust - jahrg.22 (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899548a" - }, - { - "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899620s" - }, - { - "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", - "url": "http://hdl.handle.net/2027/umn.31951001899550n" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899551l" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899552j" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899624k" - }, - { - "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", - "url": "http://hdl.handle.net/2027/umn.31951001899554f" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899555d" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899556b" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995587" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995595" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899560k" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899561i" - }, - { - "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", - "url": "http://hdl.handle.net/2027/umn.31951001899563e" - }, - { - "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", - "url": "http://hdl.handle.net/2027/umn.31951001899641k" - }, - { - "label": "Full text available via HathiTrust - jahrg.33 (1839)", - "url": "http://hdl.handle.net/2027/umn.319510018995668" - }, - { - "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", - "url": "http://hdl.handle.net/2027/umn.31951001899642i" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899645c" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899646a" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", - "url": "http://hdl.handle.net/2027/umn.319510018995692" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", - "url": "http://hdl.handle.net/2027/umn.31951001899571f" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899572d" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899573b" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", - "url": "http://hdl.handle.net/2027/umn.319510018995749" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", - "url": "http://hdl.handle.net/2027/umn.31951p01107664f" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", - "url": "http://hdl.handle.net/2027/umn.319510018995765" - }, - { - "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", - "url": "http://hdl.handle.net/2027/umn.319510018995781" - }, - { - "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", - "url": "http://hdl.handle.net/2027/umn.31951001899509k" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", - "url": "http://hdl.handle.net/2027/umn.31951001899582a" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", - "url": "http://hdl.handle.net/2027/umn.319510018995838" - }, - { - "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", - "url": "http://hdl.handle.net/2027/umn.31951001899589w" - }, - { - "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", - "url": "http://hdl.handle.net/2027/umn.31951001899590b" - }, - { - "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", - "url": "http://hdl.handle.net/2027/umn.31951001899599t" - }, - { - "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", - "url": "http://hdl.handle.net/2027/umn.31951001899512v" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899600y" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899601w" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899602u" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899603s" - }, - { - "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", - "url": "http://hdl.handle.net/2027/umn.31951001899605o" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899606m" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899607k" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899608i" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899609g" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899610v" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899611t" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899612r" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899613p" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899614n" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899615l" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899616j" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899617h" - }, - { - "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", - "url": "http://hdl.handle.net/2027/umn.31951001899619d" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899513t" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899514r" - }, - { - "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", - "url": "http://hdl.handle.net/2027/umn.31951001899516n" - }, - { - "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", - "url": "http://hdl.handle.net/2027/umn.31951001899521u" - }, - { - "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054677" - }, - { - "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054701" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054743" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054768" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054776" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054800" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054818" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054826" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054834" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054842" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054859" - }, - { - "label": "Full text available via HathiTrust - vol.40 (1846)", - "url": "http://hdl.handle.net/2027/njp.32101064488156" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i14937001-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } + "body": { + "took": 75, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.011845, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.011845, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1" + ], + "createdYear": [ + 1855 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "idOclc": [ + "1608345" + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1671729582968, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:bnum:14937001", + "urn:lccn:cau08001961", + "urn:oclc:1608345", + "urn:undefined:0494254", + "urn:undefined:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] }, - "allItems": { - "hits": { - "total": 4, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - } - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi14937001-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i14937001-e", + "formatLiteral": [ + "Text" + ] + } } - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + ] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] - } - } - ] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097964930" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433097964930" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "formatLiteral": [ - "Text" - ] + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } }, - "sort": [ - null - ] - } - ] + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 5 + } + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 3 - }, - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "23118", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14937001\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"terms\":{\"items.formatLiteral\":[\"Text\",\"anotherformat\"]}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1127" + }, + "timeout": 30000 + }, + "options": {}, + "id": 21 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-74aaa61ebf97366fbad1553c74794c4c.json b/test/fixtures/query-74aaa61ebf97366fbad1553c74794c4c.json new file mode 100644 index 00000000..bf2f76f3 --- /dev/null +++ b/test/fixtures/query-74aaa61ebf97366fbad1553c74794c4c.json @@ -0,0 +1,13972 @@ +{ + "body": { + "took": 1929, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 19083597, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000005", + "_score": null, + "_source": { + "extent": [ + "1 score (43 p.) + 1 part (12 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Acc. arr. for piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Soch. 22\"--Caption.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: 11049.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Concertos (Violin)", + "Concertos (Violin) -- Solo with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muzyka" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" + ], + "shelfMark": [ + "JMF 83-336" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wieniawski, Henri, 1835-1880." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-336" + }, + { + "type": "nypl:Bnumber", + "value": "10000005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-C" + }, + { + "type": "bf:Identifier", + "value": "11049. Muzyka" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100551" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200004" + } + ], + "idOclc": [ + "NYPG001000001-C" + ], + "uniformTitle": [ + "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Moskva : Muzyka, 1980." + ], + "identifier": [ + "urn:bnum:10000005", + "urn:oclc:NYPG001000001-C", + "urn:undefined:11049. Muzyka", + "urn:undefined:NNSZ00100551", + "urn:undefined:(WaOLN)nyp0200004" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Concertos (Violin) -- Solo with piano." + ], + "titleDisplay": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." + ], + "uri": "b10000005", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Moskva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Concertos, no. 2, op. 22" + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10000005" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-336" + ], + "identifierV2": [ + { + "value": "JMF 83-336", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032711909" + } + ], + "physicalLocation": [ + "JMF 83-336" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032711909" + ], + "idBarcode": [ + "33433032711909" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000336" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000007", + "_score": null, + "_source": { + "extent": [ + "14 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 7:35.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: Z.8917.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Guitar music", + "Guitar", + "Guitar -- Studies and exercises" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editio Musica" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Due studi per chitarra" + ], + "shelfMark": [ + "JMG 83-276" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Patachich, Iván." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-276" + }, + { + "type": "nypl:Bnumber", + "value": "10000007" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-C" + }, + { + "type": "bf:Identifier", + "value": "Z.8917. Editio Musica" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100552" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200006" + } + ], + "idOclc": [ + "NYPG001000002-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Budapest : Editio Musica, c1981." + ], + "identifier": [ + "urn:bnum:10000007", + "urn:oclc:NYPG001000002-C", + "urn:undefined:Z.8917. Editio Musica", + "urn:undefined:NNSZ00100552", + "urn:undefined:(WaOLN)nyp0200006" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Guitar music.", + "Guitar -- Studies and exercises." + ], + "titleDisplay": [ + "Due studi per chitarra / Patachich Iván." + ], + "uri": "b10000007", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Budapest" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-276" + ], + "identifierV2": [ + { + "value": "JMG 83-276", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883591" + } + ], + "physicalLocation": [ + "JMG 83-276" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883591" + ], + "idBarcode": [ + "33433032883591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000276" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000009", + "_score": null, + "_source": { + "extent": [ + "30 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Edition Peters Nr. 5489.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: E.P. 13028.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Edition Peters ; C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miniaturen II : 13 kleine Klavierstücke" + ], + "shelfMark": [ + "JMG 83-278" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Golle, Jürgen, 1942-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-278" + }, + { + "type": "nypl:Bnumber", + "value": "10000009" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters Nr. 5489 Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "E.P. 13028. Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100553" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200008" + } + ], + "idOclc": [ + "NYPG001000003-C" + ], + "uniformTitle": [ + "Miniaturen, no. 2" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000009", + "urn:oclc:NYPG001000003-C", + "urn:undefined:Edition Peters Nr. 5489 Edition Peters", + "urn:undefined:E.P. 13028. Edition Peters", + "urn:undefined:NNSZ00100553", + "urn:undefined:(WaOLN)nyp0200008" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." + ], + "uri": "b10000009", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig : New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen, no. 2" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000009" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-278" + ], + "identifierV2": [ + { + "value": "JMG 83-278", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883617" + } + ], + "physicalLocation": [ + "JMG 83-278" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883617" + ], + "idBarcode": [ + "33433032883617" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000278" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000011", + "_score": null, + "_source": { + "extent": [ + "46 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Boeijenga" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1982" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Passie en pasen : suite voor orgel, opus 50" + ], + "shelfMark": [ + "JMG 83-279" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Berg, Jan J. van den." + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-279" + }, + { + "type": "nypl:Bnumber", + "value": "10000011" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-C" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200010" + } + ], + "idOclc": [ + "NYPG001000004-C" + ], + "dateEndYear": [ + 1982 + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." + ], + "identifier": [ + "urn:bnum:10000011", + "urn:oclc:NYPG001000004-C", + "urn:undefined:(WaOLN)nyp0200010" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music." + ], + "titleDisplay": [ + "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." + ], + "uri": "b10000011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Sneek [Netherlands]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-279" + ], + "identifierV2": [ + { + "value": "JMG 83-279", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883625" + } + ], + "physicalLocation": [ + "JMG 83-279" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883625" + ], + "idBarcode": [ + "33433032883625" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000279" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000013", + "_score": null, + "_source": { + "extent": [ + "32 p. of music : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Popular music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Arr. for piano with chord symbols; superlinear German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- Germany (East)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harth Musik Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Disko Treff 1 : Klavier." + ], + "shelfMark": [ + "JMF 83-366" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-366" + }, + { + "type": "nypl:Bnumber", + "value": "10000013" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100555" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200012" + } + ], + "idOclc": [ + "NYPG001000005-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Leipzig : Harth Musik Verlag, c1980." + ], + "identifier": [ + "urn:bnum:10000013", + "urn:oclc:NYPG001000005-C", + "urn:undefined:NNSZ00100555", + "urn:undefined:(WaOLN)nyp0200012" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- Germany (East)" + ], + "titleDisplay": [ + "Disko Treff 1 : Klavier." + ], + "uri": "b10000013", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Disko Treff eins." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000013" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-366" + ], + "identifierV2": [ + { + "value": "JMF 83-366", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032712204" + } + ], + "physicalLocation": [ + "JMF 83-366" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032712204" + ], + "idBarcode": [ + "33433032712204" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000366" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000015", + "_score": null, + "_source": { + "extent": [ + "25 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For organ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"A McAfee Music Publication.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: DM 220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Belwin-Mills" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suite no. 1 : 1977" + ], + "shelfMark": [ + "JNG 83-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hampton, Calvin." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JNG 83-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-C" + }, + { + "type": "bf:Identifier", + "value": "DM 220. Belwin-Mills" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100556" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200014" + } + ], + "idOclc": [ + "NYPG001000006-C" + ], + "uniformTitle": [ + "Suite, organ, no. 1" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Melville, NY : Belwin-Mills, [1980?]" + ], + "identifier": [ + "urn:bnum:10000015", + "urn:oclc:NYPG001000006-C", + "urn:undefined:DM 220. Belwin-Mills", + "urn:undefined:NNSZ00100556", + "urn:undefined:(WaOLN)nyp0200014" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)" + ], + "titleDisplay": [ + "Suite no. 1 : 1977 / Calvin Hampton." + ], + "uri": "b10000015", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Melville, NY" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Suite, no. 1" + ], + "tableOfContents": [ + "Fanfares -- Antiphon -- Toccata." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000015" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000017", + "_score": null, + "_source": { + "extent": [ + "1 score (17 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For baritone and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Words printed also as text.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 3:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbière, Tristan, 1845-1875", + "Corbière, Tristan, 1845-1875 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lettre du Mexique : pour baryton et piano, 1942" + ], + "shelfMark": [ + "JMG 83-395" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Escher, Rudolf." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Corbière, Tristan, 1845-1875." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-395" + }, + { + "type": "nypl:Bnumber", + "value": "10000017" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100557" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200016" + } + ], + "idOclc": [ + "NYPG001000007-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Amsterdam : Donemus, c1981." + ], + "identifier": [ + "urn:bnum:10000017", + "urn:oclc:NYPG001000007-C", + "urn:undefined:NNSZ00100557", + "urn:undefined:(WaOLN)nyp0200016" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbière, Tristan, 1845-1875 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." + ], + "uri": "b10000017", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000017" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-395" + ], + "identifierV2": [ + { + "value": "JMG 83-395", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032735007" + } + ], + "physicalLocation": [ + "JMG 83-395" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032735007" + ], + "idBarcode": [ + "33433032735007" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000395" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000019", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: M 18.487.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Waltzes (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zwölf Walzer und ein Epilog : für Klavier" + ], + "shelfMark": [ + "JMG 83-111" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Benary, Peter." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-111" + }, + { + "type": "nypl:Bnumber", + "value": "10000019" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-C" + }, + { + "type": "bf:Identifier", + "value": "Möseler M 18.487." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200018" + } + ], + "idOclc": [ + "NYPG001000008-C" + ], + "uniformTitle": [ + "Walzer und ein Epilog" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000019", + "urn:oclc:NYPG001000008-C", + "urn:undefined:Möseler M 18.487.", + "urn:undefined:NNSZ00100558", + "urn:undefined:(WaOLN)nyp0200018" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Waltzes (Piano)" + ], + "titleDisplay": [ + "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." + ], + "uri": "b10000019", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Walzer und ein Epilog", + "Walzer und ein Epilog." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000019" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-111" + ], + "identifierV2": [ + { + "value": "JMG 83-111", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845053" + } + ], + "physicalLocation": [ + "JMG 83-111" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845053" + ], + "idBarcode": [ + "33433032845053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000111" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000021", + "_score": null, + "_source": { + "extent": [ + "1 score (51 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: NM 384.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Orchestral music", + "Orchestral music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Neue Musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aurora : sinfonischer Prolog : Partitur" + ], + "shelfMark": [ + "JMG 83-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Weitzendorf, Heinz." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000021" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-C" + }, + { + "type": "bf:Identifier", + "value": "NM 384. Verlag Neue Musik" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100559" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200020" + } + ], + "idOclc": [ + "NYPG001000009-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Berlin : Verlag Neue Musik, c1978." + ], + "identifier": [ + "urn:bnum:10000021", + "urn:oclc:NYPG001000009-C", + "urn:undefined:NM 384. Verlag Neue Musik", + "urn:undefined:NNSZ00100559", + "urn:undefined:(WaOLN)nyp0200020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Orchestral music -- Scores." + ], + "titleDisplay": [ + "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." + ], + "uri": "b10000021", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000021" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-113" + ], + "identifierV2": [ + { + "value": "JMG 83-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845079" + } + ], + "physicalLocation": [ + "JMG 83-113" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845079" + ], + "idBarcode": [ + "33433032845079" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000023", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (18 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For band or wind ensemble.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Based on the composer's Veni creator spiritus.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: KC913.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Band music", + "Band music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shawnee Press" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Musica sacra" + ], + "shelfMark": [ + "JMF 83-38" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zaninelli, Luigi." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-38" + }, + { + "type": "nypl:Bnumber", + "value": "10000023" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-C" + }, + { + "type": "bf:Identifier", + "value": "KC913 Shawnee Press" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100560" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200022" + } + ], + "idOclc": [ + "NYPG001000010-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Delaware Water Gap, Pa. : Shawnee Press, c1979." + ], + "identifier": [ + "urn:bnum:10000023", + "urn:oclc:NYPG001000010-C", + "urn:undefined:KC913 Shawnee Press", + "urn:undefined:NNSZ00100560", + "urn:undefined:(WaOLN)nyp0200022" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Band music -- Scores." + ], + "titleDisplay": [ + "Musica sacra / Luigi Zaninelli." + ], + "uri": "b10000023", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delaware Water Gap, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000023" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-38" + ], + "identifierV2": [ + { + "value": "JMF 83-38", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709028" + } + ], + "physicalLocation": [ + "JMF 83-38" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709028" + ], + "idBarcode": [ + "33433032709028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000038" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000025", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei Sonatinen für Klavier" + ], + "shelfMark": [ + "JMF 83-107" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stockmeier, Wolfgang." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-107" + }, + { + "type": "nypl:Bnumber", + "value": "10000025" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100561" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200024" + } + ], + "idOclc": [ + "NYPG001000011-C" + ], + "uniformTitle": [ + "Sonatinas, piano" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000025", + "urn:oclc:NYPG001000011-C", + "urn:undefined:NNSZ00100561", + "urn:undefined:(WaOLN)nyp0200024" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Drei Sonatinen für Klavier / Wolfgang Stockmeier." + ], + "uri": "b10000025", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatinas" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000025" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-107" + ], + "identifierV2": [ + { + "value": "JMF 83-107", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709697" + } + ], + "physicalLocation": [ + "JMF 83-107" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709697" + ], + "idBarcode": [ + "33433032709697" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000107" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000027", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Violin)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei kleine Sonaten : für Violine solo" + ], + "shelfMark": [ + "JMF 83-95" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Köhler, Friedemann." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 172" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-95" + }, + { + "type": "nypl:Bnumber", + "value": "10000027" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100562" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200026" + } + ], + "idOclc": [ + "NYPG001000012-C" + ], + "uniformTitle": [ + "Kleine Sonaten, violin" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Wolfenbüttel : Möseler Verlag, c1979." + ], + "identifier": [ + "urn:bnum:10000027", + "urn:oclc:NYPG001000012-C", + "urn:undefined:NNSZ00100562", + "urn:undefined:(WaOLN)nyp0200026" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Violin)" + ], + "titleDisplay": [ + "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." + ], + "uri": "b10000027", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kleine Sonaten" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000027" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-95" + ], + "identifierV2": [ + { + "value": "JMF 83-95", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709572" + } + ], + "physicalLocation": [ + "JMF 83-95" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709572" + ], + "idBarcode": [ + "33433032709572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000095" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000029", + "_score": null, + "_source": { + "extent": [ + "16 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: 29589.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Organ music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Hansen ; Distribution, Magnamusic-Baton" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cruor : for organ solo, 1977" + ], + "shelfMark": [ + "JMF 83-93" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lorentzen, Bent." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82771131" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "nypl:Bnumber", + "value": "10000029" + }, + { + "type": "bf:Lccn", + "value": "82771131" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-C" + }, + { + "type": "bf:Identifier", + "value": "Wilhelm Hansen edition no. 4372." + }, + { + "type": "bf:Identifier", + "value": "29589." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100563" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200028" + } + ], + "idOclc": [ + "NYPG001000013-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." + ], + "identifier": [ + "urn:bnum:10000029", + "urn:lccn:82771131", + "urn:oclc:NYPG001000013-C", + "urn:undefined:Wilhelm Hansen edition no. 4372.", + "urn:undefined:29589.", + "urn:undefined:NNSZ00100563", + "urn:undefined:(WaOLN)nyp0200028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Organ music." + ], + "titleDisplay": [ + "Cruor : for organ solo, 1977 / B. Lorentzen." + ], + "uri": "b10000029", + "lccClassification": [ + "M11 .L" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Copenhagen ; New York : [s.l.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-93" + ], + "identifierV2": [ + { + "value": "JMF 83-93", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" + } + ], + "physicalLocation": [ + "JMF 83-93" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709556" + ], + "idBarcode": [ + "33433032709556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000093" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000031", + "_score": null, + "_source": { + "extent": [ + "21 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Müller" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Neun Miniaturen : für Klavier : op. 52" + ], + "shelfMark": [ + "JMG 83-17" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Petersen, Wilhelm, 1890-1957." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-17" + }, + { + "type": "nypl:Bnumber", + "value": "10000031" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-C" + }, + { + "type": "bf:Identifier", + "value": "W. Müller WM 1713 SM." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100564" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200030" + } + ], + "idOclc": [ + "NYPG001000014-C" + ], + "uniformTitle": [ + "Miniaturen" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Heidelberg : W. Müller, c1979." + ], + "identifier": [ + "urn:bnum:10000031", + "urn:oclc:NYPG001000014-C", + "urn:undefined:W. Müller WM 1713 SM.", + "urn:undefined:NNSZ00100564", + "urn:undefined:(WaOLN)nyp0200030" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." + ], + "uri": "b10000031", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Heidelberg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen", + "Miniaturen." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-17" + ], + "identifierV2": [ + { + "value": "JMG 83-17", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841631" + } + ], + "physicalLocation": [ + "JMG 83-17" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841631" + ], + "idBarcode": [ + "33433032841631" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000033", + "_score": null, + "_source": { + "extent": [ + "1 score (20 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For voice and organ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs (Medium voice) with organ", + "Psalms (Music)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Agápe" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Psalm settings" + ], + "shelfMark": [ + "JMG 83-59" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nelhybel, Vaclav." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-59" + }, + { + "type": "nypl:Bnumber", + "value": "10000033" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100565" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200032" + } + ], + "idOclc": [ + "NYPG001000015-C" + ], + "updatedAt": 1689901710981, + "publicationStatement": [ + "Carol Stream, Ill. : Agápe, c1981." + ], + "identifier": [ + "urn:bnum:10000033", + "urn:oclc:NYPG001000015-C", + "urn:undefined:NNSZ00100565", + "urn:undefined:(WaOLN)nyp0200032" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs (Medium voice) with organ.", + "Psalms (Music)" + ], + "titleDisplay": [ + "Psalm settings / Vaclav Nelhybel." + ], + "uri": "b10000033", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Carol Stream, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000033" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-59" + ], + "identifierV2": [ + { + "value": "JMG 83-59", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842035" + } + ], + "physicalLocation": [ + "JMG 83-59" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842035" + ], + "idBarcode": [ + "33433032842035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000059" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000035", + "_score": null, + "_source": { + "extent": [ + "22 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Suite.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 12:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Serenade voor piano : 1980" + ], + "shelfMark": [ + "JMG 83-6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kasbergen, Marinus, 1936-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-6" + }, + { + "type": "nypl:Bnumber", + "value": "10000035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100566" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200034" + } + ], + "idOclc": [ + "NYPG001000016-C" + ], + "uniformTitle": [ + "Serenade, piano" + ], + "updatedAt": 1689901710976, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000035", + "urn:oclc:NYPG001000016-C", + "urn:undefined:NNSZ00100566", + "urn:undefined:(WaOLN)nyp0200034" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Piano)" + ], + "titleDisplay": [ + "Serenade voor piano : 1980 / Marinus Kasbergen." + ], + "uri": "b10000035", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Serenade" + ], + "tableOfContents": [ + "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000035" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-6" + ], + "identifierV2": [ + { + "value": "JMG 83-6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841490" + } + ], + "physicalLocation": [ + "JMG 83-6" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841490" + ], + "idBarcode": [ + "33433032841490" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000037", + "_score": null, + "_source": { + "extent": [ + "13a p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 15:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Guitar)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Eight studies for guitar : in form of a suite : 1979" + ], + "shelfMark": [ + "JMG 83-5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hekster, Walter." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-5" + }, + { + "type": "nypl:Bnumber", + "value": "10000037" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200036" + } + ], + "idOclc": [ + "NYPG001000017-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000037", + "urn:oclc:NYPG001000017-C", + "urn:undefined:NNSZ00100567", + "urn:undefined:(WaOLN)nyp0200036" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Guitar)" + ], + "titleDisplay": [ + "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." + ], + "uri": "b10000037", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000037" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-5" + ], + "identifierV2": [ + { + "value": "JMG 83-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841482" + } + ], + "physicalLocation": [ + "JMG 83-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841482" + ], + "idBarcode": [ + "33433032841482" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000005" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000039", + "_score": null, + "_source": { + "extent": [ + "49 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five sonatas for pianoforte" + ], + "shelfMark": [ + "JMG 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hässler, Johann Wilhelm, 1747-1822." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Oberdoerffer, Fritz." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000039" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters no. 66799. C.F. Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200038" + } + ], + "idOclc": [ + "NYPG001000018-C" + ], + "uniformTitle": [ + "Sonatas, piano. Selections" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000039", + "urn:oclc:NYPG001000018-C", + "urn:undefined:Edition Peters no. 66799. C.F. Peters", + "urn:undefined:NNSZ00100568", + "urn:undefined:(WaOLN)nyp0200038" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." + ], + "uri": "b10000039", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatas" + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-66" + ], + "identifierV2": [ + { + "value": "JMG 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842100" + } + ], + "physicalLocation": [ + "JMG 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842100" + ], + "idBarcode": [ + "33433032842100" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000041", + "_score": null, + "_source": { + "extent": [ + "1 score (23 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 5 clarinets.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Woodwind quintets (Clarinets (5))", + "Woodwind quintets (Clarinets (5)) -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Primavera" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Encounter" + ], + "shelfMark": [ + "JMF 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Usher, Julia." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "81770739" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000041" + }, + { + "type": "bf:Lccn", + "value": "81770739" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100569" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200040" + } + ], + "idOclc": [ + "NYPG001000019-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "London : Primavera, c1980." + ], + "identifier": [ + "urn:bnum:10000041", + "urn:lccn:81770739", + "urn:oclc:NYPG001000019-C", + "urn:undefined:NNSZ00100569", + "urn:undefined:(WaOLN)nyp0200040" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwind quintets (Clarinets (5)) -- Scores." + ], + "titleDisplay": [ + "Encounter / Julia Usher." + ], + "uri": "b10000041", + "lccClassification": [ + "M557.2.U8 E5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Greeting -- Circular argument -- Escape." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942042", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-66" + ], + "identifierV2": [ + { + "value": "JMF 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" + } + ], + "physicalLocation": [ + "JMF 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709291" + ], + "idBarcode": [ + "33433032709291" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000043", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (28 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 5:00-6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: D.15 579.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Wind ensembles", + "Wind ensembles -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Doblinger" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Capriccio : für 10 Blasinstrumente" + ], + "shelfMark": [ + "JMC 83-9" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Eröd, Iván." + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Doblingers Studienpartituren ; Stp. 410" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 83-9" + }, + { + "type": "nypl:Bnumber", + "value": "10000043" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-C" + }, + { + "type": "bf:Identifier", + "value": "Stp. 410 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "D.15 579 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200042" + } + ], + "idOclc": [ + "NYPG001000020-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wien : Verlag Doblinger, c1980." + ], + "identifier": [ + "urn:bnum:10000043", + "urn:oclc:NYPG001000020-C", + "urn:undefined:Stp. 410 Verlag Doblinger", + "urn:undefined:D.15 579 Verlag Doblinger", + "urn:undefined:NNSZ00100570", + "urn:undefined:(WaOLN)nyp0200042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Wind ensembles -- Scores." + ], + "titleDisplay": [ + "Capriccio : für 10 Blasinstrumente / Iván Eröd." + ], + "uri": "b10000043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wien" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMC 83-9" + ], + "identifierV2": [ + { + "value": "JMC 83-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004744128" + } + ], + "physicalLocation": [ + "JMC 83-9" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433004744128" + ], + "idBarcode": [ + "33433004744128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMC 83-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000044", + "_score": null, + "_source": { + "extent": [ + "[99] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ngawang Sopa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77901316" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" + }, + { + "type": "nypl:Bnumber", + "value": "10000044" + }, + { + "type": "bf:Lccn", + "value": "77901316" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100021" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200043" + } + ], + "idOclc": [ + "NYPG001000021-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Ngawang Sopa, 1976." + ], + "identifier": [ + "urn:bnum:10000044", + "urn:lccn:77901316", + "urn:oclc:NYPG001000021-B", + "urn:undefined:NNSZ00100021", + "urn:undefined:(WaOLN)nyp0200043" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." + ], + "uri": "b10000044", + "lccClassification": [ + "BQ942.Y367 R47 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000044" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000011", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2361" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2361", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080645" + } + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080645" + ], + "idBarcode": [ + "33433015080645" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002361" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000045", + "_score": null, + "_source": { + "extent": [ + "12 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Violin music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sole selling agents, Or-Tav" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Thoughts & feelings : for violin solo" + ], + "shelfMark": [ + "JMG 82-688" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stutschewsky, Joachim, 1891-1982." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "80770813" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 82-688" + }, + { + "type": "nypl:Bnumber", + "value": "10000045" + }, + { + "type": "bf:Lccn", + "value": "80770813" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100571" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200044" + } + ], + "idOclc": [ + "NYPG001000021-C" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Tel-Aviv : Sole selling agents, Or-Tav, c1979." + ], + "identifier": [ + "urn:bnum:10000045", + "urn:lccn:80770813", + "urn:oclc:NYPG001000021-C", + "urn:undefined:NNSZ00100571", + "urn:undefined:(WaOLN)nyp0200044" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Violin music." + ], + "titleDisplay": [ + "Thoughts & feelings : for violin solo / Joachim Stutschewsky." + ], + "uri": "b10000045", + "lccClassification": [ + "M42 .S" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tel-Aviv" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000045" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942043", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 82-688" + ], + "identifierV2": [ + { + "value": "JMG 82-688", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032707568" + } + ], + "physicalLocation": [ + "JMG 82-688" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032707568" + ], + "idBarcode": [ + "33433032707568" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 82-000688" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000046", + "_score": null, + "_source": { + "extent": [ + "[83] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kye rdor rnam bśad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", + "Tripiṭaka.", + "Tripiṭaka. -- Commentaries", + "Sa-skya-pa lamas", + "Sa-skya-pa lamas -- Tibet", + "Sa-skya-pa lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trayang and Jamyang Samten" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900893" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, + { + "type": "nypl:Bnumber", + "value": "10000046" + }, + { + "type": "bf:Lccn", + "value": "77900893" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100022" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200045" + } + ], + "idOclc": [ + "NYPG001000022-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Trayang and Jamyang Samten, 1976." + ], + "identifier": [ + "urn:bnum:10000046", + "urn:lccn:77900893", + "urn:oclc:NYPG001000022-B", + "urn:undefined:NNSZ00100022", + "urn:undefined:(WaOLN)nyp0200045" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", + "Tripiṭaka. -- Commentaries.", + "Sa-skya-pa lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." + ], + "uri": "b10000046", + "lccClassification": [ + "BG974.0727 T75" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "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" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000046" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2362", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080413" + } + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080413" + ], + "idBarcode": [ + "33433015080413" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002362" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000047", + "_score": null, + "_source": { + "extent": [ + "1 score (30 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 15 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vocalises (High voice) with instrumental ensemble", + "Vocalises (High voice) with instrumental ensemble -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" + ], + "shelfMark": [ + "JMG 83-79" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "81770634" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-79" + }, + { + "type": "nypl:Bnumber", + "value": "10000047" + }, + { + "type": "bf:Lccn", + "value": "81770634" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200046" + } + ], + "idOclc": [ + "NYPG001000022-C" + ], + "uniformTitle": [ + "Vocalise, soprano, instrumental ensemble, op. 38" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." + ], + "identifier": [ + "urn:bnum:10000047", + "urn:lccn:81770634", + "urn:oclc:NYPG001000022-C", + "urn:undefined:NNSZ00100572", + "urn:undefined:(WaOLN)nyp0200046" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vocalises (High voice) with instrumental ensemble -- Scores." + ], + "titleDisplay": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." + ], + "uri": "b10000047", + "lccClassification": [ + "M1613.3 .R8 op.38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London, England (Arlington Park House, London W4)" + ], + "titleAlt": [ + "Vocalise, op. 38" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "38 cm." + ] + }, + "sort": [ + "b10000047" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-79" + ], + "identifierV2": [ + { + "value": "JMG 83-79", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842233" + } + ], + "physicalLocation": [ + "JMG 83-79" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842233" + ], + "idBarcode": [ + "33433032842233" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000079" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000048", + "_score": null, + "_source": { + "extent": [ + "[150] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kunzang Topgey" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901012" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" + }, + { + "type": "nypl:Bnumber", + "value": "10000048" + }, + { + "type": "bf:Lccn", + "value": "76901012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100023" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200047" + } + ], + "idOclc": [ + "NYPG001000023-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Thimphu : Kunzang Topgey, 1976." + ], + "identifier": [ + "urn:bnum:10000048", + "urn:lccn:76901012", + "urn:oclc:NYPG001000023-B", + "urn:undefined:NNSZ00100023", + "urn:undefined:(WaOLN)nyp0200047" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000048", + "lccClassification": [ + "BQ7695 .B55" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Thimphu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 38 cm." + ] + }, + "sort": [ + "b10000048" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000013", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2382", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080439" + } + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080439" + ], + "idBarcode": [ + "33433015080439" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002382" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000049", + "_score": null, + "_source": { + "extent": [ + "1 score (105 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 25 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Symphony, op. 26 : full score" + ], + "shelfMark": [ + "JMG 83-80" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "81770641" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "nypl:Bnumber", + "value": "10000049" + }, + { + "type": "bf:Lccn", + "value": "81770641" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100573" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200048" + } + ], + "idOclc": [ + "NYPG001000023-C" + ], + "uniformTitle": [ + "Symphony, op. 26" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." + ], + "identifier": [ + "urn:bnum:10000049", + "urn:lccn:81770641", + "urn:oclc:NYPG001000023-C", + "urn:undefined:NNSZ00100573", + "urn:undefined:(WaOLN)nyp0200048" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "Symphony, op. 26 : full score / Francis Routh." + ], + "uri": "b10000049", + "lccClassification": [ + "M1001 .R8615 op.26" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London (Arlington Park House, London W4 4HD)" + ], + "titleAlt": [ + "Symphony, op. 26" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000049" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-80" + ], + "identifierV2": [ + { + "value": "JMG 83-80", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" + } + ], + "physicalLocation": [ + "JMG 83-80" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842241" + ], + "idBarcode": [ + "33433032842241" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000080" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000050", + "_score": null, + "_source": { + "extent": [ + "[188] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas", + "Bkaʼ-brgyud-pa lamas -- Tibet", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", + "Spiritual life", + "Spiritual life -- Buddhism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Urgyan Dorje" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" + }, + { + "type": "nypl:Bnumber", + "value": "10000050" + }, + { + "type": "bf:Lccn", + "value": "76901747" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100024" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200049" + } + ], + "idOclc": [ + "NYPG001000024-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "New Delhi : Urgyan Dorje, 1976." + ], + "identifier": [ + "urn:bnum:10000050", + "urn:lccn:76901747", + "urn:oclc:NYPG001000024-B", + "urn:undefined:NNSZ00100024", + "urn:undefined:(WaOLN)nyp0200049" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", + "Spiritual life -- Buddhism." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000050", + "lccClassification": [ + "BQ942.A187 A35 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000014", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2381", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080421" + } + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080421" + ], + "idBarcode": [ + "33433015080421" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002381" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000051", + "_score": null, + "_source": { + "extent": [ + "score (64 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Samfundet til udgivelse af dansk musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" + ], + "shelfMark": [ + "JMG 83-75" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Christiansen, Henning." + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78770955" + ], + "seriesStatement": [ + "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-75" + }, + { + "type": "nypl:Bnumber", + "value": "10000051" + }, + { + "type": "bf:Lccn", + "value": "78770955" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100574" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200050" + } + ], + "idOclc": [ + "NYPG001000024-C" + ], + "uniformTitle": [ + "Symphony, no. 2, op. 69c", + "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "København : Samfundet til udgivelse af dansk musik, 1977." + ], + "identifier": [ + "urn:bnum:10000051", + "urn:lccn:78770955", + "urn:oclc:NYPG001000024-C", + "urn:undefined:NNSZ00100574", + "urn:undefined:(WaOLN)nyp0200050" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." + ], + "uri": "b10000051", + "lccClassification": [ + "M1001 .C533 op.69c" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "København" + ], + "titleAlt": [ + "Symphony, no. 2, op. 69c", + "Den forsvundne." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "37 cm." + ] + }, + "sort": [ + "b10000051" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942046", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-75" + ], + "identifierV2": [ + { + "value": "JMG 83-75", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842191" + } + ], + "physicalLocation": [ + "JMG 83-75" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842191" + ], + "idBarcode": [ + "33433032842191" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000075" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:05 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "170288", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":1800}}},{\"range\":{\"dateEndYear\":{\"gte\":1800}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 48 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json b/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json index e2be11e5..a49c009f 100644 --- a/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json +++ b/test/fixtures/query-78203567e820c5b101a2cfd66a93e62b.json @@ -1,9726 +1,9175 @@ { - "took": 1577, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 13.705951, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10833141", - "_score": 13.705951, - "_source": { - "extent": [ - "volumes : illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Some issues bear also thematic titles.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Vol. 73, no. 1 never published.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Has occasional supplements.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Vol. 90, no. 24 (Aug. 25, 2014).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began with issue for Feb. 21, 1925." - ], - "subjectLiteral_exploded": [ - "Literature", - "Literature -- Periodicals", - "Intellectual life", - "Electronic journals", - "New York (N.Y.)", - "New York (N.Y.) -- Intellectual life", - "New York (N.Y.) -- Intellectual life -- Directories", - "New York (State)", - "New York (State) -- New York" - ], - "numItemDatesParsed": [ - 911 - ], - "publisherLiteral": [ - "F-R Pub. Corp.", - "D. Carey", - "Condé Nast Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 917 - ], - "createdYear": [ - 1925 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The New Yorker." - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "numItemVolumesParsed": [ - 847 - ], - "createdString": [ - "1925" - ], - "idLccn": [ - " 28005329" - ], - "idIssn": [ - "0028-792X" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ross, Harold Wallace, 1892-1951", - "Shawn, William", - "Brown, Tina", - "Remnick, David", - "White, Katharine Sergeant Angell", - "White, E. B. (Elwyn Brooks), 1899-1985", - "Irvin, Rea, 1881-1972", - "Angell, Roger" - ], - "dateStartYear": [ - 1925 - ], - "donor": [ - "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DA+ (New Yorker)" - }, - { - "type": "nypl:Bnumber", - "value": "10833141" - }, - { - "type": "bf:Issn", - "value": "0028-792X" - }, - { - "type": "bf:Lccn", - "value": " 28005329" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "nypl:Oclc", - "value": "1760231" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)1760231" - }, - { - "type": "bf:Identifier", - "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" - } - ], - "idOclc": [ - "1760231" - ], - "uniformTitle": [ - "New Yorker (New York, N.Y. : 1925)" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "97(2021)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 1 (Feb. 14, 2022)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 2 (Feb. 28, 2022)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 3 (Mar. 7, 2022)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 4 (Mar. 14, 2022)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 5 (Mar. 21, 2022)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 6 (Mar. 28, 2022)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 7 (Apr. 4, 2022)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 8 (Apr. 11, 2022)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 9 (Apr. 18, 2022)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 10 (Apr. 25, 2022)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 11 (May. 9, 2022)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 12 (May. 16, 2022)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 13 (May. 23, 2022)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 14 (May. 30, 2022)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 15 (Jun. 6, 2022)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 16 (Jun. 13, 2022)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 17 (Jun. 20, 2022)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 18 (Jun. 27, 2022)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 19 (Jul. 4, 2022)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 20 (Jul. 11, 2022)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 21 (Jul. 25, 2022)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 22 (Aug. 1, 2022)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 23 (Aug. 8, 2022)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 24 (Aug. 15, 2022)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 25 (Aug. 22, 2022)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 26 (Aug. 29, 2022)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 27 (Sep. 5, 2022)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 28 (Sep. 12, 2022)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 29 (Sep. 19, 2022)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 30 (Sep. 26, 2022)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 31 (Oct. 3, 2022)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 32 (Oct. 10, 2022)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 33 (Oct. 17, 2022)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 34 (Oct. 24, 2022)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 35 (Oct. 31, 2022)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 36 (Nov. 7, 2022)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 37 (Nov. 14, 2022)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 38 (Nov. 21, 2022)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 39 (Nov. 28, 2022)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 40 (Dec. 5, 2022)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 41 (Dec. 12, 2022)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 98 No. 42 (Dec. 19, 2022)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 43 (Dec. 26, 2022)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 44 (Jan. 2, 2023)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 45 (Jan. 16, 2023)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 47 (Jan. 23, 2023)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 48 (Jan. 30, 2023)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 98 No. 49 (Feb. 6, 2023)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 01 (Feb. 13, 2023 - Feb. 20, 2023)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 11 (May. 8, 2023)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 12 (May. 15, 2023)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 13 (May. 22, 2023)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 14 (May. 29, 2023)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 99 No. 23 (Jul. 31, 2023)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "Room 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1144777", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - }, - { - "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)-94(2018/19)-" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 95 No. 1 (Feb. 18, 2019)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 2 (Mar. 4, 2019)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 3 (Mar. 11, 2019)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 4 (Mar. 18, 2019)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 5 (Mar. 25, 2019)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 6 (Apr. 1, 2019)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 7 (Apr. 8, 2019)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 8 (Apr. 15, 2019)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 9 (Apr. 22, 2019)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 10 (Apr. 29, 2019)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 11 (May. 6, 2019)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 12 (May. 13, 2019)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 13 (May. 20, 2019)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 14 (May. 27, 2019)", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 15 (Jun. 3, 2019)", - "position": "15", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 16 (Jun. 10, 2019)", - "position": "16", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 17 (Jun. 24, 2019)", - "position": "17", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 18 (Jul. 1, 2019)", - "position": "18", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 19 (Jul. 8, 2019)", - "position": "19", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 20 (Jul. 22, 2019)", - "position": "20", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 21 (Jul. 29, 2019)", - "position": "21", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 22 (Aug. 5, 2019)", - "position": "22", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 23 (Aug. 19, 2019)", - "position": "23", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 24 (Aug. 26, 2019)", - "position": "24", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 25 (Sep. 2, 2019)", - "position": "25", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 26 (Sep. 9, 2019)", - "position": "26", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 27 (Sep. 16, 2019)", - "position": "27", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 28 (Sep. 23, 2019)", - "position": "28", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 29 (Sep. 30, 2019)", - "position": "29", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 30 (Oct. 7, 2019)", - "position": "30", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 31 (Oct. 14, 2019)", - "position": "31", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 32 (Oct. 21, 2019)", - "position": "32", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 33 (Oct. 28, 2019)", - "position": "33", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 34 (Nov. 4, 2019)", - "position": "34", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 35 (Nov. 11, 2019)", - "position": "35", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 36 (Nov. 18, 2019)", - "position": "36", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 37 (Nov. 25, 2019)", - "position": "37", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 38 (Dec. 2, 2019)", - "position": "38", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 39 (Dec. 9, 2019)", - "position": "39", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 40 (Dec. 16, 2019)", - "position": "40", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 41 (Dec. 23, 2019)", - "position": "41", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 42 (Dec. 30, 2019)", - "position": "42", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 43 (Jan. 6, 2020)", - "position": "43", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 44 (Jan. 13, 2020)", - "position": "44", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 45 (Jan. 20, 2020)", - "position": "45", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 46 (Jan. 27, 2020)", - "position": "46", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 47 (Feb. 3, 2020)", - "position": "47", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 95 No. 48 (Feb. 10, 2020)", - "position": "48", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 1 (Feb. 17, 2020 - Feb. 24, 2020)", - "position": "49", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 2 (Mar. 2, 2020)", - "position": "50", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 3 (Mar. 9, 2020)", - "position": "51", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 4 (Mar. 16, 2020)", - "position": "52", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 5 (Mar. 23, 2020)", - "position": "53", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 6 (Mar. 30, 2020)", - "position": "54", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 7 (Apr. 6, 2020)", - "position": "55", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 8 (Apr. 13, 2020)", - "position": "56", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 09 (Apr. 20, 2020)", - "position": "57", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 10 (Apr. 27, 2020)", - "position": "58", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 11 (May. 4, 2020)", - "position": "59", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 12 (May. 11, 2020)", - "position": "60", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 13 (May. 18, 2020)", - "position": "61", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 14 (May. 23, 2020)", - "position": "62", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 15 (Jun. 1, 2020)", - "position": "63", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 16 (Jun. 8, 2020)", - "position": "64", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 17 (Jun. 22, 2020)", - "position": "65", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 18 (Jun. 29, 2020)", - "position": "66", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 19 (Jul. 6, 2020 - Jul. 13, 2020)", - "position": "67", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 20 (Jul. 20, 2020)", - "position": "68", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 21 (Jul. 27, 2020)", - "position": "69", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 22 (Aug. 3, 2020)", - "position": "70", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 23 (Aug. 17, 2020)", - "position": "71", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 24 (Aug. 24, 2020)", - "position": "72", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 25 (Aug. 31, 2020)", - "position": "73", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 26 (Sep. 7, 2020)", - "position": "74", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 27 (Sep. 14, 2020)", - "position": "75", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 28 (Sep. 21, 2020)", - "position": "76", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 29 (Sep. 28, 2020)", - "position": "77", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 30 (Oct. 5, 2020)", - "position": "78", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 31 (Oct. 12, 2020)", - "position": "79", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 32 (Oct. 19, 2020)", - "position": "80", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 33 (Oct. 26, 2020)", - "position": "81", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 34 (Nov. 2, 2020)", - "position": "82", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 35 (Nov. 9, 2020)", - "position": "83", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 36 (Nov. 16, 2020)", - "position": "84", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 37 (Nov. 23, 2020)", - "position": "85", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 38 (Nov. 30, 2020)", - "position": "86", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 39 (Dec. 7, 2020)", - "position": "87", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 40 (Dec. 14, 2020)", - "position": "88", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 41 (Dec. 21, 2020)", - "position": "89", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 42 (Dec. 28, 2020)", - "position": "90", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 43 (Jan. 4, 2021)", - "position": "91", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 44 (Jan. 18, 2021)", - "position": "92", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 45 (Jan. 25, 2021)", - "position": "93", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 46 (Feb. 1, 2021)", - "position": "94", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 96 No. 47 (Feb. 8, 2021)", - "position": "95", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "To Bind" - }, - { - "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", - "position": "96", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", - "position": "97", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", - "position": "98", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", - "position": "99", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", - "position": "100", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", - "position": "101", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", - "position": "102", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", - "position": "103", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", - "position": "104", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", - "position": "105", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 11 (May. 10, 2021)", - "position": "106", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 12 (May. 17, 2021)", - "position": "107", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 13 (May. 24, 2021)", - "position": "108", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 14 (May. 31, 2021)", - "position": "109", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", - "position": "110", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", - "position": "111", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", - "position": "112", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", - "position": "113", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", - "position": "114", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", - "position": "115", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", - "position": "116", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", - "position": "117", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", - "position": "118", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - }, - { - "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", - "position": "119", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "status": "Arrived" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*DA+ (New Yorker)" - } - ], - "notes": [ - "ROOM 108" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "uri": "h1059671", - "shelfMark": [ - "*DA+ (New Yorker)" - ] - } - ], - "updatedAt": 1690905757761, - "publicationStatement": [ - "New York : F-R Pub. Corp., 1925-", - "[New York] : D. Carey", - "[New York] : Condé Nast Publications" - ], - "identifier": [ - "urn:bnum:10833141", - "urn:issn:0028-792X", - "urn:lccn: 28005329", - "urn:oclc:1760231", - "urn:undefined:(OCoLC)1760231", - "urn:undefined:(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" - ], - "genreForm": [ - "Collections.", - "Directories.", - "Periodicals." - ], - "numCheckinCardItems": [ - 213 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1925" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Literature -- Periodicals.", - "Intellectual life.", - "Literature.", - "Electronic journals.", - "New York (N.Y.) -- Intellectual life -- Directories.", - "New York (State) -- New York." - ], - "titleDisplay": [ - "The New Yorker." - ], - "uri": "b10833141", - "lccClassification": [ - "AP2 .N6763" - ], - "numItems": [ - 704 - ], - "numAvailable": [ - 789 - ], - "placeOfPublication": [ - "New York", - "[New York]" - ], - "titleAlt": [ - "New Yorker", - "The New Yorker" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28-31 cm" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 917, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 212 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-0", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" + "body": { + "took": 1851, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 13.585073, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 13.585073, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 811 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 816 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 746 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "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" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 23 (Jul. 31, 2023)" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 23" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-07-31", - "lte": "2023-07-31" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-07-31" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-07-31" - ] - }, - { - "_nested": { - "field": "items", - "offset": 211 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-1", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 21 (Jul. 24, 2023)" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 21" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-07-24", - "lte": "2023-07-24" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-07-24" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "To Bind" + } + ], + "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)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-07-24" - ] - }, - { - "_nested": { - "field": "items", - "offset": 210 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-2", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 20 (Jul. 10, 2023)" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 20" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-07-10", - "lte": "2023-07-10" - } + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-07-10" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-07-10" - ] - }, - { - "_nested": { - "field": "items", - "offset": 209 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-3", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 19 (Jul. 3, 2023)" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 19" + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-07-03", - "lte": "2023-07-03" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-07-03" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-07-03" - ] - }, - { - "_nested": { - "field": "items", - "offset": 208 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-4", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 18 (Jun. 26, 2023)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 18" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-06-26", - "lte": "2023-06-26" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-06-26" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-06-26" - ] - }, - { - "_nested": { - "field": "items", - "offset": 207 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-5", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 17 (Jun. 19, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 17" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-06-19", - "lte": "2023-06-19" - } - ], - "enumerationChronology_sort": [ - " 99-2023-06-19" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-06-19" - ] - }, - { - "_nested": { - "field": "items", - "offset": 206 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-6", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 16 (Jun. 12, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 16" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-06-12", - "lte": "2023-06-12" - } - ], - "enumerationChronology_sort": [ - " 99-2023-06-12" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-06-12" - ] - }, - { - "_nested": { - "field": "items", - "offset": 205 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-7", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 15 (Jun. 5, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 15" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-06-05", - "lte": "2023-06-05" - } - ], - "enumerationChronology_sort": [ - " 99-2023-06-05" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-06-05" - ] - }, - { - "_nested": { - "field": "items", - "offset": 203 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-9", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 14 (May. 29, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 14" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-05-29", - "lte": "2023-05-29" - } - ], - "enumerationChronology_sort": [ - " 99-2023-05-29" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-05-29" - ] - }, - { - "_nested": { - "field": "items", - "offset": 202 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-10", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 13 (May. 22, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 13" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-05-22", - "lte": "2023-05-22" - } - ], - "enumerationChronology_sort": [ - " 99-2023-05-22" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-05-22" - ] - }, - { - "_nested": { - "field": "items", - "offset": 201 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-11", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 12 (May. 15, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 12" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-05-15", - "lte": "2023-05-15" - } - ], - "enumerationChronology_sort": [ - " 99-2023-05-15" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-05-15" - ] - }, - { - "_nested": { - "field": "items", - "offset": 198 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-14", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 11 (May. 8, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 11" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-05-08", - "lte": "2023-05-08" - } - ], - "enumerationChronology_sort": [ - " 99-2023-05-08" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-05-08" - ] - }, - { - "_nested": { - "field": "items", - "offset": 197 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-15", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 10" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-04-24", - "lte": "2023-05-01" - } - ], - "enumerationChronology_sort": [ - " 99-2023-04-24" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-04-24" - ] - }, - { - "_nested": { - "field": "items", - "offset": 196 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-16", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 9 (Apr. 17, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 9" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-04-17", - "lte": "2023-04-17" - } - ], - "enumerationChronology_sort": [ - " 99-2023-04-17" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-04-17" - ] - }, - { - "_nested": { - "field": "items", - "offset": 195 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-17", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 8 (Apr. 10, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 8" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-04-10", - "lte": "2023-04-10" - } - ], - "enumerationChronology_sort": [ - " 99-2023-04-10" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-04-10" - ] - }, - { - "_nested": { - "field": "items", - "offset": 194 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-18", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 7 (Apr. 3, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 7" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-04-03", - "lte": "2023-04-03" - } - ], - "enumerationChronology_sort": [ - " 99-2023-04-03" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-04-03" - ] - }, - { - "_nested": { - "field": "items", - "offset": 204 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-8", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 6 (Mar. 27, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 6" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-03-27", - "lte": "2023-03-27" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-03-27" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-03-27" - ] - }, - { - "_nested": { - "field": "items", - "offset": 193 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-19", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 5 (Mar. 20, 2023)" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 5" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-03-20", - "lte": "2023-03-20" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ - " 99-2023-03-20" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "type": [ - "nypl:CheckinCardItem" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-03-20" - ] - }, - { - "_nested": { - "field": "items", - "offset": 200 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-12", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "status_packed": [ - "status:a||Available" + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", "shelfMark": [ "*DA+ (New Yorker)" ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology": [ - "Vol. 99 No. 4 (Mar. 13, 2023)" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRaw": [ - "Vol. 99 No. 4" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "dateRange": [ - { - "gte": "2023-03-13", - "lte": "2023-03-13" - } + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" ], - "enumerationChronology_sort": [ + "status": "Expected" + } + ], + "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)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1710006791578, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(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" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 112 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 816, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 791 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-27", + "lte": "2024-05-27" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 15 (May. 27, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-0", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 15" + ] + }, + "sort": [ + " 100-2024-05-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 790 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-20", + "lte": "2024-05-20" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 14 (May. 20, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-20" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-1", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 14" + ] + }, + "sort": [ + " 100-2024-05-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 789 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-13", + "lte": "2024-05-13" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 13 (May. 13, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-2", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 13" + ] + }, + "sort": [ + " 100-2024-05-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 788 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-06", + "lte": "2024-05-06" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 12 (May. 6, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-3", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 12" + ] + }, + "sort": [ + " 100-2024-05-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 787 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-29", + "lte": "2024-04-29" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 11 (Apr. 29, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-29" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-4", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 11" + ] + }, + "sort": [ + " 100-2024-04-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 786 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-22", + "lte": "2024-04-22" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 10 (Apr. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-22" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-5", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 10" + ] + }, + "sort": [ + " 100-2024-04-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 785 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-15" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 9" + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 784 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-08" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 8" + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 783 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-01" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 7" + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_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": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-25" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 6" + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_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": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-18" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 5" + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 763 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-11", + "lte": "2024-03-11" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 4 (Mar. 11, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-11" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-28", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 4" + ] + }, + "sort": [ + " 100-2024-03-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 762 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-03-04", + "lte": "2024-03-04" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 3 (Mar. 4, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-04" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-29", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 3" + ] + }, + "sort": [ + " 100-2024-03-04" + ] + }, + { + "_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": "2024-02-26", + "lte": "2024-02-26" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 2 (Feb. 26, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-02-26" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-11", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 2" + ] + }, + "sort": [ + " 100-2024-02-26" + ] + }, + { + "_nested": { + "field": "items", + "offset": 761 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-12", + "lte": "2024-02-12" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 1 (Feb. 12, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-02-12" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-30", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 1" + ] + }, + "sort": [ + " 100-2024-02-12" + ] + }, + { + "_nested": { + "field": "items", + "offset": 752 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-02-05", + "lte": "2024-02-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 48 (Feb. 5, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-02-05" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-39", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 48" + ] + }, + "sort": [ + " 99-2024-02-05" + ] + }, + { + "_nested": { + "field": "items", + "offset": 751 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-29", + "lte": "2024-01-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 47 (Jan. 29, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-29" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-40", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 47" + ] + }, + "sort": [ + " 99-2024-01-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 750 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-22", + "lte": "2024-01-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 46 (Jan. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-22" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-41", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 46" + ] + }, + "sort": [ + " 99-2024-01-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 749 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-15", + "lte": "2024-01-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 45 (Jan. 15, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-15" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-42", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 45" + ] + }, + "sort": [ + " 99-2024-01-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 748 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-01-01", + "lte": "2024-01-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 44 (Jan. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 99-2024-01-01" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-43", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 44" + ] + }, + "sort": [ + " 99-2024-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 747 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-25", + "lte": "2023-12-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 43 (Dec. 25, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-25" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-44", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 43" + ] + }, + "sort": [ + " 99-2023-12-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 746 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-18", + "lte": "2023-12-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 42 (Dec. 18, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-18" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-45", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 42" + ] + }, + "sort": [ + " 99-2023-12-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 745 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-11", + "lte": "2023-12-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 41 (Dec. 11, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-11" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-46", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 41" + ] + }, + "sort": [ + " 99-2023-12-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 744 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-12-04", + "lte": "2023-12-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 40 (Dec. 4, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-12-04" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-47", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 40" + ] + }, + "sort": [ + " 99-2023-12-04" + ] + }, + { + "_nested": { + "field": "items", + "offset": 743 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-27", + "lte": "2023-11-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 39 (Nov. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-48", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 39" + ] + }, + "sort": [ + " 99-2023-11-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 740 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-20", + "lte": "2023-11-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 38 (Nov. 20, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-20" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-51", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 38" + ] + }, + "sort": [ + " 99-2023-11-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 742 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-13", + "lte": "2023-11-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 37 (Nov. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-49", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 37" + ] + }, + "sort": [ + " 99-2023-11-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 739 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-11-06", + "lte": "2023-11-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 36 (Nov. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-11-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-52", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 36" + ] + }, + "sort": [ + " 99-2023-11-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 738 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-30", + "lte": "2023-10-30" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 35 (Oct. 30, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-30" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-53", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 35" + ] + }, + "sort": [ + " 99-2023-10-30" + ] + }, + { + "_nested": { + "field": "items", + "offset": 741 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-23", + "lte": "2023-10-23" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 34 (Oct. 23, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-23" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-50", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 34" + ] + }, + "sort": [ + " 99-2023-10-23" + ] + }, + { + "_nested": { + "field": "items", + "offset": 731 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-16", + "lte": "2023-10-16" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 33 (Oct. 16, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-16" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-60", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 33" + ] + }, + "sort": [ + " 99-2023-10-16" + ] + }, + { + "_nested": { + "field": "items", + "offset": 730 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-09", + "lte": "2023-10-09" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 32 (Oct. 9, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-09" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-61", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 32" + ] + }, + "sort": [ + " 99-2023-10-09" + ] + }, + { + "_nested": { + "field": "items", + "offset": 729 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-10-02", + "lte": "2023-10-02" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 31 (Oct. 2, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-10-02" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-62", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 31" + ] + }, + "sort": [ + " 99-2023-10-02" + ] + }, + { + "_nested": { + "field": "items", + "offset": 760 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-25", + "lte": "2023-09-25" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 30 (Sep. 25, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-25" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-31", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 30" + ] + }, + "sort": [ + " 99-2023-09-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 737 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-18", + "lte": "2023-09-18" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 29 (Sep. 18, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-18" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-54", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 29" + ] + }, + "sort": [ + " 99-2023-09-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 759 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-11", + "lte": "2023-09-11" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 28 (Sep. 11, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-11" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-32", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 28" + ] + }, + "sort": [ + " 99-2023-09-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 758 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-09-04", + "lte": "2023-09-04" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 27 (Sep. 4, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-09-04" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-33", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 27" + ] + }, + "sort": [ + " 99-2023-09-04" + ] + }, + { + "_nested": { + "field": "items", + "offset": 728 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-28", + "lte": "2023-08-28" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 26 (Aug. 28, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-28" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-63", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 26" + ] + }, + "sort": [ + " 99-2023-08-28" + ] + }, + { + "_nested": { + "field": "items", + "offset": 733 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-21", + "lte": "2023-08-21" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 25 (Aug. 21, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-21" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-58", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 25" + ] + }, + "sort": [ + " 99-2023-08-21" + ] + }, + { + "_nested": { + "field": "items", + "offset": 732 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-14", + "lte": "2023-08-14" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 24 (Aug. 14, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-14" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-59", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 24" + ] + }, + "sort": [ + " 99-2023-08-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 727 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-08-07", + "lte": "2023-08-07" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 23 (Aug. 7, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-08-07" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-64", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 23" + ] + }, + "sort": [ + " 99-2023-08-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 736 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-31", + "lte": "2023-07-31" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 22 (Jul. 31, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-31" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-55", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 22" + ] + }, + "sort": [ + " 99-2023-07-31" + ] + }, + { + "_nested": { + "field": "items", + "offset": 735 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-24", + "lte": "2023-07-24" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 21 (Jul. 24, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-24" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-56", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 21" + ] + }, + "sort": [ + " 99-2023-07-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 734 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-10", + "lte": "2023-07-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 20 (Jul. 10, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-10" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-57", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 20" + ] + }, + "sort": [ + " 99-2023-07-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 726 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-07-03", + "lte": "2023-07-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 19 (Jul. 3, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-07-03" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-65", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 19" + ] + }, + "sort": [ + " 99-2023-07-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 725 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-26", + "lte": "2023-06-26" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 18 (Jun. 26, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-26" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-66", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 18" + ] + }, + "sort": [ + " 99-2023-06-26" + ] + }, + { + "_nested": { + "field": "items", + "offset": 757 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-19", + "lte": "2023-06-19" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 17 (Jun. 19, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-19" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-34", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 17" + ] + }, + "sort": [ + " 99-2023-06-19" + ] + }, + { + "_nested": { + "field": "items", + "offset": 724 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-12", + "lte": "2023-06-12" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 16 (Jun. 12, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-12" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-67", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 16" + ] + }, + "sort": [ + " 99-2023-06-12" + ] + }, + { + "_nested": { + "field": "items", + "offset": 723 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-06-05", + "lte": "2023-06-05" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 15 (Jun. 5, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-06-05" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-68", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 15" + ] + }, + "sort": [ + " 99-2023-06-05" + ] + }, + { + "_nested": { + "field": "items", + "offset": 722 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-29", + "lte": "2023-05-29" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 14 (May. 29, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-29" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-69", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 14" + ] + }, + "sort": [ + " 99-2023-05-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 721 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-22", + "lte": "2023-05-22" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 13 (May. 22, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-22" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-70", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 13" + ] + }, + "sort": [ + " 99-2023-05-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 720 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-15", + "lte": "2023-05-15" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 12 (May. 15, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-15" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-71", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 12" + ] + }, + "sort": [ + " 99-2023-05-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 719 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-05-08", + "lte": "2023-05-08" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 11 (May. 8, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-05-08" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-72", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 11" + ] + }, + "sort": [ + " 99-2023-05-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 718 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-24", + "lte": "2023-05-01" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-24" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-73", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 10" + ] + }, + "sort": [ + " 99-2023-04-24" + ] + }, + { + "_nested": { + "field": "items", + "offset": 756 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-17", + "lte": "2023-04-17" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 9 (Apr. 17, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-17" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-35", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 9" + ] + }, + "sort": [ + " 99-2023-04-17" + ] + }, + { + "_nested": { + "field": "items", + "offset": 755 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-10", + "lte": "2023-04-10" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 8 (Apr. 10, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-10" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-36", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 8" + ] + }, + "sort": [ + " 99-2023-04-10" + ] + }, + { + "_nested": { + "field": "items", + "offset": 754 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-04-03", + "lte": "2023-04-03" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 7 (Apr. 3, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-04-03" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-37", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 7" + ] + }, + "sort": [ + " 99-2023-04-03" + ] + }, + { + "_nested": { + "field": "items", + "offset": 753 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-27", + "lte": "2023-03-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 6 (Mar. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-38", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 6" + ] + }, + "sort": [ + " 99-2023-03-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 717 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-20", + "lte": "2023-03-20" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 5 (Mar. 20, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-20" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-74", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 5" + ] + }, + "sort": [ + " 99-2023-03-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 716 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-13", + "lte": "2023-03-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 4 (Mar. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-75", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 4" + ] + }, + "sort": [ " 99-2023-03-13" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-03-13" - ] - }, - { - "_nested": { - "field": "items", - "offset": 199 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-13", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 3 (Mar. 6, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-03-06", - "lte": "2023-03-06" - } - ], - "enumerationChronology_sort": [ - " 99-2023-03-06" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-03-06" - ] - }, - { - "_nested": { - "field": "items", - "offset": 192 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-20", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 2 (Feb. 27, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-02-27", - "lte": "2023-02-27" - } - ], - "enumerationChronology_sort": [ - " 99-2023-02-27" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-02-27" - ] - }, - { - "_nested": { - "field": "items", - "offset": 191 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-21", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 99 No. 01 (Feb. 13, 2023 - Feb. 20, 2023)" - ], - "volumeRaw": [ - "Vol. 99 No. 01" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 99, - "lte": 99 - } - ], - "dateRange": [ - { - "gte": "2023-02-13", - "lte": "2023-02-20" - } - ], - "enumerationChronology_sort": [ - " 99-2023-02-13" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 99-2023-02-13" - ] - }, - { - "_nested": { - "field": "items", - "offset": 190 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-22", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 49 (Feb. 6, 2023)" - ], - "volumeRaw": [ - "Vol. 98 No. 49" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2023-02-06", - "lte": "2023-02-06" - } - ], - "enumerationChronology_sort": [ - " 98-2023-02-06" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2023-02-06" - ] - }, - { - "_nested": { - "field": "items", - "offset": 189 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-23", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 48 (Jan. 30, 2023)" - ], - "volumeRaw": [ - "Vol. 98 No. 48" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2023-01-30", - "lte": "2023-01-30" - } - ], - "enumerationChronology_sort": [ - " 98-2023-01-30" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2023-01-30" - ] - }, - { - "_nested": { - "field": "items", - "offset": 188 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-24", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 47 (Jan. 23, 2023)" - ], - "volumeRaw": [ - "Vol. 98 No. 47" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2023-01-23", - "lte": "2023-01-23" - } - ], - "enumerationChronology_sort": [ - " 98-2023-01-23" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2023-01-23" - ] - }, - { - "_nested": { - "field": "items", - "offset": 187 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-25", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 45 (Jan. 16, 2023)" - ], - "volumeRaw": [ - "Vol. 98 No. 45" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2023-01-16", - "lte": "2023-01-16" - } - ], - "enumerationChronology_sort": [ - " 98-2023-01-16" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2023-01-16" - ] - }, - { - "_nested": { - "field": "items", - "offset": 186 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-26", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 44 (Jan. 2, 2023)" - ], - "volumeRaw": [ - "Vol. 98 No. 44" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2023-01-02", - "lte": "2023-01-02" - } - ], - "enumerationChronology_sort": [ - " 98-2023-01-02" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2023-01-02" - ] - }, - { - "_nested": { - "field": "items", - "offset": 185 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-27", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 43 (Dec. 26, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 43" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-12-26", - "lte": "2022-12-26" - } - ], - "enumerationChronology_sort": [ - " 98-2022-12-26" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-12-26" - ] - }, - { - "_nested": { - "field": "items", - "offset": 184 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-28", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 42 (Dec. 19, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 42" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-12-19", - "lte": "2022-12-19" - } - ], - "enumerationChronology_sort": [ - " 98-2022-12-19" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-12-19" - ] - }, - { - "_nested": { - "field": "items", - "offset": 183 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-29", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 41 (Dec. 12, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 41" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-12-12", - "lte": "2022-12-12" - } - ], - "enumerationChronology_sort": [ - " 98-2022-12-12" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-12-12" - ] - }, - { - "_nested": { - "field": "items", - "offset": 182 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-30", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 40 (Dec. 5, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 40" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-12-05", - "lte": "2022-12-05" - } - ], - "enumerationChronology_sort": [ - " 98-2022-12-05" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-12-05" - ] - }, - { - "_nested": { - "field": "items", - "offset": 179 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-33", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 39 (Nov. 28, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 39" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-11-28", - "lte": "2022-11-28" - } - ], - "enumerationChronology_sort": [ - " 98-2022-11-28" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-11-28" - ] - }, - { - "_nested": { - "field": "items", - "offset": 181 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-31", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 38 (Nov. 21, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 38" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-11-21", - "lte": "2022-11-21" - } - ], - "enumerationChronology_sort": [ - " 98-2022-11-21" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-11-21" - ] - }, - { - "_nested": { - "field": "items", - "offset": 178 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-34", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 37 (Nov. 14, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 37" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-11-14", - "lte": "2022-11-14" - } - ], - "enumerationChronology_sort": [ - " 98-2022-11-14" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-11-14" - ] - }, - { - "_nested": { - "field": "items", - "offset": 177 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-35", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 36 (Nov. 7, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 36" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-11-07", - "lte": "2022-11-07" - } - ], - "enumerationChronology_sort": [ - " 98-2022-11-07" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-11-07" - ] - }, - { - "_nested": { - "field": "items", - "offset": 180 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-32", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 35 (Oct. 31, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 35" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-10-31", - "lte": "2022-10-31" - } - ], - "enumerationChronology_sort": [ - " 98-2022-10-31" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-10-31" - ] - }, - { - "_nested": { - "field": "items", - "offset": 170 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-42", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 34 (Oct. 24, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 34" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-10-24", - "lte": "2022-10-24" - } - ], - "enumerationChronology_sort": [ - " 98-2022-10-24" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-10-24" - ] - }, - { - "_nested": { - "field": "items", - "offset": 169 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-43", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 33 (Oct. 17, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 33" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-10-17", - "lte": "2022-10-17" - } - ], - "enumerationChronology_sort": [ - " 98-2022-10-17" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-10-17" - ] - }, - { - "_nested": { - "field": "items", - "offset": 168 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-44", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 32 (Oct. 10, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 32" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-10-10", - "lte": "2022-10-10" - } - ], - "enumerationChronology_sort": [ - " 98-2022-10-10" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-10-10" - ] - }, - { - "_nested": { - "field": "items", - "offset": 167 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-45", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 31 (Oct. 3, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 31" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-10-03", - "lte": "2022-10-03" - } - ], - "enumerationChronology_sort": [ - " 98-2022-10-03" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-10-03" - ] - }, - { - "_nested": { - "field": "items", - "offset": 176 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-36", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 30 (Sep. 26, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 30" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-09-26", - "lte": "2022-09-26" - } - ], - "enumerationChronology_sort": [ - " 98-2022-09-26" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-09-26" - ] - }, - { - "_nested": { - "field": "items", - "offset": 166 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-46", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 29 (Sep. 19, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 29" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-09-19", - "lte": "2022-09-19" - } - ], - "enumerationChronology_sort": [ - " 98-2022-09-19" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-09-19" - ] - }, - { - "_nested": { - "field": "items", - "offset": 165 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-47", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 28 (Sep. 12, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 28" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-09-12", - "lte": "2022-09-12" - } - ], - "enumerationChronology_sort": [ - " 98-2022-09-12" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-09-12" - ] - }, - { - "_nested": { - "field": "items", - "offset": 164 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-48", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 27 (Sep. 5, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 27" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-09-05", - "lte": "2022-09-05" - } - ], - "enumerationChronology_sort": [ - " 98-2022-09-05" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-09-05" - ] - }, - { - "_nested": { - "field": "items", - "offset": 172 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-40", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 26 (Aug. 29, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 26" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-08-29", - "lte": "2022-08-29" - } - ], - "enumerationChronology_sort": [ - " 98-2022-08-29" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-08-29" - ] - }, - { - "_nested": { - "field": "items", - "offset": 171 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-41", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 25 (Aug. 22, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 25" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-08-22", - "lte": "2022-08-22" - } - ], - "enumerationChronology_sort": [ - " 98-2022-08-22" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-08-22" - ] - }, - { - "_nested": { - "field": "items", - "offset": 163 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-49", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 24 (Aug. 15, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 24" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-08-15", - "lte": "2022-08-15" - } - ], - "enumerationChronology_sort": [ - " 98-2022-08-15" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-08-15" - ] - }, - { - "_nested": { - "field": "items", - "offset": 175 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-37", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 23 (Aug. 8, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 23" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-08-08", - "lte": "2022-08-08" - } - ], - "enumerationChronology_sort": [ - " 98-2022-08-08" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-08-08" - ] - }, - { - "_nested": { - "field": "items", - "offset": 174 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-38", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 22 (Aug. 1, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 22" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-08-01", - "lte": "2022-08-01" - } - ], - "enumerationChronology_sort": [ - " 98-2022-08-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-08-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 173 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-39", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 21 (Jul. 25, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 21" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-07-25", - "lte": "2022-07-25" - } - ], - "enumerationChronology_sort": [ - " 98-2022-07-25" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-07-25" - ] - }, - { - "_nested": { - "field": "items", - "offset": 162 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-50", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 20 (Jul. 11, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 20" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-07-11", - "lte": "2022-07-11" - } - ], - "enumerationChronology_sort": [ - " 98-2022-07-11" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-07-11" - ] - }, - { - "_nested": { - "field": "items", - "offset": 161 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-51", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 19 (Jul. 4, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 19" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-07-04", - "lte": "2022-07-04" - } - ], - "enumerationChronology_sort": [ - " 98-2022-07-04" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-07-04" - ] - }, - { - "_nested": { - "field": "items", - "offset": 160 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-52", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 18 (Jun. 27, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 18" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-06-27", - "lte": "2022-06-27" - } - ], - "enumerationChronology_sort": [ - " 98-2022-06-27" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-06-27" - ] - }, - { - "_nested": { - "field": "items", - "offset": 159 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-53", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 17 (Jun. 20, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 17" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-06-20", - "lte": "2022-06-20" - } - ], - "enumerationChronology_sort": [ - " 98-2022-06-20" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-06-20" - ] - }, - { - "_nested": { - "field": "items", - "offset": 158 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-54", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 16 (Jun. 13, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 16" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-06-13", - "lte": "2022-06-13" - } - ], - "enumerationChronology_sort": [ - " 98-2022-06-13" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-06-13" - ] - }, - { - "_nested": { - "field": "items", - "offset": 157 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-55", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 15 (Jun. 6, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 15" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-06-06", - "lte": "2022-06-06" - } - ], - "enumerationChronology_sort": [ - " 98-2022-06-06" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-06-06" - ] - }, - { - "_nested": { - "field": "items", - "offset": 156 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-56", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 14 (May. 30, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 14" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-05-30", - "lte": "2022-05-30" - } - ], - "enumerationChronology_sort": [ - " 98-2022-05-30" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-05-30" - ] - }, - { - "_nested": { - "field": "items", - "offset": 155 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-57", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 13 (May. 23, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 13" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-05-23", - "lte": "2022-05-23" - } - ], - "enumerationChronology_sort": [ - " 98-2022-05-23" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-05-23" - ] - }, - { - "_nested": { - "field": "items", - "offset": 154 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-58", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 12 (May. 16, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 12" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-05-16", - "lte": "2022-05-16" - } - ], - "enumerationChronology_sort": [ - " 98-2022-05-16" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-05-16" - ] - }, - { - "_nested": { - "field": "items", - "offset": 153 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-59", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 11 (May. 9, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 11" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-05-09", - "lte": "2022-05-09" - } - ], - "enumerationChronology_sort": [ - " 98-2022-05-09" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-05-09" - ] - }, - { - "_nested": { - "field": "items", - "offset": 152 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-60", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 10 (Apr. 25, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 10" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-04-25", - "lte": "2022-04-25" - } - ], - "enumerationChronology_sort": [ - " 98-2022-04-25" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-04-25" - ] - }, - { - "_nested": { - "field": "items", - "offset": 151 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-61", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 9 (Apr. 18, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 9" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-04-18", - "lte": "2022-04-18" - } - ], - "enumerationChronology_sort": [ - " 98-2022-04-18" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-04-18" - ] - }, - { - "_nested": { - "field": "items", - "offset": 150 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-62", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 8 (Apr. 11, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 8" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-04-11", - "lte": "2022-04-11" - } - ], - "enumerationChronology_sort": [ - " 98-2022-04-11" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-04-11" - ] - }, - { - "_nested": { - "field": "items", - "offset": 149 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-63", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 7 (Apr. 4, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 7" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-04-04", - "lte": "2022-04-04" - } - ], - "enumerationChronology_sort": [ - " 98-2022-04-04" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-04-04" - ] - }, - { - "_nested": { - "field": "items", - "offset": 148 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-64", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 6 (Mar. 28, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 6" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-03-28", - "lte": "2022-03-28" - } - ], - "enumerationChronology_sort": [ - " 98-2022-03-28" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-03-28" - ] - }, - { - "_nested": { - "field": "items", - "offset": 147 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-65", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 5 (Mar. 21, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 5" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-03-21", - "lte": "2022-03-21" - } - ], - "enumerationChronology_sort": [ - " 98-2022-03-21" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-03-21" - ] - }, - { - "_nested": { - "field": "items", - "offset": 146 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-66", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 4 (Mar. 14, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-03-14", - "lte": "2022-03-14" - } - ], - "enumerationChronology_sort": [ - " 98-2022-03-14" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-03-14" - ] - }, - { - "_nested": { - "field": "items", - "offset": 145 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-67", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 3 (Mar. 7, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-03-07", - "lte": "2022-03-07" - } - ], - "enumerationChronology_sort": [ - " 98-2022-03-07" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-03-07" - ] - }, - { - "_nested": { - "field": "items", - "offset": 144 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-68", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 2 (Feb. 28, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-02-28", - "lte": "2022-02-28" - } - ], - "enumerationChronology_sort": [ - " 98-2022-02-28" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-02-28" - ] - }, - { - "_nested": { - "field": "items", - "offset": 143 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-69", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 98 No. 1 (Feb. 14, 2022)" - ], - "volumeRaw": [ - "Vol. 98 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 98, - "lte": 98 - } - ], - "dateRange": [ - { - "gte": "2022-02-14", - "lte": "2022-02-14" - } - ], - "enumerationChronology_sort": [ - " 98-2022-02-14" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 98-2022-02-14" - ] - }, - { - "_nested": { - "field": "items", - "offset": 139 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-73", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 48 (Feb. 7, 2022)" - ], - "volumeRaw": [ - "Vol. 97 No. 48" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2022-02-07", - "lte": "2022-02-07" - } - ], - "enumerationChronology_sort": [ - " 97-2022-02-07" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2022-02-07" - ] - }, - { - "_nested": { - "field": "items", - "offset": 138 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-74", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 47 (Jan. 31, 2022)" - ], - "volumeRaw": [ - "Vol. 97 No. 47" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2022-01-31", - "lte": "2022-01-31" - } - ], - "enumerationChronology_sort": [ - " 97-2022-01-31" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2022-01-31" - ] - }, - { - "_nested": { - "field": "items", - "offset": 137 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-75", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 46 (Jan. 24, 2022)" - ], - "volumeRaw": [ - "Vol. 97 No. 46" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2022-01-24", - "lte": "2022-01-24" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 715 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-03-06", + "lte": "2023-03-06" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 3 (Mar. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-03-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-76", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 3" + ] + }, + "sort": [ + " 99-2023-03-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 714 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-27", + "lte": "2023-02-27" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 2 (Feb. 27, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-02-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-77", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 2" + ] + }, + "sort": [ + " 99-2023-02-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 713 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2023-02-13", + "lte": "2023-02-13" + } + ], + "enumerationChronology": [ + "Vol. 99 No. 1 (Feb. 13, 2023)" + ], + "enumerationChronology_sort": [ + " 99-2023-02-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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-78", + "volumeRange": [ + { + "gte": 99, + "lte": 99 + } + ], + "volumeRaw": [ + "Vol. 99 No. 1" + ] + }, + "sort": [ + " 99-2023-02-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 712 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-14", + "lte": "2023-02-06" + } + ], + "enumerationChronology": [ + "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)" + ], + "enumerationChronology_sort": [ + " 98-2022-02-14" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-79", + "volumeRange": [ + { + "gte": 98, + "lte": 98 + } + ], + "volumeRaw": [ + "Vol. 98 No. 1-49" + ] + }, + "sort": [ + " 98-2022-02-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 709 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-02-07", + "lte": "2022-02-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 48 (Feb. 7, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-02-07" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-82", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 48" + ] + }, + "sort": [ + " 97-2022-02-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 708 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-31", + "lte": "2022-01-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 47 (Jan. 31, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-31" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-83", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 47" + ] + }, + "sort": [ + " 97-2022-01-31" + ] + }, + { + "_nested": { + "field": "items", + "offset": 707 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-24", + "lte": "2022-01-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 46 (Jan. 24, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-24" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-84", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 46" + ] + }, + "sort": [ " 97-2022-01-24" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2022-01-24" - ] - }, - { - "_nested": { - "field": "items", - "offset": 136 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-76", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 45 (Jan. 10, 2022)" - ], - "volumeRaw": [ - "Vol. 97 No. 45" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2022-01-10", - "lte": "2022-01-10" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 706 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-10", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 45 (Jan. 10, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-10" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-85", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 45" + ] + }, + "sort": [ " 97-2022-01-10" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2022-01-10" - ] - }, - { - "_nested": { - "field": "items", - "offset": 135 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-77", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" - ], - "volumeRaw": [ - "Vol. 97 No. 44" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2022-01-03", - "lte": "2022-01-10" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 705 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2022-01-03", + "lte": "2022-01-10" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)" + ], + "enumerationChronology_sort": [ + " 97-2022-01-03" + ], + "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:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-86", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 44" + ] + }, + "sort": [ " 97-2022-01-03" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2022-01-03" - ] - }, - { - "_nested": { - "field": "items", - "offset": 134 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-78", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 43 (Dec. 27, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 43" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-12-27", - "lte": "2021-12-27" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 779 + }, + "_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-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 43" + ] + }, + "sort": [ " 97-2021-12-27" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-12-27" - ] - }, - { - "_nested": { - "field": "items", - "offset": 133 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-79", - "status": [ - { - "id": "status:na", - "label": "Not available" - } - ], - "status_packed": [ - "status:na||Not available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 42 (Dec. 20, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 42" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-12-20", - "lte": "2021-12-20" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 704 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-20" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 42" + ] + }, + "sort": [ " 97-2021-12-20" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-12-20" - ] - }, - { - "_nested": { - "field": "items", - "offset": 132 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-80", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 41 (Dec. 13, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 41" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-12-13", - "lte": "2021-12-13" - } - ], - "enumerationChronology_sort": [ - " 97-2021-12-13" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-12-13" - ] - }, - { - "_nested": { - "field": "items", - "offset": 131 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-81", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 40 (Dec. 6, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 40" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-12-06", - "lte": "2021-12-06" - } - ], - "enumerationChronology_sort": [ - " 97-2021-12-06" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-12-06" - ] - }, - { - "_nested": { - "field": "items", - "offset": 142 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-70", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 39 (Nov. 29, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 39" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-11-29", - "lte": "2021-11-29" - } - ], - "enumerationChronology_sort": [ - " 97-2021-11-29" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-11-29" - ] - }, - { - "_nested": { - "field": "items", - "offset": 130 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-82", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 38 (Nov. 22, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 38" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-11-22", - "lte": "2021-11-22" - } - ], - "enumerationChronology_sort": [ - " 97-2021-11-22" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-11-22" - ] - }, - { - "_nested": { - "field": "items", - "offset": 129 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-83", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 37 (Nov. 15, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 37" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-11-15", - "lte": "2021-11-15" - } - ], - "enumerationChronology_sort": [ - " 97-2021-11-15" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-11-15" - ] - }, - { - "_nested": { - "field": "items", - "offset": 128 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-84", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 36 (Nov. 8, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 36" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-11-08", - "lte": "2021-11-08" - } - ], - "enumerationChronology_sort": [ - " 97-2021-11-08" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-11-08" - ] - }, - { - "_nested": { - "field": "items", - "offset": 127 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-85", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 35 (Nov. 1, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 35" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-11-01", - "lte": "2021-11-01" - } - ], - "enumerationChronology_sort": [ - " 97-2021-11-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-11-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 126 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-86", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 34 (Oct. 25, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 34" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-10-25", - "lte": "2021-10-25" - } - ], - "enumerationChronology_sort": [ - " 97-2021-10-25" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-10-25" - ] - }, - { - "_nested": { - "field": "items", - "offset": 125 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-87", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 33 (Oct. 18, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 33" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-10-18", - "lte": "2021-10-18" - } - ], - "enumerationChronology_sort": [ - " 97-2021-10-18" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-10-18" - ] - }, - { - "_nested": { - "field": "items", - "offset": 124 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-88", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 32 (Oct. 11, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 32" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-10-11", - "lte": "2021-10-11" - } - ], - "enumerationChronology_sort": [ - " 97-2021-10-11" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-10-11" - ] - }, - { - "_nested": { - "field": "items", - "offset": 123 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-89", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 31 (Oct. 4, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 31" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-10-04", - "lte": "2021-10-04" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 778 + }, + "_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-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 41" + ] + }, + "sort": [ + " 97-2021-12-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 777 + }, + "_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" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 40" + ] + }, + "sort": [ + " 97-2021-12-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 776 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-29", + "lte": "2021-11-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 39 (Nov. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-29" + ], + "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-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 39" + ] + }, + "sort": [ + " 97-2021-11-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 775 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-22", + "lte": "2021-11-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 38 (Nov. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-22" + ], + "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-16", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 38" + ] + }, + "sort": [ + " 97-2021-11-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 774 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-15", + "lte": "2021-11-15" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 37 (Nov. 15, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-15" + ], + "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-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 37" + ] + }, + "sort": [ + " 97-2021-11-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 773 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-08", + "lte": "2021-11-08" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 36 (Nov. 8, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-08" + ], + "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:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 36" + ] + }, + "sort": [ + " 97-2021-11-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 772 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-11-01", + "lte": "2021-11-01" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 35 (Nov. 1, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-11-01" + ], + "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-19", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 35" + ] + }, + "sort": [ + " 97-2021-11-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 771 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-25", + "lte": "2021-10-25" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 34 (Oct. 25, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-25" + ], + "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-20", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 34" + ] + }, + "sort": [ + " 97-2021-10-25" + ] + }, + { + "_nested": { + "field": "items", + "offset": 770 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-18", + "lte": "2021-10-18" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 33 (Oct. 18, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-18" + ], + "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-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 33" + ] + }, + "sort": [ + " 97-2021-10-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 769 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-11", + "lte": "2021-10-11" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 32 (Oct. 11, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-11" + ], + "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-22", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 32" + ] + }, + "sort": [ + " 97-2021-10-11" + ] + }, + { + "_nested": { + "field": "items", + "offset": 768 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-10-04", + "lte": "2021-10-04" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 31 (Oct. 4, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-10-04" + ], + "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-23", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 31" + ] + }, + "sort": [ " 97-2021-10-04" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-10-04" - ] - }, - { - "_nested": { - "field": "items", - "offset": 141 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-71", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 30 (Sep. 27, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 30" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-09-27", - "lte": "2021-09-27" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 711 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-27", + "lte": "2021-09-27" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 30 (Sep. 27, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-09-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-80", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 30" + ] + }, + "sort": [ " 97-2021-09-27" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-09-27" - ] - }, - { - "_nested": { - "field": "items", - "offset": 122 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-90", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 29 (Sep. 20, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 29" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-09-20", - "lte": "2021-09-20" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 767 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-20", + "lte": "2021-09-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 29 (Sep. 20, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-09-20" + ], + "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-24", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 29" + ] + }, + "sort": [ " 97-2021-09-20" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-09-20" - ] - }, - { - "_nested": { - "field": "items", - "offset": 121 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-91", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 28 (Sep. 13, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 28" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-09-13", - "lte": "2021-09-13" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 766 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-13", + "lte": "2021-09-13" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 28 (Sep. 13, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-09-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-25", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 28" + ] + }, + "sort": [ " 97-2021-09-13" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-09-13" - ] - }, - { - "_nested": { - "field": "items", - "offset": 120 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-92", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 27 (Sep. 6, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 27" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-09-06", - "lte": "2021-09-06" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 765 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-09-06", + "lte": "2021-09-06" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 27 (Sep. 6, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-09-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" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-26", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 27" + ] + }, + "sort": [ " 97-2021-09-06" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-09-06" - ] - }, - { - "_nested": { - "field": "items", - "offset": 119 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-93", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 26 (Aug. 30, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 26" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-08-30", - "lte": "2021-08-30" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 764 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-30", + "lte": "2021-08-30" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 26 (Aug. 30, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-08-30" + ], + "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-27", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 26" + ] + }, + "sort": [ " 97-2021-08-30" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-08-30" - ] - }, - { - "_nested": { - "field": "items", - "offset": 140 - }, - "_score": null, - "_source": { - "uri": "i-h1144777-72", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 25 (Aug. 23, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 25" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-08-23", - "lte": "2021-08-23" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 710 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-23", + "lte": "2021-08-23" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 25 (Aug. 23, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-08-23" + ], + "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-81", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 25" + ] + }, + "sort": [ " 97-2021-08-23" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-08-23" - ] - }, - { - "_nested": { - "field": "items", - "offset": 102 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-16", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 24 (Aug. 16, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 24" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-08-16", - "lte": "2021-08-16" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 809 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-16", + "lte": "2021-08-16" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 24 (Aug. 16, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-08-16" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-6", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 24" + ] + }, + "sort": [ " 97-2021-08-16" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-08-16" - ] - }, - { - "_nested": { - "field": "items", - "offset": 103 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-15", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 23 (Aug. 9, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 23" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-08-09", - "lte": "2021-08-09" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 799 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-09", + "lte": "2021-08-09" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 23 (Aug. 9, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-08-09" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-16", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 23" + ] + }, + "sort": [ " 97-2021-08-09" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-08-09" - ] - }, - { - "_nested": { - "field": "items", - "offset": 101 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-17", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 22 (Aug. 2, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 22" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-08-02", - "lte": "2021-08-02" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 798 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-08-02", + "lte": "2021-08-02" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 22 (Aug. 2, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-08-02" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-17", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 22" + ] + }, + "sort": [ " 97-2021-08-02" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-08-02" - ] - }, - { - "_nested": { - "field": "items", - "offset": 99 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-19", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 21 (Jul. 26, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 21" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-07-26", - "lte": "2021-07-26" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 797 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-26", + "lte": "2021-07-26" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 21 (Jul. 26, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-07-26" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-18", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 21" + ] + }, + "sort": [ " 97-2021-07-26" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-07-26" - ] - }, - { - "_nested": { - "field": "items", - "offset": 100 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-18", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 20 (Jul. 12, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 20" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-07-12", - "lte": "2021-07-12" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 794 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-12", + "lte": "2021-07-12" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 20 (Jul. 12, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-07-12" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-21", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 20" + ] + }, + "sort": [ " 97-2021-07-12" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-07-12" - ] - }, - { - "_nested": { - "field": "items", - "offset": 98 - }, - "_score": null, - "_source": { - "uri": "i-h1059671-20", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 19 (Jul. 5, 2021)" - ], - "volumeRaw": [ - "Vol. 97 No. 19" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "dateRange": [ - { - "gte": "2021-07-05", - "lte": "2021-07-05" - } - ], - "enumerationChronology_sort": [ + ] + }, + { + "_nested": { + "field": "items", + "offset": 800 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-07-05", + "lte": "2021-07-05" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 19 (Jul. 5, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-07-05" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-15", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 19" + ] + }, + "sort": [ " 97-2021-07-05" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*DA+ (New Yorker)" - }, - "sort": [ - " 97-2021-07-05" - ] - } - ] + ] + }, + { + "_nested": { + "field": "items", + "offset": 801 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-28", + "lte": "2021-06-28" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 18 (Jun. 28, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-06-28" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-14", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 18" + ] + }, + "sort": [ + " 97-2021-06-28" + ] + }, + { + "_nested": { + "field": "items", + "offset": 802 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-21", + "lte": "2021-06-21" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 17 (Jun. 21, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-06-21" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-13", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 17" + ] + }, + "sort": [ + " 97-2021-06-21" + ] + }, + { + "_nested": { + "field": "items", + "offset": 803 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-14", + "lte": "2021-06-14" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 16 (Jun. 14, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-06-14" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-12", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 16" + ] + }, + "sort": [ + " 97-2021-06-14" + ] + }, + { + "_nested": { + "field": "items", + "offset": 804 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-06-07", + "lte": "2021-06-07" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 15 (Jun. 7, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-06-07" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-11", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 15" + ] + }, + "sort": [ + " 97-2021-06-07" + ] + }, + { + "_nested": { + "field": "items", + "offset": 805 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-31", + "lte": "2021-05-31" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 14 (May. 31, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-05-31" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-10", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 14" + ] + }, + "sort": [ + " 97-2021-05-31" + ] + }, + { + "_nested": { + "field": "items", + "offset": 806 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-05-24", + "lte": "2021-05-24" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 13 (May. 24, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-05-24" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-9", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 13" + ] + }, + "sort": [ + " 97-2021-05-24" + ] + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 572 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 112 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 88 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 755 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 12 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 1 + }, + { + "key": "status:t||In transit", + "doc_count": 1 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", - "doc_count": 572 - }, - { - "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", - "doc_count": 213 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 66 - }, - { - "key": "loc:rcma2||Offsite", - "doc_count": 66 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:53 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "123170", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10833141\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 8 }, - "item_format": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 704 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 917, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 789 - }, - { - "key": "status:i||At bindery", - "doc_count": 95 - }, - { - "key": "status:oh||On Holdshelf", - "doc_count": 23 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:na||Not available", - "doc_count": 2 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-7ace9db01f2b30beba1d55702c75d623.json b/test/fixtures/query-7ace9db01f2b30beba1d55702c75d623.json new file mode 100644 index 00000000..b5098f34 --- /dev/null +++ b/test/fixtures/query-7ace9db01f2b30beba1d55702c75d623.json @@ -0,0 +1,269 @@ +{ + "body": { + "took": 273, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 107.721466, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b12709113", + "_score": 107.721466, + "_source": { + "extent": [ + "iv, 350 p. : ill., port. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Washington County (Neb.)", + "Washington County (Neb.) -- History" + ], + "publisherLiteral": [ + "Magic city printing co.," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1937 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A history of Washington county, Nebraska" + ], + "shelfMark": [ + "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + ], + "creatorLiteral": [ + "Shrader, Forrest B." + ], + "createdString": [ + "1937" + ], + "dateStartYear": [ + 1937 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + }, + { + "type": "nypl:Bnumber", + "value": "12709113" + } + ], + "updatedAt": 1636332069027, + "publicationStatement": [ + "[Omaha, : Magic city printing co., 1937]" + ], + "identifier": [ + "urn:bnum:12709113" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1937" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Washington County (Neb.) -- History." + ], + "titleDisplay": [ + "A history of Washington county, Nebraska / by Forrest B. Shrader." + ], + "uri": "b12709113", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Omaha, :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433099509238" + ], + "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)", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i16202472", + "shelfMark": [ + "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + }, + { + "type": "bf:Barcode", + "value": "33433099509238" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433099509238" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:14 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "2973", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"IWD \\\\(Washington co.\\\\) \\\\(Shrader, F. B. History of Washington county, Nebraska\\\\)\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"IWD \\\\(Washington co.\\\\) \\\\(Shrader, F. B. History of Washington county, Nebraska\\\\)\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"IWD \\\\(Washington co.\\\\) \\\\(Shrader, F. B. History of Washington county, Nebraska\\\\)\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1258" + }, + "timeout": 30000 + }, + "options": {}, + "id": 76 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-7ca6c9aba76cb9bfe3d8723b854b5cda.json b/test/fixtures/query-7ca6c9aba76cb9bfe3d8723b854b5cda.json deleted file mode 100644 index ea912c0b..00000000 --- a/test/fixtures/query-7ca6c9aba76cb9bfe3d8723b854b5cda.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 77, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 29.905197, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 29.905197, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-7d8af73c10574d2aec7f5a723121d125.json b/test/fixtures/query-7d8af73c10574d2aec7f5a723121d125.json deleted file mode 100644 index ff06cef3..00000000 --- a/test/fixtures/query-7d8af73c10574d2aec7f5a723121d125.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 23, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 29.814077, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 29.814077, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json b/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json index e740c82d..9348e179 100644 --- a/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json +++ b/test/fixtures/query-84acf41118ccc2510fafb67456030a54.json @@ -1,48 +1,100 @@ { - "took": 8, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 0, - "hits": [] - }, - "aggregations": { - "statuses": { - "doc_count": 917, - "nonrecap_statuses": { - "doc_count": 785, - "nonrecap_status_buckets": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 657 - }, - { - "key": "status:i||At bindery", - "doc_count": 95 - }, - { - "key": "status:oh||On Holdshelf", - "doc_count": 23 - }, - { - "key": "status:co||Loaned", - "doc_count": 8 - }, - { - "key": "status:na||Not available", - "doc_count": 2 - } - ] + "body": { + "took": 14, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 0, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 816, + "nonrecap_statuses": { + "doc_count": 684, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 622 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 12 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + } + ] + } } } } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 18:06:24 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "576", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":0,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10833141\"}}]}},\"_source\":{\"includes\":[\"uri\"]},\"aggs\":{\"statuses\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"nonrecap_statuses\":{\"filter\":{\"bool\":{\"must_not\":{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}}}},\"aggs\":{\"nonrecap_status_buckets\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "347" + }, + "timeout": 30000 + }, + "options": {}, + "id": 2 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-8518bdc5e3bd335ea12befb8eaf8b697.json b/test/fixtures/query-8518bdc5e3bd335ea12befb8eaf8b697.json deleted file mode 100644 index 0d0057e5..00000000 --- a/test/fixtures/query-8518bdc5e3bd335ea12befb8eaf8b697.json +++ /dev/null @@ -1,14078 +0,0 @@ -{ - "took": 1458, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 17480766, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000005", - "_score": null, - "_source": { - "extent": [ - "1 score (43 p.) + 1 part (12 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Acc. arr. for piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Soch. 22\"--Caption.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: 11049.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Concertos (Violin)", - "Concertos (Violin) -- Solo with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muzyka" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" - ], - "shelfMark": [ - "JMF 83-336" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Wieniawski, Henri, 1835-1880." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-336" - }, - { - "type": "nypl:Bnumber", - "value": "10000005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-C" - }, - { - "type": "bf:Identifier", - "value": "11049. Muzyka" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100551" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200004" - } - ], - "idOclc": [ - "NYPG001000001-C" - ], - "uniformTitle": [ - "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Moskva : Muzyka, 1980." - ], - "identifier": [ - "urn:bnum:10000005", - "urn:oclc:NYPG001000001-C", - "urn:undefined:11049. Muzyka", - "urn:undefined:NNSZ00100551", - "urn:undefined:(WaOLN)nyp0200004" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Concertos (Violin) -- Solo with piano." - ], - "titleDisplay": [ - "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." - ], - "uri": "b10000005", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Moskva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Concertos, no. 2, op. 22" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10000005" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942022", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-336" - ], - "identifierV2": [ - { - "value": "JMF 83-336", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032711909" - } - ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032711909" - ], - "idBarcode": [ - "33433032711909" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000336" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000007", - "_score": null, - "_source": { - "extent": [ - "14 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 7:35.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: Z.8917.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Guitar music", - "Guitar", - "Guitar -- Studies and exercises" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Editio Musica" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Due studi per chitarra" - ], - "shelfMark": [ - "JMG 83-276" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Patachich, Iván." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-276" - }, - { - "type": "nypl:Bnumber", - "value": "10000007" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-C" - }, - { - "type": "bf:Identifier", - "value": "Z.8917. Editio Musica" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100552" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200006" - } - ], - "idOclc": [ - "NYPG001000002-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Budapest : Editio Musica, c1981." - ], - "identifier": [ - "urn:bnum:10000007", - "urn:oclc:NYPG001000002-C", - "urn:undefined:Z.8917. Editio Musica", - "urn:undefined:NNSZ00100552", - "urn:undefined:(WaOLN)nyp0200006" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Guitar music.", - "Guitar -- Studies and exercises." - ], - "titleDisplay": [ - "Due studi per chitarra / Patachich Iván." - ], - "uri": "b10000007", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Budapest" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-276" - ], - "identifierV2": [ - { - "value": "JMG 83-276", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883591" - } - ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883591" - ], - "idBarcode": [ - "33433032883591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000276" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000009", - "_score": null, - "_source": { - "extent": [ - "30 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Edition Peters Nr. 5489.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: E.P. 13028.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Edition Peters ; C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Miniaturen II : 13 kleine Klavierstücke" - ], - "shelfMark": [ - "JMG 83-278" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Golle, Jürgen, 1942-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-278" - }, - { - "type": "nypl:Bnumber", - "value": "10000009" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters Nr. 5489 Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "E.P. 13028. Edition Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100553" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200008" - } - ], - "idOclc": [ - "NYPG001000003-C" - ], - "uniformTitle": [ - "Miniaturen, no. 2" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000009", - "urn:oclc:NYPG001000003-C", - "urn:undefined:Edition Peters Nr. 5489 Edition Peters", - "urn:undefined:E.P. 13028. Edition Peters", - "urn:undefined:NNSZ00100553", - "urn:undefined:(WaOLN)nyp0200008" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." - ], - "uri": "b10000009", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig : New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen, no. 2" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000009" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942024", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-278" - ], - "identifierV2": [ - { - "value": "JMG 83-278", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883617" - } - ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883617" - ], - "idBarcode": [ - "33433032883617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000278" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000011", - "_score": null, - "_source": { - "extent": [ - "46 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Boeijenga" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1982" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Passie en pasen : suite voor orgel, opus 50" - ], - "shelfMark": [ - "JMG 83-279" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Berg, Jan J. van den." - ], - "createdString": [ - "1976" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-279" - }, - { - "type": "nypl:Bnumber", - "value": "10000011" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-C" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200010" - } - ], - "idOclc": [ - "NYPG001000004-C" - ], - "dateEndYear": [ - 1982 - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." - ], - "identifier": [ - "urn:bnum:10000011", - "urn:oclc:NYPG001000004-C", - "urn:undefined:(WaOLN)nyp0200010" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)", - "Easter music (Organ)", - "Passion music." - ], - "titleDisplay": [ - "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." - ], - "uri": "b10000011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Sneek [Netherlands]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942025", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-279" - ], - "identifierV2": [ - { - "value": "JMG 83-279", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032883625" - } - ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032883625" - ], - "idBarcode": [ - "33433032883625" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000279" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000013", - "_score": null, - "_source": { - "extent": [ - "32 p. of music : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Popular music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Arr. for piano with chord symbols; superlinear German words.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Popular music", - "Popular music -- Germany (East)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Harth Musik Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Disko Treff 1 : Klavier." - ], - "shelfMark": [ - "JMF 83-366" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-366" - }, - { - "type": "nypl:Bnumber", - "value": "10000013" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100555" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200012" - } - ], - "idOclc": [ - "NYPG001000005-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Leipzig : Harth Musik Verlag, c1980." - ], - "identifier": [ - "urn:bnum:10000013", - "urn:oclc:NYPG001000005-C", - "urn:undefined:NNSZ00100555", - "urn:undefined:(WaOLN)nyp0200012" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Popular music -- Germany (East)" - ], - "titleDisplay": [ - "Disko Treff 1 : Klavier." - ], - "uri": "b10000013", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leipzig" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Disko Treff eins." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000013" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942026", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-366" - ], - "identifierV2": [ - { - "value": "JMF 83-366", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032712204" - } - ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032712204" - ], - "idBarcode": [ - "33433032712204" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000366" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000015", - "_score": null, - "_source": { - "extent": [ - "25 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For organ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"A McAfee Music Publication.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: DM 220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Organ)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Belwin-Mills" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Suite no. 1 : 1977" - ], - "shelfMark": [ - "JNG 83-102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hampton, Calvin." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JNG 83-102" - }, - { - "type": "nypl:Bnumber", - "value": "10000015" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-C" - }, - { - "type": "bf:Identifier", - "value": "DM 220. Belwin-Mills" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100556" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200014" - } - ], - "idOclc": [ - "NYPG001000006-C" - ], - "uniformTitle": [ - "Suite, organ, no. 1" - ], - "updatedAt": 1678726416948, - "publicationStatement": [ - "Melville, NY : Belwin-Mills, [1980?]" - ], - "identifier": [ - "urn:bnum:10000015", - "urn:oclc:NYPG001000006-C", - "urn:undefined:DM 220. Belwin-Mills", - "urn:undefined:NNSZ00100556", - "urn:undefined:(WaOLN)nyp0200014" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Organ)" - ], - "titleDisplay": [ - "Suite no. 1 : 1977 / Calvin Hampton." - ], - "uri": "b10000015", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Melville, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Suite, no. 1" - ], - "tableOfContents": [ - "Fanfares -- Antiphon -- Toccata." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000015" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000017", - "_score": null, - "_source": { - "extent": [ - "1 score (17 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For baritone and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Words printed also as text.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 3:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Corbière, Tristan, 1845-1875", - "Corbière, Tristan, 1845-1875 -- Musical settings", - "Songs (Medium voice) with piano" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lettre du Mexique : pour baryton et piano, 1942" - ], - "shelfMark": [ - "JMG 83-395" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Escher, Rudolf." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Corbière, Tristan, 1845-1875." - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-395" - }, - { - "type": "nypl:Bnumber", - "value": "10000017" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100557" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200016" - } - ], - "idOclc": [ - "NYPG001000007-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Amsterdam : Donemus, c1981." - ], - "identifier": [ - "urn:bnum:10000017", - "urn:oclc:NYPG001000007-C", - "urn:undefined:NNSZ00100557", - "urn:undefined:(WaOLN)nyp0200016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Corbière, Tristan, 1845-1875 -- Musical settings.", - "Songs (Medium voice) with piano." - ], - "titleDisplay": [ - "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." - ], - "uri": "b10000017", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000017" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942027", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-395" - ], - "identifierV2": [ - { - "value": "JMG 83-395", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032735007" - } - ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032735007" - ], - "idBarcode": [ - "33433032735007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000395" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000019", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: M 18.487.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Waltzes (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zwölf Walzer und ein Epilog : für Klavier" - ], - "shelfMark": [ - "JMG 83-111" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Benary, Peter." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-111" - }, - { - "type": "nypl:Bnumber", - "value": "10000019" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-C" - }, - { - "type": "bf:Identifier", - "value": "Möseler M 18.487." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200018" - } - ], - "idOclc": [ - "NYPG001000008-C" - ], - "uniformTitle": [ - "Walzer und ein Epilog" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000019", - "urn:oclc:NYPG001000008-C", - "urn:undefined:Möseler M 18.487.", - "urn:undefined:NNSZ00100558", - "urn:undefined:(WaOLN)nyp0200018" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Waltzes (Piano)" - ], - "titleDisplay": [ - "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." - ], - "uri": "b10000019", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Walzer und ein Epilog", - "Walzer und ein Epilog." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000019" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942028", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-111" - ], - "identifierV2": [ - { - "value": "JMG 83-111", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845053" - } - ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845053" - ], - "idBarcode": [ - "33433032845053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000111" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000021", - "_score": null, - "_source": { - "extent": [ - "1 score (51 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: NM 384.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Neue Musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aurora : sinfonischer Prolog : Partitur" - ], - "shelfMark": [ - "JMG 83-113" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Weitzendorf, Heinz." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-113" - }, - { - "type": "nypl:Bnumber", - "value": "10000021" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-C" - }, - { - "type": "bf:Identifier", - "value": "NM 384. Verlag Neue Musik" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100559" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200020" - } - ], - "idOclc": [ - "NYPG001000009-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Berlin : Verlag Neue Musik, c1978." - ], - "identifier": [ - "urn:bnum:10000021", - "urn:oclc:NYPG001000009-C", - "urn:undefined:NM 384. Verlag Neue Musik", - "urn:undefined:NNSZ00100559", - "urn:undefined:(WaOLN)nyp0200020" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Orchestral music -- Scores." - ], - "titleDisplay": [ - "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." - ], - "uri": "b10000021", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Berlin" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000021" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-113" - ], - "identifierV2": [ - { - "value": "JMG 83-113", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032845079" - } - ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032845079" - ], - "idBarcode": [ - "33433032845079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000113" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000023", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (18 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For band or wind ensemble.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Based on the composer's Veni creator spiritus.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: KC913.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Band music", - "Band music -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Shawnee Press" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Musica sacra" - ], - "shelfMark": [ - "JMF 83-38" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Zaninelli, Luigi." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-38" - }, - { - "type": "nypl:Bnumber", - "value": "10000023" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-C" - }, - { - "type": "bf:Identifier", - "value": "KC913 Shawnee Press" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100560" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200022" - } - ], - "idOclc": [ - "NYPG001000010-C" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Delaware Water Gap, Pa. : Shawnee Press, c1979." - ], - "identifier": [ - "urn:bnum:10000023", - "urn:oclc:NYPG001000010-C", - "urn:undefined:KC913 Shawnee Press", - "urn:undefined:NNSZ00100560", - "urn:undefined:(WaOLN)nyp0200022" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Band music -- Scores." - ], - "titleDisplay": [ - "Musica sacra / Luigi Zaninelli." - ], - "uri": "b10000023", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delaware Water Gap, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10000023" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942030", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-38" - ], - "identifierV2": [ - { - "value": "JMF 83-38", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709028" - } - ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709028" - ], - "idBarcode": [ - "33433032709028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000038" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000025", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei Sonatinen für Klavier" - ], - "shelfMark": [ - "JMF 83-107" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stockmeier, Wolfgang." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 179" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-107" - }, - { - "type": "nypl:Bnumber", - "value": "10000025" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100561" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200024" - } - ], - "idOclc": [ - "NYPG001000011-C" - ], - "uniformTitle": [ - "Sonatinas, piano" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Wolfenbüttel : Möseler, c1979." - ], - "identifier": [ - "urn:bnum:10000025", - "urn:oclc:NYPG001000011-C", - "urn:undefined:NNSZ00100561", - "urn:undefined:(WaOLN)nyp0200024" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Drei Sonatinen für Klavier / Wolfgang Stockmeier." - ], - "uri": "b10000025", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatinas" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000025" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-107" - ], - "identifierV2": [ - { - "value": "JMF 83-107", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709697" - } - ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709697" - ], - "idBarcode": [ - "33433032709697" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000107" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000027", - "_score": null, - "_source": { - "extent": [ - "15 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Violin)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Möseler Verlag" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Drei kleine Sonaten : für Violine solo" - ], - "shelfMark": [ - "JMF 83-95" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Köhler, Friedemann." - ], - "createdString": [ - "1979" - ], - "seriesStatement": [ - "Hausmusik ; 172" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-95" - }, - { - "type": "nypl:Bnumber", - "value": "10000027" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100562" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200026" - } - ], - "idOclc": [ - "NYPG001000012-C" - ], - "uniformTitle": [ - "Kleine Sonaten, violin" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Wolfenbüttel : Möseler Verlag, c1979." - ], - "identifier": [ - "urn:bnum:10000027", - "urn:oclc:NYPG001000012-C", - "urn:undefined:NNSZ00100562", - "urn:undefined:(WaOLN)nyp0200026" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Violin)" - ], - "titleDisplay": [ - "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." - ], - "uri": "b10000027", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wolfenbüttel" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kleine Sonaten" - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000027" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-95" - ], - "identifierV2": [ - { - "value": "JMF 83-95", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709572" - } - ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709572" - ], - "idBarcode": [ - "33433032709572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000095" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000029", - "_score": null, - "_source": { - "extent": [ - "16 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 8:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Publisher's no.: 29589.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Organ music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Hansen ; Distribution, Magnamusic-Baton" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cruor : for organ solo, 1977" - ], - "shelfMark": [ - "JMF 83-93" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lorentzen, Bent." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82771131" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-93" - }, - { - "type": "nypl:Bnumber", - "value": "10000029" - }, - { - "type": "bf:Lccn", - "value": "82771131" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-C" - }, - { - "type": "bf:Identifier", - "value": "Wilhelm Hansen edition no. 4372." - }, - { - "type": "bf:Identifier", - "value": "29589." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100563" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200028" - } - ], - "idOclc": [ - "NYPG001000013-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." - ], - "identifier": [ - "urn:bnum:10000029", - "urn:lccn:82771131", - "urn:oclc:NYPG001000013-C", - "urn:undefined:Wilhelm Hansen edition no. 4372.", - "urn:undefined:29589.", - "urn:undefined:NNSZ00100563", - "urn:undefined:(WaOLN)nyp0200028" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Organ music." - ], - "titleDisplay": [ - "Cruor : for organ solo, 1977 / B. Lorentzen." - ], - "uri": "b10000029", - "lccClassification": [ - "M11 .L" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Copenhagen ; New York : [s.l.]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942034", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-93" - ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709556" - } - ], - "physicalLocation": [ - "JMF 83-93" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709556" - ], - "idBarcode": [ - "33433032709556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000093" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000031", - "_score": null, - "_source": { - "extent": [ - "21 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Piano music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "W. Müller" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Neun Miniaturen : für Klavier : op. 52" - ], - "shelfMark": [ - "JMG 83-17" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Petersen, Wilhelm, 1890-1957." - ], - "createdString": [ - "1979" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-17" - }, - { - "type": "nypl:Bnumber", - "value": "10000031" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-C" - }, - { - "type": "bf:Identifier", - "value": "W. Müller WM 1713 SM." - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100564" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200030" - } - ], - "idOclc": [ - "NYPG001000014-C" - ], - "uniformTitle": [ - "Miniaturen" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Heidelberg : W. Müller, c1979." - ], - "identifier": [ - "urn:bnum:10000031", - "urn:oclc:NYPG001000014-C", - "urn:undefined:W. Müller WM 1713 SM.", - "urn:undefined:NNSZ00100564", - "urn:undefined:(WaOLN)nyp0200030" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Piano music." - ], - "titleDisplay": [ - "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." - ], - "uri": "b10000031", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Heidelberg" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Miniaturen", - "Miniaturen." - ], - "dimensions": [ - "32 cm." - ] - }, - "sort": [ - "b10000031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942035", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-17" - ], - "identifierV2": [ - { - "value": "JMG 83-17", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841631" - } - ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841631" - ], - "idBarcode": [ - "33433032841631" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000017" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000033", - "_score": null, - "_source": { - "extent": [ - "1 score (20 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For voice and organ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs (Medium voice) with organ", - "Psalms (Music)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Agápe" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Psalm settings" - ], - "shelfMark": [ - "JMG 83-59" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nelhybel, Vaclav." - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-59" - }, - { - "type": "nypl:Bnumber", - "value": "10000033" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100565" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200032" - } - ], - "idOclc": [ - "NYPG001000015-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Carol Stream, Ill. : Agápe, c1981." - ], - "identifier": [ - "urn:bnum:10000033", - "urn:oclc:NYPG001000015-C", - "urn:undefined:NNSZ00100565", - "urn:undefined:(WaOLN)nyp0200032" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs (Medium voice) with organ.", - "Psalms (Music)" - ], - "titleDisplay": [ - "Psalm settings / Vaclav Nelhybel." - ], - "uri": "b10000033", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Carol Stream, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000033" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942037", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942036", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-59" - ], - "identifierV2": [ - { - "value": "JMG 83-59", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842035" - } - ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842035" - ], - "idBarcode": [ - "33433032842035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000059" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000035", - "_score": null, - "_source": { - "extent": [ - "22 p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Suite.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 12:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Serenade voor piano : 1980" - ], - "shelfMark": [ - "JMG 83-6" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kasbergen, Marinus, 1936-" - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-6" - }, - { - "type": "nypl:Bnumber", - "value": "10000035" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100566" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200034" - } - ], - "idOclc": [ - "NYPG001000016-C" - ], - "uniformTitle": [ - "Serenade, piano" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000035", - "urn:oclc:NYPG001000016-C", - "urn:undefined:NNSZ00100566", - "urn:undefined:(WaOLN)nyp0200034" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Piano)" - ], - "titleDisplay": [ - "Serenade voor piano : 1980 / Marinus Kasbergen." - ], - "uri": "b10000035", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Serenade" - ], - "tableOfContents": [ - "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000035" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10942038", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841490" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841490" - ], - "idBarcode": [ - "33433032841490" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942039", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1123", - "label": "Music Division" - } - ], - "owner_packed": [ - "orgs:1123||Music Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mym32", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:mym32||Performing Arts Research Collections - Music" - ], - "shelfMark": [ - "JMG 83-6" - ], - "identifierV2": [ - { - "value": "JMG 83-6", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JMG 83-6" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000037", - "_score": null, - "_source": { - "extent": [ - "13a p. of music ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: ca. 15:00.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suites (Guitar)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Donemus" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Eight studies for guitar : in form of a suite : 1979" - ], - "shelfMark": [ - "JMG 83-5" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hekster, Walter." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-5" - }, - { - "type": "nypl:Bnumber", - "value": "10000037" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200036" - } - ], - "idOclc": [ - "NYPG001000017-C" - ], - "uniformTitle": [ - "Studies, guitar" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Amsterdam : Donemus, c1980." - ], - "identifier": [ - "urn:bnum:10000037", - "urn:oclc:NYPG001000017-C", - "urn:undefined:NNSZ00100567", - "urn:undefined:(WaOLN)nyp0200036" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suites (Guitar)" - ], - "titleDisplay": [ - "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." - ], - "uri": "b10000037", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Studies" - ], - "dimensions": [ - "35 cm." - ] - }, - "sort": [ - "b10000037" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942040", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-5" - ], - "identifierV2": [ - { - "value": "JMG 83-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032841482" - } - ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032841482" - ], - "idBarcode": [ - "33433032841482" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000005" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000039", - "_score": null, - "_source": { - "extent": [ - "49 p. of music ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sonatas (Piano)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "C.F. Peters" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five sonatas for pianoforte" - ], - "shelfMark": [ - "JMG 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Hässler, Johann Wilhelm, 1747-1822." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Oberdoerffer, Fritz." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000039" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-C" - }, - { - "type": "bf:Identifier", - "value": "Edition Peters no. 66799. C.F. Peters" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100568" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200038" - } - ], - "idOclc": [ - "NYPG001000018-C" - ], - "uniformTitle": [ - "Sonatas, piano. Selections" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New York : C.F. Peters, c1980." - ], - "identifier": [ - "urn:bnum:10000039", - "urn:oclc:NYPG001000018-C", - "urn:undefined:Edition Peters no. 66799. C.F. Peters", - "urn:undefined:NNSZ00100568", - "urn:undefined:(WaOLN)nyp0200038" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sonatas (Piano)" - ], - "titleDisplay": [ - "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." - ], - "uri": "b10000039", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sonatas" - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10000039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942041", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-66" - ], - "identifierV2": [ - { - "value": "JMG 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842100" - } - ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842100" - ], - "idBarcode": [ - "33433032842100" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000041", - "_score": null, - "_source": { - "extent": [ - "1 score (23 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 5 clarinets.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Woodwind quintets (Clarinets (5))", - "Woodwind quintets (Clarinets (5)) -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Primavera" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Encounter" - ], - "shelfMark": [ - "JMF 83-66" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Usher, Julia." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81770739" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 83-66" - }, - { - "type": "nypl:Bnumber", - "value": "10000041" - }, - { - "type": "bf:Lccn", - "value": "81770739" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100569" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200040" - } - ], - "idOclc": [ - "NYPG001000019-C" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Primavera, c1980." - ], - "identifier": [ - "urn:bnum:10000041", - "urn:lccn:81770739", - "urn:oclc:NYPG001000019-C", - "urn:undefined:NNSZ00100569", - "urn:undefined:(WaOLN)nyp0200040" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Woodwind quintets (Clarinets (5)) -- Scores." - ], - "titleDisplay": [ - "Encounter / Julia Usher." - ], - "uri": "b10000041", - "lccClassification": [ - "M557.2.U8 E5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Greeting -- Circular argument -- Escape." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10000041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942042", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMF 83-66" - ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032709291" - } - ], - "physicalLocation": [ - "JMF 83-66" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032709291" - ], - "idBarcode": [ - "33433032709291" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMF 83-000066" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000043", - "_score": null, - "_source": { - "extent": [ - "1 miniature score (28 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 5:00-6:00.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Pl. no.: D.15 579.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Wind ensembles", - "Wind ensembles -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Verlag Doblinger" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Capriccio : für 10 Blasinstrumente" - ], - "shelfMark": [ - "JMC 83-9" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Eröd, Iván." - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Doblingers Studienpartituren ; Stp. 410" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMC 83-9" - }, - { - "type": "nypl:Bnumber", - "value": "10000043" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-C" - }, - { - "type": "bf:Identifier", - "value": "Stp. 410 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "D.15 579 Verlag Doblinger" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100570" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200042" - } - ], - "idOclc": [ - "NYPG001000020-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Wien : Verlag Doblinger, c1980." - ], - "identifier": [ - "urn:bnum:10000043", - "urn:oclc:NYPG001000020-C", - "urn:undefined:Stp. 410 Verlag Doblinger", - "urn:undefined:D.15 579 Verlag Doblinger", - "urn:undefined:NNSZ00100570", - "urn:undefined:(WaOLN)nyp0200042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Wind ensembles -- Scores." - ], - "titleDisplay": [ - "Capriccio : für 10 Blasinstrumente / Iván Eröd." - ], - "uri": "b10000043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Wien" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000010", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMC 83-9" - ], - "identifierV2": [ - { - "value": "JMC 83-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004744128" - } - ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433004744128" - ], - "idBarcode": [ - "33433004744128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMC 83-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000044", - "_score": null, - "_source": { - "extent": [ - "[99] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ngawang Sopa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77901316" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2361" - }, - { - "type": "nypl:Bnumber", - "value": "10000044" - }, - { - "type": "bf:Lccn", - "value": "77901316" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100021" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200043" - } - ], - "idOclc": [ - "NYPG001000021-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Ngawang Sopa, 1976." - ], - "identifier": [ - "urn:bnum:10000044", - "urn:lccn:77901316", - "urn:oclc:NYPG001000021-B", - "urn:undefined:NNSZ00100021", - "urn:undefined:(WaOLN)nyp0200043" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." - ], - "uri": "b10000044", - "lccClassification": [ - "BQ942.Y367 R47 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000044" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000011", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2361" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080645" - } - ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080645" - ], - "idBarcode": [ - "33433015080645" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000045", - "_score": null, - "_source": { - "extent": [ - "12 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Violin music" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sole selling agents, Or-Tav" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Thoughts & feelings : for violin solo" - ], - "shelfMark": [ - "JMG 82-688" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Stutschewsky, Joachim, 1891-1982." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "80770813" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 82-688" - }, - { - "type": "nypl:Bnumber", - "value": "10000045" - }, - { - "type": "bf:Lccn", - "value": "80770813" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100571" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200044" - } - ], - "idOclc": [ - "NYPG001000021-C" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tel-Aviv : Sole selling agents, Or-Tav, c1979." - ], - "identifier": [ - "urn:bnum:10000045", - "urn:lccn:80770813", - "urn:oclc:NYPG001000021-C", - "urn:undefined:NNSZ00100571", - "urn:undefined:(WaOLN)nyp0200044" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Violin music." - ], - "titleDisplay": [ - "Thoughts & feelings : for violin solo / Joachim Stutschewsky." - ], - "uri": "b10000045", - "lccClassification": [ - "M42 .S" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tel-Aviv" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000045" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942043", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 82-688" - ], - "identifierV2": [ - { - "value": "JMG 82-688", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032707568" - } - ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032707568" - ], - "idBarcode": [ - "33433032707568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 82-000688" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000046", - "_score": null, - "_source": { - "extent": [ - "[83] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kye rdor rnam bśad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", - "Tripiṭaka.", - "Tripiṭaka. -- Commentaries", - "Sa-skya-pa lamas", - "Sa-skya-pa lamas -- Tibet", - "Sa-skya-pa lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trayang and Jamyang Samten" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2362" - }, - { - "type": "nypl:Bnumber", - "value": "10000046" - }, - { - "type": "bf:Lccn", - "value": "77900893" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100022" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200045" - } - ], - "idOclc": [ - "NYPG001000022-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Trayang and Jamyang Samten, 1976." - ], - "identifier": [ - "urn:bnum:10000046", - "urn:lccn:77900893", - "urn:oclc:NYPG001000022-B", - "urn:undefined:NNSZ00100022", - "urn:undefined:(WaOLN)nyp0200045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", - "Tripiṭaka. -- Commentaries.", - "Sa-skya-pa lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." - ], - "uri": "b10000046", - "lccClassification": [ - "BG974.0727 T75" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "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" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000046" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080413" - } - ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080413" - ], - "idBarcode": [ - "33433015080413" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000047", - "_score": null, - "_source": { - "extent": [ - "1 score (30 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: 15 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vocalises (High voice) with instrumental ensemble", - "Vocalises (High voice) with instrumental ensemble -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" - ], - "shelfMark": [ - "JMG 83-79" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1979" - ], - "idLccn": [ - "81770634" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-79" - }, - { - "type": "nypl:Bnumber", - "value": "10000047" - }, - { - "type": "bf:Lccn", - "value": "81770634" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200046" - } - ], - "idOclc": [ - "NYPG001000022-C" - ], - "uniformTitle": [ - "Vocalise, soprano, instrumental ensemble, op. 38" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." - ], - "identifier": [ - "urn:bnum:10000047", - "urn:lccn:81770634", - "urn:oclc:NYPG001000022-C", - "urn:undefined:NNSZ00100572", - "urn:undefined:(WaOLN)nyp0200046" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vocalises (High voice) with instrumental ensemble -- Scores." - ], - "titleDisplay": [ - "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." - ], - "uri": "b10000047", - "lccClassification": [ - "M1613.3 .R8 op.38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London, England (Arlington Park House, London W4)" - ], - "titleAlt": [ - "Vocalise, op. 38" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "38 cm." - ] - }, - "sort": [ - "b10000047" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-79" - ], - "identifierV2": [ - { - "value": "JMG 83-79", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842233" - } - ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842233" - ], - "idBarcode": [ - "33433032842233" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000079" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000048", - "_score": null, - "_source": { - "extent": [ - "[150] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kunzang Topgey" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901012" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2382" - }, - { - "type": "nypl:Bnumber", - "value": "10000048" - }, - { - "type": "bf:Lccn", - "value": "76901012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100023" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200047" - } - ], - "idOclc": [ - "NYPG001000023-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Thimphu : Kunzang Topgey, 1976." - ], - "identifier": [ - "urn:bnum:10000048", - "urn:lccn:76901012", - "urn:oclc:NYPG001000023-B", - "urn:undefined:NNSZ00100023", - "urn:undefined:(WaOLN)nyp0200047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000048", - "lccClassification": [ - "BQ7695 .B55" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Thimphu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 38 cm." - ] - }, - "sort": [ - "b10000048" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000013", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080439" - } - ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080439" - ], - "idBarcode": [ - "33433015080439" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002382" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000049", - "_score": null, - "_source": { - "extent": [ - "1 score (105 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Duration: 25 min.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Redcliffe Edition" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Symphony, op. 26 : full score" - ], - "shelfMark": [ - "JMG 83-80" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Routh, Francis." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "81770641" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-80" - }, - { - "type": "nypl:Bnumber", - "value": "10000049" - }, - { - "type": "bf:Lccn", - "value": "81770641" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100573" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200048" - } - ], - "idOclc": [ - "NYPG001000023-C" - ], - "uniformTitle": [ - "Symphony, op. 26" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." - ], - "identifier": [ - "urn:bnum:10000049", - "urn:lccn:81770641", - "urn:oclc:NYPG001000023-C", - "urn:undefined:NNSZ00100573", - "urn:undefined:(WaOLN)nyp0200048" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "Symphony, op. 26 : full score / Francis Routh." - ], - "uri": "b10000049", - "lccClassification": [ - "M1001 .R8615 op.26" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London (Arlington Park House, London W4 4HD)" - ], - "titleAlt": [ - "Symphony, op. 26" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "33 cm." - ] - }, - "sort": [ - "b10000049" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-80" - ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842241" - } - ], - "physicalLocation": [ - "JMG 83-80" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842241" - ], - "idBarcode": [ - "33433032842241" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000080" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000050", - "_score": null, - "_source": { - "extent": [ - "[188] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas", - "Bkaʼ-brgyud-pa lamas -- Tibet", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", - "Spiritual life", - "Spiritual life -- Buddhism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Urgyan Dorje" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901747" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2381" - }, - { - "type": "nypl:Bnumber", - "value": "10000050" - }, - { - "type": "bf:Lccn", - "value": "76901747" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100024" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200049" - } - ], - "idOclc": [ - "NYPG001000024-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New Delhi : Urgyan Dorje, 1976." - ], - "identifier": [ - "urn:bnum:10000050", - "urn:lccn:76901747", - "urn:oclc:NYPG001000024-B", - "urn:undefined:NNSZ00100024", - "urn:undefined:(WaOLN)nyp0200049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", - "Spiritual life -- Buddhism." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000050", - "lccClassification": [ - "BQ942.A187 A35 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000014", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080421" - } - ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080421" - ], - "idBarcode": [ - "33433015080421" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002381" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000051", - "_score": null, - "_source": { - "extent": [ - "score (64 p.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Symphonies", - "Symphonies -- Scores" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Samfundet til udgivelse af dansk musik" - ], - "language": [ - { - "id": "lang:zxx", - "label": "No linguistic content" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" - ], - "shelfMark": [ - "JMG 83-75" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Christiansen, Henning." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "78770955" - ], - "seriesStatement": [ - "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMG 83-75" - }, - { - "type": "nypl:Bnumber", - "value": "10000051" - }, - { - "type": "bf:Lccn", - "value": "78770955" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-C" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100574" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200050" - } - ], - "idOclc": [ - "NYPG001000024-C" - ], - "uniformTitle": [ - "Symphony, no. 2, op. 69c", - "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "København : Samfundet til udgivelse af dansk musik, 1977." - ], - "identifier": [ - "urn:bnum:10000051", - "urn:lccn:78770955", - "urn:oclc:NYPG001000024-C", - "urn:undefined:NNSZ00100574", - "urn:undefined:(WaOLN)nyp0200050" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Symphonies -- Scores." - ], - "titleDisplay": [ - "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." - ], - "uri": "b10000051", - "lccClassification": [ - "M1001 .C533 op.69c" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "København" - ], - "titleAlt": [ - "Symphony, no. 2, op. 69c", - "Den forsvundne." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "37 cm." - ] - }, - "sort": [ - "b10000051" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942046", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMG 83-75" - ], - "identifierV2": [ - { - "value": "JMG 83-75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433032842191" - } - ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433032842191" - ], - "idBarcode": [ - "33433032842191" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Notated music" - ], - "shelfMark_sort": "aJMG 83-000075" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-8f3c5260ceb02bb81bc94e262266c822.json b/test/fixtures/query-8f3c5260ceb02bb81bc94e262266c822.json new file mode 100644 index 00000000..ce4259b7 --- /dev/null +++ b/test/fixtures/query-8f3c5260ceb02bb81bc94e262266c822.json @@ -0,0 +1,334 @@ +{ + "body": { + "took": 1216, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 20014165, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000103", + "_score": null, + "_source": { + "extent": [ + "11, 602 p.: port.;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "75960366" + ], + "seriesStatement": [ + "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" + }, + { + "type": "nypl:Bnumber", + "value": "10000103" + }, + { + "type": "bf:Lccn", + "value": "75960366" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000051-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100051" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200102" + } + ], + "idOclc": [ + "NYPG001000051-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." + ], + "identifier": [ + "urn:bnum:10000103", + "urn:lccn:75960366", + "urn:oclc:NYPG001000051-B", + "urn:undefined:NNSZ00100051", + "urn:undefined:(WaOLN)nyp0200102" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "uri": "b10000103", + "lccClassification": [ + "PJ7842.H2937 A17 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Jazāʼir]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000103" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000042", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "identifierV2": [ + { + "value": "*OFA 82-5137", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000671" + } + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000671" + ], + "idBarcode": [ + "33433002000671" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-005137" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:01 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "3324", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":100,\"size\":1,\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "537" + }, + "timeout": 30000 + }, + "options": {}, + "id": 42 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-8f6a3a4db3edc6e0c6377d0dbd28973e.json b/test/fixtures/query-8f6a3a4db3edc6e0c6377d0dbd28973e.json deleted file mode 100644 index 6bc833c9..00000000 --- a/test/fixtures/query-8f6a3a4db3edc6e0c6377d0dbd28973e.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 301, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.905142, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.905142, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-8f96cd24c7eab6d6aa97fe3e581662ca.json b/test/fixtures/query-8f96cd24c7eab6d6aa97fe3e581662ca.json new file mode 100644 index 00000000..86f9e872 --- /dev/null +++ b/test/fixtures/query-8f96cd24c7eab6d6aa97fe3e581662ca.json @@ -0,0 +1,273 @@ +{ + "body": { + "took": 218, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 119.38063, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b12423567", + "_score": 119.38063, + "_source": { + "extent": [ + "202 p." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Campanella, Tommaso, 1568-1639" + ], + "publisherLiteral": [ + "S. Neaulme" + ], + "language": [ + { + "id": "lang:lat", + "label": "Latin" + } + ], + "createdYear": [ + 1741 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vita Th. Campanellae." + ], + "shelfMark": [ + "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + ], + "creatorLiteral": [ + "Cyprian, Ernst Salomon, 1673-1745." + ], + "createdString": [ + "1741" + ], + "dateStartYear": [ + 1741 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + }, + { + "type": "nypl:Bnumber", + "value": "12423567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp2408048" + } + ], + "updatedAt": 1657655482511, + "publicationStatement": [ + "Trajecti ad Rhenum, S. Neaulme, 1741." + ], + "identifier": [ + "urn:bnum:12423567", + "urn:undefined:(WaOLN)nyp2408048" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1741" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Campanella, Tommaso, 1568-1639." + ], + "titleDisplay": [ + "Vita Th. Campanellae. Autore Ern. Sal. Cypriano. Accedunt hac secunda editione appendices IV. doctorum virorum de Campanellae vita, philosophia & libris schediasmata complectentes." + ], + "uri": "b12423567", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Trajecti ad Rhenum" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:barcode:33433104031624" + ], + "physicalLocation": [ + "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + ], + "shelfMark_sort": "aAN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i16020288", + "shelfMark": [ + "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + }, + { + "type": "bf:Barcode", + "value": "33433104031624" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433104031624" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:13 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "2936", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"AN \\\\(Campanella\\\\) \\\\(Cyprian, E. S. Vita Th. Campanellae\\\\)\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"AN \\\\(Campanella\\\\) \\\\(Cyprian, E. S. Vita Th. Campanellae\\\\)\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"AN \\\\(Campanella\\\\) \\\\(Cyprian, E. S. Vita Th. Campanellae\\\\)\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1189" + }, + "timeout": 30000 + }, + "options": {}, + "id": 73 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-92f4cc751d82f219043b8f57955b9f6d.json b/test/fixtures/query-92f4cc751d82f219043b8f57955b9f6d.json new file mode 100644 index 00000000..9760a0e3 --- /dev/null +++ b/test/fixtures/query-92f4cc751d82f219043b8f57955b9f6d.json @@ -0,0 +1,556 @@ +{ + "body": { + "took": 59, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 2, + "max_score": 31.659212, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "pb1717", + "_score": 31.659212, + "_source": { + "extent": [ + "x, 340 p. : ill. ;" + ], + "subjectLiteral_exploded": [ + "Cats", + "Cats -- Fiction", + "Cats" + ], + "publisherLiteral": [ + "Lothrop, Lee & Shepard Books," + ], + "description": [ + "More than 40 stories and essays about cats by famous writers." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cat encounters : a cat-lover's anthology /" + ], + "createdString": [ + "1979" + ], + "idLccn": [ + " 79002437 " + ], + "contributorLiteral": [ + "Lewis, Gogo.", + "Manley, Seon." + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "1717" + }, + { + "type": "bf:Isbn", + "value": "0688419143" + }, + { + "type": "bf:Lccn", + "value": " 79002437 " + } + ], + "updatedAt": 1523549727960, + "publicationStatement": [ + "New York : Lothrop, Lee & Shepard Books, c1979." + ], + "identifier": [ + "urn:bnum:1717", + "urn:isbn:0688419143", + "urn:lccn: 79002437 " + ], + "idIsbn": [ + "0688419143" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cats -- Fiction.", + "Cats." + ], + "titleDisplay": [ + "Cat encounters : a cat-lover's anthology / selected by Seon Manley & Gogo Lewis." + ], + "uri": "pb1717", + "lccClassification": [ + "SF445.5 .C378" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:0003", + "label": "Princeton University Library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:32101087644330" + ], + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available " + ], + "uri": "pi2775", + "shelfMark": [ + "SF445.5 .C378" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "SF445.5 .C378" + }, + { + "type": "bf:Barcode", + "value": "32101087644330" + } + ], + "idBarcode": [ + "32101087644330" + ], + "owner_packed": [ + "orgs:0003||Princeton University Library" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available " + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "pb9917173506421", + "_score": 31.00416, + "_source": { + "extent": [ + "x, 340 p. : ill. ;" + ], + "nyplSource": [ + "recap-pul" + ], + "subjectLiteral_exploded": [ + "Cats", + "Cats -- Fiction" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lothrop, Lee & Shepard Books" + ], + "description": [ + "More than 40 stories and essays about cats by famous writers." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "title": [ + "Cat encounters : a cat-lover's anthology" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "79002437" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Manley, Seon.", + "Lewis, Gogo." + ], + "dateStartYear": [ + 1979 + ], + "idOclc": [ + "ocm05102099", + "SCSB-817" + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "9917173506421" + }, + { + "type": "bf:Isbn", + "value": "0688419143" + }, + { + "type": "nypl:Oclc", + "value": "ocm05102099" + }, + { + "type": "nypl:Oclc", + "value": "SCSB-817" + }, + { + "type": "bf:Lccn", + "value": "79002437" + }, + { + "type": "bf:Identifier", + "value": "(CStRLIN)NJPG14139839-B" + }, + { + "type": "bf:Identifier", + "value": "(NjP)1717-princetondb" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)ocm05102099" + }, + { + "type": "bf:Identifier", + "value": "(NjP)Voyager1717" + } + ], + "updatedAt": 1696123690892, + "publicationStatement": [ + "New York : Lothrop, Lee & Shepard Books, c1979." + ], + "genreForm": [ + "Fiction." + ], + "idIsbn": [ + "0688419143" + ], + "identifier": [ + "urn:bnum:9917173506421", + "urn:isbn:0688419143", + "urn:oclc:ocm05102099", + "urn:oclc:SCSB-817", + "urn:lccn:79002437", + "urn:identifier:(CStRLIN)NJPG14139839-B", + "urn:identifier:(NjP)1717-princetondb", + "urn:identifier:(OCoLC)ocm05102099", + "urn:identifier:(NjP)Voyager1717" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cats -- Fiction.", + "Cats." + ], + "titleDisplay": [ + "Cat encounters : a cat-lover's anthology / selected by Seon Manley & Gogo Lewis." + ], + "uri": "pb9917173506421", + "lccClassification": [ + "SF445.5 .C378" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0688419143" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "formatLiteral": [ + "Text" + ], + "idBarcode": [ + "32101087644330" + ], + "identifier": [ + "urn:shelfmark:SF445.5 .C378", + "urn:barcode:32101087644330" + ], + "identifierV2": [ + { + "value": "SF445.5 .C378", + "type": "bf:ShelfMark" + }, + { + "value": "32101087644330", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:0003", + "label": "Princeton University Library" + } + ], + "owner_packed": [ + "orgs:0003||Princeton University Library" + ], + "physicalLocation": [ + "SF445.5 .C378" + ], + "recapCustomerCode": [ + "PA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "SF445.5 .C378" + ], + "shelfMark_sort": "aSF445.5 .C000378", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "pi23581765460006421" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:13 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "5895", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"SF445.5 .C378\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"SF445.5 .C378\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"SF445.5 .C378\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1045" + }, + "timeout": 30000 + }, + "options": {}, + "id": 74 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-99abeeea550928cd544770101ca7fff8.json b/test/fixtures/query-99abeeea550928cd544770101ca7fff8.json new file mode 100644 index 00000000..5d5586b3 --- /dev/null +++ b/test/fixtures/query-99abeeea550928cd544770101ca7fff8.json @@ -0,0 +1,13972 @@ +{ + "body": { + "took": 545, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 20014165, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000005", + "_score": null, + "_source": { + "extent": [ + "1 score (43 p.) + 1 part (12 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Acc. arr. for piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Soch. 22\"--Caption.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: 11049.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Concertos (Violin)", + "Concertos (Violin) -- Solo with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muzyka" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" + ], + "shelfMark": [ + "JMF 83-336" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wieniawski, Henri, 1835-1880." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-336" + }, + { + "type": "nypl:Bnumber", + "value": "10000005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-C" + }, + { + "type": "bf:Identifier", + "value": "11049. Muzyka" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100551" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200004" + } + ], + "idOclc": [ + "NYPG001000001-C" + ], + "uniformTitle": [ + "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Moskva : Muzyka, 1980." + ], + "identifier": [ + "urn:bnum:10000005", + "urn:oclc:NYPG001000001-C", + "urn:undefined:11049. Muzyka", + "urn:undefined:NNSZ00100551", + "urn:undefined:(WaOLN)nyp0200004" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Concertos (Violin) -- Solo with piano." + ], + "titleDisplay": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." + ], + "uri": "b10000005", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Moskva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Concertos, no. 2, op. 22" + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10000005" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-336" + ], + "identifierV2": [ + { + "value": "JMF 83-336", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032711909" + } + ], + "physicalLocation": [ + "JMF 83-336" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032711909" + ], + "idBarcode": [ + "33433032711909" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000336" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000007", + "_score": null, + "_source": { + "extent": [ + "14 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 7:35.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: Z.8917.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Guitar music", + "Guitar", + "Guitar -- Studies and exercises" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editio Musica" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Due studi per chitarra" + ], + "shelfMark": [ + "JMG 83-276" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Patachich, Iván." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-276" + }, + { + "type": "nypl:Bnumber", + "value": "10000007" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-C" + }, + { + "type": "bf:Identifier", + "value": "Z.8917. Editio Musica" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100552" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200006" + } + ], + "idOclc": [ + "NYPG001000002-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Budapest : Editio Musica, c1981." + ], + "identifier": [ + "urn:bnum:10000007", + "urn:oclc:NYPG001000002-C", + "urn:undefined:Z.8917. Editio Musica", + "urn:undefined:NNSZ00100552", + "urn:undefined:(WaOLN)nyp0200006" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Guitar music.", + "Guitar -- Studies and exercises." + ], + "titleDisplay": [ + "Due studi per chitarra / Patachich Iván." + ], + "uri": "b10000007", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Budapest" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-276" + ], + "identifierV2": [ + { + "value": "JMG 83-276", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883591" + } + ], + "physicalLocation": [ + "JMG 83-276" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883591" + ], + "idBarcode": [ + "33433032883591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000276" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000009", + "_score": null, + "_source": { + "extent": [ + "30 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Edition Peters Nr. 5489.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: E.P. 13028.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Edition Peters ; C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miniaturen II : 13 kleine Klavierstücke" + ], + "shelfMark": [ + "JMG 83-278" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Golle, Jürgen, 1942-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-278" + }, + { + "type": "nypl:Bnumber", + "value": "10000009" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters Nr. 5489 Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "E.P. 13028. Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100553" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200008" + } + ], + "idOclc": [ + "NYPG001000003-C" + ], + "uniformTitle": [ + "Miniaturen, no. 2" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000009", + "urn:oclc:NYPG001000003-C", + "urn:undefined:Edition Peters Nr. 5489 Edition Peters", + "urn:undefined:E.P. 13028. Edition Peters", + "urn:undefined:NNSZ00100553", + "urn:undefined:(WaOLN)nyp0200008" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." + ], + "uri": "b10000009", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig : New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen, no. 2" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000009" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-278" + ], + "identifierV2": [ + { + "value": "JMG 83-278", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883617" + } + ], + "physicalLocation": [ + "JMG 83-278" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883617" + ], + "idBarcode": [ + "33433032883617" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000278" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000011", + "_score": null, + "_source": { + "extent": [ + "46 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Boeijenga" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1982" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Passie en pasen : suite voor orgel, opus 50" + ], + "shelfMark": [ + "JMG 83-279" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Berg, Jan J. van den." + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-279" + }, + { + "type": "nypl:Bnumber", + "value": "10000011" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-C" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200010" + } + ], + "idOclc": [ + "NYPG001000004-C" + ], + "dateEndYear": [ + 1982 + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." + ], + "identifier": [ + "urn:bnum:10000011", + "urn:oclc:NYPG001000004-C", + "urn:undefined:(WaOLN)nyp0200010" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music." + ], + "titleDisplay": [ + "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." + ], + "uri": "b10000011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Sneek [Netherlands]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-279" + ], + "identifierV2": [ + { + "value": "JMG 83-279", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883625" + } + ], + "physicalLocation": [ + "JMG 83-279" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883625" + ], + "idBarcode": [ + "33433032883625" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000279" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000013", + "_score": null, + "_source": { + "extent": [ + "32 p. of music : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Popular music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Arr. for piano with chord symbols; superlinear German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- Germany (East)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harth Musik Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Disko Treff 1 : Klavier." + ], + "shelfMark": [ + "JMF 83-366" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-366" + }, + { + "type": "nypl:Bnumber", + "value": "10000013" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100555" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200012" + } + ], + "idOclc": [ + "NYPG001000005-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Leipzig : Harth Musik Verlag, c1980." + ], + "identifier": [ + "urn:bnum:10000013", + "urn:oclc:NYPG001000005-C", + "urn:undefined:NNSZ00100555", + "urn:undefined:(WaOLN)nyp0200012" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- Germany (East)" + ], + "titleDisplay": [ + "Disko Treff 1 : Klavier." + ], + "uri": "b10000013", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Disko Treff eins." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000013" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-366" + ], + "identifierV2": [ + { + "value": "JMF 83-366", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032712204" + } + ], + "physicalLocation": [ + "JMF 83-366" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032712204" + ], + "idBarcode": [ + "33433032712204" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000366" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000015", + "_score": null, + "_source": { + "extent": [ + "25 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For organ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"A McAfee Music Publication.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: DM 220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Belwin-Mills" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suite no. 1 : 1977" + ], + "shelfMark": [ + "JNG 83-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hampton, Calvin." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JNG 83-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-C" + }, + { + "type": "bf:Identifier", + "value": "DM 220. Belwin-Mills" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100556" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200014" + } + ], + "idOclc": [ + "NYPG001000006-C" + ], + "uniformTitle": [ + "Suite, organ, no. 1" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Melville, NY : Belwin-Mills, [1980?]" + ], + "identifier": [ + "urn:bnum:10000015", + "urn:oclc:NYPG001000006-C", + "urn:undefined:DM 220. Belwin-Mills", + "urn:undefined:NNSZ00100556", + "urn:undefined:(WaOLN)nyp0200014" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)" + ], + "titleDisplay": [ + "Suite no. 1 : 1977 / Calvin Hampton." + ], + "uri": "b10000015", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Melville, NY" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Suite, no. 1" + ], + "tableOfContents": [ + "Fanfares -- Antiphon -- Toccata." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000015" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000017", + "_score": null, + "_source": { + "extent": [ + "1 score (17 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For baritone and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Words printed also as text.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 3:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbière, Tristan, 1845-1875", + "Corbière, Tristan, 1845-1875 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lettre du Mexique : pour baryton et piano, 1942" + ], + "shelfMark": [ + "JMG 83-395" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Escher, Rudolf." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Corbière, Tristan, 1845-1875." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-395" + }, + { + "type": "nypl:Bnumber", + "value": "10000017" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100557" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200016" + } + ], + "idOclc": [ + "NYPG001000007-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Amsterdam : Donemus, c1981." + ], + "identifier": [ + "urn:bnum:10000017", + "urn:oclc:NYPG001000007-C", + "urn:undefined:NNSZ00100557", + "urn:undefined:(WaOLN)nyp0200016" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbière, Tristan, 1845-1875 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." + ], + "uri": "b10000017", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000017" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-395" + ], + "identifierV2": [ + { + "value": "JMG 83-395", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032735007" + } + ], + "physicalLocation": [ + "JMG 83-395" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032735007" + ], + "idBarcode": [ + "33433032735007" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000395" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000019", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: M 18.487.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Waltzes (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zwölf Walzer und ein Epilog : für Klavier" + ], + "shelfMark": [ + "JMG 83-111" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Benary, Peter." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-111" + }, + { + "type": "nypl:Bnumber", + "value": "10000019" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-C" + }, + { + "type": "bf:Identifier", + "value": "Möseler M 18.487." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200018" + } + ], + "idOclc": [ + "NYPG001000008-C" + ], + "uniformTitle": [ + "Walzer und ein Epilog" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000019", + "urn:oclc:NYPG001000008-C", + "urn:undefined:Möseler M 18.487.", + "urn:undefined:NNSZ00100558", + "urn:undefined:(WaOLN)nyp0200018" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Waltzes (Piano)" + ], + "titleDisplay": [ + "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." + ], + "uri": "b10000019", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Walzer und ein Epilog", + "Walzer und ein Epilog." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000019" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-111" + ], + "identifierV2": [ + { + "value": "JMG 83-111", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845053" + } + ], + "physicalLocation": [ + "JMG 83-111" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845053" + ], + "idBarcode": [ + "33433032845053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000111" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000021", + "_score": null, + "_source": { + "extent": [ + "1 score (51 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: NM 384.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Orchestral music", + "Orchestral music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Neue Musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aurora : sinfonischer Prolog : Partitur" + ], + "shelfMark": [ + "JMG 83-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Weitzendorf, Heinz." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000021" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-C" + }, + { + "type": "bf:Identifier", + "value": "NM 384. Verlag Neue Musik" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100559" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200020" + } + ], + "idOclc": [ + "NYPG001000009-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Berlin : Verlag Neue Musik, c1978." + ], + "identifier": [ + "urn:bnum:10000021", + "urn:oclc:NYPG001000009-C", + "urn:undefined:NM 384. Verlag Neue Musik", + "urn:undefined:NNSZ00100559", + "urn:undefined:(WaOLN)nyp0200020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Orchestral music -- Scores." + ], + "titleDisplay": [ + "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." + ], + "uri": "b10000021", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000021" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-113" + ], + "identifierV2": [ + { + "value": "JMG 83-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845079" + } + ], + "physicalLocation": [ + "JMG 83-113" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845079" + ], + "idBarcode": [ + "33433032845079" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000023", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (18 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For band or wind ensemble.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Based on the composer's Veni creator spiritus.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: KC913.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Band music", + "Band music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shawnee Press" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Musica sacra" + ], + "shelfMark": [ + "JMF 83-38" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zaninelli, Luigi." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-38" + }, + { + "type": "nypl:Bnumber", + "value": "10000023" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-C" + }, + { + "type": "bf:Identifier", + "value": "KC913 Shawnee Press" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100560" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200022" + } + ], + "idOclc": [ + "NYPG001000010-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Delaware Water Gap, Pa. : Shawnee Press, c1979." + ], + "identifier": [ + "urn:bnum:10000023", + "urn:oclc:NYPG001000010-C", + "urn:undefined:KC913 Shawnee Press", + "urn:undefined:NNSZ00100560", + "urn:undefined:(WaOLN)nyp0200022" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Band music -- Scores." + ], + "titleDisplay": [ + "Musica sacra / Luigi Zaninelli." + ], + "uri": "b10000023", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delaware Water Gap, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000023" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-38" + ], + "identifierV2": [ + { + "value": "JMF 83-38", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709028" + } + ], + "physicalLocation": [ + "JMF 83-38" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709028" + ], + "idBarcode": [ + "33433032709028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000038" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000025", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei Sonatinen für Klavier" + ], + "shelfMark": [ + "JMF 83-107" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stockmeier, Wolfgang." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-107" + }, + { + "type": "nypl:Bnumber", + "value": "10000025" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100561" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200024" + } + ], + "idOclc": [ + "NYPG001000011-C" + ], + "uniformTitle": [ + "Sonatinas, piano" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000025", + "urn:oclc:NYPG001000011-C", + "urn:undefined:NNSZ00100561", + "urn:undefined:(WaOLN)nyp0200024" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Drei Sonatinen für Klavier / Wolfgang Stockmeier." + ], + "uri": "b10000025", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatinas" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000025" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-107" + ], + "identifierV2": [ + { + "value": "JMF 83-107", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709697" + } + ], + "physicalLocation": [ + "JMF 83-107" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709697" + ], + "idBarcode": [ + "33433032709697" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000107" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000027", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Violin)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei kleine Sonaten : für Violine solo" + ], + "shelfMark": [ + "JMF 83-95" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Köhler, Friedemann." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 172" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-95" + }, + { + "type": "nypl:Bnumber", + "value": "10000027" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100562" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200026" + } + ], + "idOclc": [ + "NYPG001000012-C" + ], + "uniformTitle": [ + "Kleine Sonaten, violin" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Wolfenbüttel : Möseler Verlag, c1979." + ], + "identifier": [ + "urn:bnum:10000027", + "urn:oclc:NYPG001000012-C", + "urn:undefined:NNSZ00100562", + "urn:undefined:(WaOLN)nyp0200026" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Violin)" + ], + "titleDisplay": [ + "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." + ], + "uri": "b10000027", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kleine Sonaten" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000027" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-95" + ], + "identifierV2": [ + { + "value": "JMF 83-95", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709572" + } + ], + "physicalLocation": [ + "JMF 83-95" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709572" + ], + "idBarcode": [ + "33433032709572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000095" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000029", + "_score": null, + "_source": { + "extent": [ + "16 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: 29589.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Organ music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Hansen ; Distribution, Magnamusic-Baton" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cruor : for organ solo, 1977" + ], + "shelfMark": [ + "JMF 83-93" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lorentzen, Bent." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82771131" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "nypl:Bnumber", + "value": "10000029" + }, + { + "type": "bf:Lccn", + "value": "82771131" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-C" + }, + { + "type": "bf:Identifier", + "value": "Wilhelm Hansen edition no. 4372." + }, + { + "type": "bf:Identifier", + "value": "29589." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100563" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200028" + } + ], + "idOclc": [ + "NYPG001000013-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." + ], + "identifier": [ + "urn:bnum:10000029", + "urn:lccn:82771131", + "urn:oclc:NYPG001000013-C", + "urn:undefined:Wilhelm Hansen edition no. 4372.", + "urn:undefined:29589.", + "urn:undefined:NNSZ00100563", + "urn:undefined:(WaOLN)nyp0200028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Organ music." + ], + "titleDisplay": [ + "Cruor : for organ solo, 1977 / B. Lorentzen." + ], + "uri": "b10000029", + "lccClassification": [ + "M11 .L" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Copenhagen ; New York : [s.l.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-93" + ], + "identifierV2": [ + { + "value": "JMF 83-93", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" + } + ], + "physicalLocation": [ + "JMF 83-93" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709556" + ], + "idBarcode": [ + "33433032709556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000093" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000031", + "_score": null, + "_source": { + "extent": [ + "21 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Müller" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Neun Miniaturen : für Klavier : op. 52" + ], + "shelfMark": [ + "JMG 83-17" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Petersen, Wilhelm, 1890-1957." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-17" + }, + { + "type": "nypl:Bnumber", + "value": "10000031" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-C" + }, + { + "type": "bf:Identifier", + "value": "W. Müller WM 1713 SM." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100564" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200030" + } + ], + "idOclc": [ + "NYPG001000014-C" + ], + "uniformTitle": [ + "Miniaturen" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Heidelberg : W. Müller, c1979." + ], + "identifier": [ + "urn:bnum:10000031", + "urn:oclc:NYPG001000014-C", + "urn:undefined:W. Müller WM 1713 SM.", + "urn:undefined:NNSZ00100564", + "urn:undefined:(WaOLN)nyp0200030" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." + ], + "uri": "b10000031", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Heidelberg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen", + "Miniaturen." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-17" + ], + "identifierV2": [ + { + "value": "JMG 83-17", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841631" + } + ], + "physicalLocation": [ + "JMG 83-17" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841631" + ], + "idBarcode": [ + "33433032841631" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000033", + "_score": null, + "_source": { + "extent": [ + "1 score (20 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For voice and organ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs (Medium voice) with organ", + "Psalms (Music)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Agápe" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Psalm settings" + ], + "shelfMark": [ + "JMG 83-59" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nelhybel, Vaclav." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-59" + }, + { + "type": "nypl:Bnumber", + "value": "10000033" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100565" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200032" + } + ], + "idOclc": [ + "NYPG001000015-C" + ], + "updatedAt": 1689901710981, + "publicationStatement": [ + "Carol Stream, Ill. : Agápe, c1981." + ], + "identifier": [ + "urn:bnum:10000033", + "urn:oclc:NYPG001000015-C", + "urn:undefined:NNSZ00100565", + "urn:undefined:(WaOLN)nyp0200032" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs (Medium voice) with organ.", + "Psalms (Music)" + ], + "titleDisplay": [ + "Psalm settings / Vaclav Nelhybel." + ], + "uri": "b10000033", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Carol Stream, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000033" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-59" + ], + "identifierV2": [ + { + "value": "JMG 83-59", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842035" + } + ], + "physicalLocation": [ + "JMG 83-59" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842035" + ], + "idBarcode": [ + "33433032842035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000059" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000035", + "_score": null, + "_source": { + "extent": [ + "22 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Suite.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 12:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Serenade voor piano : 1980" + ], + "shelfMark": [ + "JMG 83-6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kasbergen, Marinus, 1936-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-6" + }, + { + "type": "nypl:Bnumber", + "value": "10000035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100566" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200034" + } + ], + "idOclc": [ + "NYPG001000016-C" + ], + "uniformTitle": [ + "Serenade, piano" + ], + "updatedAt": 1689901710976, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000035", + "urn:oclc:NYPG001000016-C", + "urn:undefined:NNSZ00100566", + "urn:undefined:(WaOLN)nyp0200034" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Piano)" + ], + "titleDisplay": [ + "Serenade voor piano : 1980 / Marinus Kasbergen." + ], + "uri": "b10000035", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Serenade" + ], + "tableOfContents": [ + "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000035" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-6" + ], + "identifierV2": [ + { + "value": "JMG 83-6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841490" + } + ], + "physicalLocation": [ + "JMG 83-6" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841490" + ], + "idBarcode": [ + "33433032841490" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000037", + "_score": null, + "_source": { + "extent": [ + "13a p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 15:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Guitar)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Eight studies for guitar : in form of a suite : 1979" + ], + "shelfMark": [ + "JMG 83-5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hekster, Walter." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-5" + }, + { + "type": "nypl:Bnumber", + "value": "10000037" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200036" + } + ], + "idOclc": [ + "NYPG001000017-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000037", + "urn:oclc:NYPG001000017-C", + "urn:undefined:NNSZ00100567", + "urn:undefined:(WaOLN)nyp0200036" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Guitar)" + ], + "titleDisplay": [ + "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." + ], + "uri": "b10000037", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000037" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-5" + ], + "identifierV2": [ + { + "value": "JMG 83-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841482" + } + ], + "physicalLocation": [ + "JMG 83-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841482" + ], + "idBarcode": [ + "33433032841482" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000005" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000039", + "_score": null, + "_source": { + "extent": [ + "49 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five sonatas for pianoforte" + ], + "shelfMark": [ + "JMG 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hässler, Johann Wilhelm, 1747-1822." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Oberdoerffer, Fritz." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000039" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters no. 66799. C.F. Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200038" + } + ], + "idOclc": [ + "NYPG001000018-C" + ], + "uniformTitle": [ + "Sonatas, piano. Selections" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000039", + "urn:oclc:NYPG001000018-C", + "urn:undefined:Edition Peters no. 66799. C.F. Peters", + "urn:undefined:NNSZ00100568", + "urn:undefined:(WaOLN)nyp0200038" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." + ], + "uri": "b10000039", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatas" + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-66" + ], + "identifierV2": [ + { + "value": "JMG 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842100" + } + ], + "physicalLocation": [ + "JMG 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842100" + ], + "idBarcode": [ + "33433032842100" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000041", + "_score": null, + "_source": { + "extent": [ + "1 score (23 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 5 clarinets.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Woodwind quintets (Clarinets (5))", + "Woodwind quintets (Clarinets (5)) -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Primavera" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Encounter" + ], + "shelfMark": [ + "JMF 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Usher, Julia." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "81770739" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000041" + }, + { + "type": "bf:Lccn", + "value": "81770739" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100569" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200040" + } + ], + "idOclc": [ + "NYPG001000019-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "London : Primavera, c1980." + ], + "identifier": [ + "urn:bnum:10000041", + "urn:lccn:81770739", + "urn:oclc:NYPG001000019-C", + "urn:undefined:NNSZ00100569", + "urn:undefined:(WaOLN)nyp0200040" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwind quintets (Clarinets (5)) -- Scores." + ], + "titleDisplay": [ + "Encounter / Julia Usher." + ], + "uri": "b10000041", + "lccClassification": [ + "M557.2.U8 E5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Greeting -- Circular argument -- Escape." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942042", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-66" + ], + "identifierV2": [ + { + "value": "JMF 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" + } + ], + "physicalLocation": [ + "JMF 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709291" + ], + "idBarcode": [ + "33433032709291" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000043", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (28 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 5:00-6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: D.15 579.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Wind ensembles", + "Wind ensembles -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Doblinger" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Capriccio : für 10 Blasinstrumente" + ], + "shelfMark": [ + "JMC 83-9" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Eröd, Iván." + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Doblingers Studienpartituren ; Stp. 410" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 83-9" + }, + { + "type": "nypl:Bnumber", + "value": "10000043" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-C" + }, + { + "type": "bf:Identifier", + "value": "Stp. 410 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "D.15 579 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200042" + } + ], + "idOclc": [ + "NYPG001000020-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wien : Verlag Doblinger, c1980." + ], + "identifier": [ + "urn:bnum:10000043", + "urn:oclc:NYPG001000020-C", + "urn:undefined:Stp. 410 Verlag Doblinger", + "urn:undefined:D.15 579 Verlag Doblinger", + "urn:undefined:NNSZ00100570", + "urn:undefined:(WaOLN)nyp0200042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Wind ensembles -- Scores." + ], + "titleDisplay": [ + "Capriccio : für 10 Blasinstrumente / Iván Eröd." + ], + "uri": "b10000043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wien" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMC 83-9" + ], + "identifierV2": [ + { + "value": "JMC 83-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004744128" + } + ], + "physicalLocation": [ + "JMC 83-9" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433004744128" + ], + "idBarcode": [ + "33433004744128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMC 83-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000044", + "_score": null, + "_source": { + "extent": [ + "[99] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ngawang Sopa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77901316" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" + }, + { + "type": "nypl:Bnumber", + "value": "10000044" + }, + { + "type": "bf:Lccn", + "value": "77901316" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100021" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200043" + } + ], + "idOclc": [ + "NYPG001000021-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Ngawang Sopa, 1976." + ], + "identifier": [ + "urn:bnum:10000044", + "urn:lccn:77901316", + "urn:oclc:NYPG001000021-B", + "urn:undefined:NNSZ00100021", + "urn:undefined:(WaOLN)nyp0200043" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." + ], + "uri": "b10000044", + "lccClassification": [ + "BQ942.Y367 R47 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000044" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000011", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2361" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2361", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080645" + } + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080645" + ], + "idBarcode": [ + "33433015080645" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002361" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000045", + "_score": null, + "_source": { + "extent": [ + "12 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Violin music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sole selling agents, Or-Tav" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Thoughts & feelings : for violin solo" + ], + "shelfMark": [ + "JMG 82-688" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stutschewsky, Joachim, 1891-1982." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "80770813" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 82-688" + }, + { + "type": "nypl:Bnumber", + "value": "10000045" + }, + { + "type": "bf:Lccn", + "value": "80770813" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100571" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200044" + } + ], + "idOclc": [ + "NYPG001000021-C" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Tel-Aviv : Sole selling agents, Or-Tav, c1979." + ], + "identifier": [ + "urn:bnum:10000045", + "urn:lccn:80770813", + "urn:oclc:NYPG001000021-C", + "urn:undefined:NNSZ00100571", + "urn:undefined:(WaOLN)nyp0200044" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Violin music." + ], + "titleDisplay": [ + "Thoughts & feelings : for violin solo / Joachim Stutschewsky." + ], + "uri": "b10000045", + "lccClassification": [ + "M42 .S" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tel-Aviv" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000045" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942043", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 82-688" + ], + "identifierV2": [ + { + "value": "JMG 82-688", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032707568" + } + ], + "physicalLocation": [ + "JMG 82-688" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032707568" + ], + "idBarcode": [ + "33433032707568" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 82-000688" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000046", + "_score": null, + "_source": { + "extent": [ + "[83] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kye rdor rnam bśad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", + "Tripiṭaka.", + "Tripiṭaka. -- Commentaries", + "Sa-skya-pa lamas", + "Sa-skya-pa lamas -- Tibet", + "Sa-skya-pa lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trayang and Jamyang Samten" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900893" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, + { + "type": "nypl:Bnumber", + "value": "10000046" + }, + { + "type": "bf:Lccn", + "value": "77900893" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100022" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200045" + } + ], + "idOclc": [ + "NYPG001000022-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Trayang and Jamyang Samten, 1976." + ], + "identifier": [ + "urn:bnum:10000046", + "urn:lccn:77900893", + "urn:oclc:NYPG001000022-B", + "urn:undefined:NNSZ00100022", + "urn:undefined:(WaOLN)nyp0200045" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", + "Tripiṭaka. -- Commentaries.", + "Sa-skya-pa lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." + ], + "uri": "b10000046", + "lccClassification": [ + "BG974.0727 T75" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "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" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000046" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2362", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080413" + } + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080413" + ], + "idBarcode": [ + "33433015080413" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002362" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000047", + "_score": null, + "_source": { + "extent": [ + "1 score (30 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 15 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vocalises (High voice) with instrumental ensemble", + "Vocalises (High voice) with instrumental ensemble -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" + ], + "shelfMark": [ + "JMG 83-79" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "81770634" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-79" + }, + { + "type": "nypl:Bnumber", + "value": "10000047" + }, + { + "type": "bf:Lccn", + "value": "81770634" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200046" + } + ], + "idOclc": [ + "NYPG001000022-C" + ], + "uniformTitle": [ + "Vocalise, soprano, instrumental ensemble, op. 38" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." + ], + "identifier": [ + "urn:bnum:10000047", + "urn:lccn:81770634", + "urn:oclc:NYPG001000022-C", + "urn:undefined:NNSZ00100572", + "urn:undefined:(WaOLN)nyp0200046" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vocalises (High voice) with instrumental ensemble -- Scores." + ], + "titleDisplay": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." + ], + "uri": "b10000047", + "lccClassification": [ + "M1613.3 .R8 op.38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London, England (Arlington Park House, London W4)" + ], + "titleAlt": [ + "Vocalise, op. 38" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "38 cm." + ] + }, + "sort": [ + "b10000047" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-79" + ], + "identifierV2": [ + { + "value": "JMG 83-79", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842233" + } + ], + "physicalLocation": [ + "JMG 83-79" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842233" + ], + "idBarcode": [ + "33433032842233" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000079" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000048", + "_score": null, + "_source": { + "extent": [ + "[150] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kunzang Topgey" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901012" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" + }, + { + "type": "nypl:Bnumber", + "value": "10000048" + }, + { + "type": "bf:Lccn", + "value": "76901012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100023" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200047" + } + ], + "idOclc": [ + "NYPG001000023-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Thimphu : Kunzang Topgey, 1976." + ], + "identifier": [ + "urn:bnum:10000048", + "urn:lccn:76901012", + "urn:oclc:NYPG001000023-B", + "urn:undefined:NNSZ00100023", + "urn:undefined:(WaOLN)nyp0200047" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000048", + "lccClassification": [ + "BQ7695 .B55" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Thimphu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 38 cm." + ] + }, + "sort": [ + "b10000048" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000013", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2382", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080439" + } + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080439" + ], + "idBarcode": [ + "33433015080439" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002382" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000049", + "_score": null, + "_source": { + "extent": [ + "1 score (105 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 25 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Symphony, op. 26 : full score" + ], + "shelfMark": [ + "JMG 83-80" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "81770641" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "nypl:Bnumber", + "value": "10000049" + }, + { + "type": "bf:Lccn", + "value": "81770641" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100573" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200048" + } + ], + "idOclc": [ + "NYPG001000023-C" + ], + "uniformTitle": [ + "Symphony, op. 26" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." + ], + "identifier": [ + "urn:bnum:10000049", + "urn:lccn:81770641", + "urn:oclc:NYPG001000023-C", + "urn:undefined:NNSZ00100573", + "urn:undefined:(WaOLN)nyp0200048" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "Symphony, op. 26 : full score / Francis Routh." + ], + "uri": "b10000049", + "lccClassification": [ + "M1001 .R8615 op.26" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London (Arlington Park House, London W4 4HD)" + ], + "titleAlt": [ + "Symphony, op. 26" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000049" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-80" + ], + "identifierV2": [ + { + "value": "JMG 83-80", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" + } + ], + "physicalLocation": [ + "JMG 83-80" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842241" + ], + "idBarcode": [ + "33433032842241" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000080" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000050", + "_score": null, + "_source": { + "extent": [ + "[188] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas", + "Bkaʼ-brgyud-pa lamas -- Tibet", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", + "Spiritual life", + "Spiritual life -- Buddhism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Urgyan Dorje" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" + }, + { + "type": "nypl:Bnumber", + "value": "10000050" + }, + { + "type": "bf:Lccn", + "value": "76901747" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100024" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200049" + } + ], + "idOclc": [ + "NYPG001000024-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "New Delhi : Urgyan Dorje, 1976." + ], + "identifier": [ + "urn:bnum:10000050", + "urn:lccn:76901747", + "urn:oclc:NYPG001000024-B", + "urn:undefined:NNSZ00100024", + "urn:undefined:(WaOLN)nyp0200049" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", + "Spiritual life -- Buddhism." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000050", + "lccClassification": [ + "BQ942.A187 A35 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000014", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2381", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080421" + } + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080421" + ], + "idBarcode": [ + "33433015080421" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002381" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000051", + "_score": null, + "_source": { + "extent": [ + "score (64 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Samfundet til udgivelse af dansk musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" + ], + "shelfMark": [ + "JMG 83-75" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Christiansen, Henning." + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78770955" + ], + "seriesStatement": [ + "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-75" + }, + { + "type": "nypl:Bnumber", + "value": "10000051" + }, + { + "type": "bf:Lccn", + "value": "78770955" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100574" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200050" + } + ], + "idOclc": [ + "NYPG001000024-C" + ], + "uniformTitle": [ + "Symphony, no. 2, op. 69c", + "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "København : Samfundet til udgivelse af dansk musik, 1977." + ], + "identifier": [ + "urn:bnum:10000051", + "urn:lccn:78770955", + "urn:oclc:NYPG001000024-C", + "urn:undefined:NNSZ00100574", + "urn:undefined:(WaOLN)nyp0200050" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." + ], + "uri": "b10000051", + "lccClassification": [ + "M1001 .C533 op.69c" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "København" + ], + "titleAlt": [ + "Symphony, no. 2, op. 69c", + "Den forsvundne." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "37 cm." + ] + }, + "sort": [ + "b10000051" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942046", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-75" + ], + "identifierV2": [ + { + "value": "JMG 83-75", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842191" + } + ], + "physicalLocation": [ + "JMG 83-75" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842191" + ], + "idBarcode": [ + "33433032842191" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000075" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:09 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "170287", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "536" + }, + "timeout": 30000 + }, + "options": {}, + "id": 56 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json b/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json index ebeca62e..428af13b 100644 --- a/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json +++ b/test/fixtures/query-9a0a78fda43572ca696125e7dc658532.json @@ -1,686 +1,734 @@ { - "took": 7, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.460481, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011374", - "_score": 15.460481, - "_source": { - "extent": [ - "2 v. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Library's copy lacks added t.p.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Published for W. Hone, by Hunt and Clarke" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1828" - ], - "createdYear": [ - 1827 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The table book" - ], - "shelfMark": [ - "JFE 86-498" - ], - "numItemVolumesParsed": [ - 4 - ], - "creatorLiteral": [ - "Hone, William, 1780-1842." - ], - "createdString": [ - "1827" - ], - "idLccn": [ - "35038534" - ], - "numElectronicResources": [ - 4 - ], - "dateStartYear": [ - 1827 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498" - }, - { - "type": "nypl:Bnumber", - "value": "10011374" - }, - { - "type": "bf:Lccn", - "value": "35038534" - }, - { - "type": "nypl:Oclc", - "value": "NYPG012000337-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213343" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211346" - } - ], - "idOclc": [ - "NYPG012000337-B" - ], - "dateEndYear": [ - 1828 - ], - "updatedAt": 1671716548227, - "publicationStatement": [ - "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." - ], - "identifier": [ - "urn:bnum:10011374", - "urn:lccn:35038534", - "urn:oclc:NYPG012000337-B", - "urn:undefined:NNSZ01213343", - "urn:undefined:(WaOLN)nyp0211346" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1827" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "The table book, by William Hone." - ], - "uri": "b10011374", - "lccClassification": [ - "AC4 .H65" - ], - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi10011374-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://hdl.handle.net/2027/nyp.33433057532081" - }, - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://hdl.handle.net/2027/nyp.33433057532339" - }, - { - "label": "Full text available via HathiTrust--v. 1", - "url": "http://hdl.handle.net/2027/nyp.33433067332548" - }, - { - "label": "Full text available via HathiTrust--v. 2", - "url": "http://hdl.handle.net/2027/nyp.33433067332555" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i10011374-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } + "body": { + "took": 6, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.555761, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011374", + "_score": 15.555761, + "_source": { + "extent": [ + "2 v. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 1 has added t.p.: The Table book ... Every Saturday.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published weekly, from Jan. 1827 to Jan. 1828 (55 nos.-including indexes)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Library's copy lacks added t.p.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Published for W. Hone, by Hunt and Clarke" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1828" + ], + "createdYear": [ + 1827 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The table book" + ], + "shelfMark": [ + "JFE 86-498" + ], + "numItemVolumesParsed": [ + 4 + ], + "creatorLiteral": [ + "Hone, William, 1780-1842." + ], + "createdString": [ + "1827" + ], + "idLccn": [ + "35038534" + ], + "numElectronicResources": [ + 4 + ], + "dateStartYear": [ + 1827 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498" + }, + { + "type": "nypl:Bnumber", + "value": "10011374" + }, + { + "type": "bf:Lccn", + "value": "35038534" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000337-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213343" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211346" + } + ], + "idOclc": [ + "NYPG012000337-B" + ], + "dateEndYear": [ + 1828 + ], + "updatedAt": 1671716548227, + "publicationStatement": [ + "London, Published for W. Hone, by Hunt and Clarke, 1827-1828." + ], + "identifier": [ + "urn:bnum:10011374", + "urn:lccn:35038534", + "urn:oclc:NYPG012000337-B", + "urn:undefined:NNSZ01213343", + "urn:undefined:(WaOLN)nyp0211346" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1827" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The table book, by William Hone." + ], + "uri": "b10011374", + "lccClassification": [ + "AC4 .H65" + ], + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433057532339" - ], - "physicalLocation": [ - "JFE 86-498" - ], - "shelfMark_sort": "aJFE 86-498 v. 000002", - "m2CustomerCode": [ - "XF" - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi10011374-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433057532081" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433057532339" + }, + { + "label": "Full text available via HathiTrust--v. 1", + "url": "http://hdl.handle.net/2027/nyp.33433067332548" + }, + { + "label": "Full text available via HathiTrust--v. 2", + "url": "http://hdl.handle.net/2027/nyp.33433067332555" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i10011374-e", + "formatLiteral": [ + "Text" + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057532339" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-498 v. 000002", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i13785802", + "shelfMark": [ + "JFE 86-498 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057532339" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057532339" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 2-" - ], - "type": [ - "bf:Item" - ], - "uri": "i13785802", - "shelfMark": [ - "JFE 86-498 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057532339" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057532339" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433067332555" - ], - "physicalLocation": [ - "*AY (Hone, W. Table book)" - ], - "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433067332555" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000002", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14747243", + "shelfMark": [ + "*AY (Hone, W. Table book) v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book) v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433067332555" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433067332555" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 2-" - ], - "type": [ - "bf:Item" - ], - "uri": "i14747243", - "shelfMark": [ - "*AY (Hone, W. Table book) v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*AY (Hone, W. Table book) v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433067332555" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433067332555" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433057532081" - ], - "physicalLocation": [ - "JFE 86-498" - ], - "shelfMark_sort": "aJFE 86-498 v. 000001", - "m2CustomerCode": [ - "XF" - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433057532081" + ], + "physicalLocation": [ + "JFE 86-498" + ], + "shelfMark_sort": "aJFE 86-498 v. 000001", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005487", + "shelfMark": [ + "JFE 86-498 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-498 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057532081" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057532081" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 1-" - ], - "type": [ - "bf:Item" - ], - "uri": "i10005487", - "shelfMark": [ - "JFE 86-498 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-498 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057532081" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057532081" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "formatLiteral": [ - "Text" ] }, - "sort": [ - " 1-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433067332548" - ], - "physicalLocation": [ - "*AY (Hone, W. Table book)" - ], - "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "enumerationChronology_sort": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433067332548" + ], + "physicalLocation": [ + "*AY (Hone, W. Table book)" + ], + "shelfMark_sort": "a*AY (Hone, W. Table book) v. 000001", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i10005488", + "shelfMark": [ + "*AY (Hone, W. Table book) v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*AY (Hone, W. Table book) v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433067332548" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433067332548" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ " 1-" - ], - "type": [ - "bf:Item" - ], - "uri": "i10005488", - "shelfMark": [ - "*AY (Hone, W. Table book) v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*AY (Hone, W. Table book) v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433067332548" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433067332548" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "formatLiteral": [ - "Text" ] - }, - "sort": [ - " 1-" - ] - } - ] + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 2 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 2 + } + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 5 + } + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 2 - }, - { - "key": "loc:rc2ma||Offsite", - "doc_count": 2 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:57 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "8317", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10011374\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":5,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "915" + }, + "timeout": 30000 + }, + "options": {}, + "id": 37 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-9c5eb8e5dedfef7dab293b393216270e.json b/test/fixtures/query-9c5eb8e5dedfef7dab293b393216270e.json new file mode 100644 index 00000000..7124723b --- /dev/null +++ b/test/fixtures/query-9c5eb8e5dedfef7dab293b393216270e.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 268, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:12 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19778", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Standard number \\\\(old RLIN, etc.\\\\) \\\\-\\\\- 035\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"Standard number \\\\(old RLIN, etc.\\\\) \\\\-\\\\- 035\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"Standard number \\\\(old RLIN, etc.\\\\) \\\\-\\\\- 035\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1159" + }, + "timeout": 30000 + }, + "options": {}, + "id": 68 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json b/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json index 05e37bc8..a5e222da 100644 --- a/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json +++ b/test/fixtures/query-9e6862cbcbe39a3aad216d368a28ea8e.json @@ -1,40 +1,88 @@ { - "took": 3, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 + "body": { + "took": 3, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 0, + "max_score": null, + "hits": [] + }, + "aggregations": { + "item_location": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_format": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 0, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + } + } }, - "hits": { - "total": 0, - "max_score": null, - "hits": [] + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 16:51:21 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "474", + "connection": "keep-alive", + "access-control-allow-origin": "*" }, - "aggregations": { - "item_location": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b123\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "912" + }, + "timeout": 30000 + }, + "options": {}, + "id": 1 }, - "item_format": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 0, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-a0111709561e56b2a43cdfb8983d4e3e.json b/test/fixtures/query-a0111709561e56b2a43cdfb8983d4e3e.json new file mode 100644 index 00000000..f1781037 --- /dev/null +++ b/test/fixtures/query-a0111709561e56b2a43cdfb8983d4e3e.json @@ -0,0 +1,301 @@ +{ + "body": { + "took": 189, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 120.132614, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b13627363", + "_score": 120.132614, + "_source": { + "extent": [ + "128 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cats", + "Cats -- Pictorial works" + ], + "publisherLiteral": [ + "Creative age press, inc." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1947 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cats, cats, & cats" + ], + "shelfMark": [ + "VPS (Rice, E. Cats, cats, & cats)" + ], + "creatorLiteral": [ + "Rice, Edward, 1917-" + ], + "createdString": [ + "1947" + ], + "idLccn": [ + "agr47000211" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gleason, Jean, 1917-" + ], + "dateStartYear": [ + 1947 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VPS (Rice, E. Cats, cats, & cats)" + }, + { + "type": "nypl:Bnumber", + "value": "13627363" + }, + { + "type": "bf:Lccn", + "value": "agr47000211" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp3600714" + } + ], + "updatedAt": 1659488510917, + "publicationStatement": [ + "New York, Creative age press, inc. [c1947]" + ], + "identifier": [ + "urn:bnum:13627363", + "urn:lccn:agr47000211", + "urn:undefined:(WaOLN)nyp3600714" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1947" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cats.", + "Cats -- Pictorial works." + ], + "titleDisplay": [ + "Cats, cats, & cats, by Edward Rice and Jean Gleason." + ], + "uri": "b13627363", + "lccClassification": [ + "SF447 .R5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10754478", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "VPS (Rice, E. Cats, cats, & cats)" + ], + "identifierV2": [ + { + "value": "VPS (Rice, E. Cats, cats, & cats)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433006598316" + } + ], + "physicalLocation": [ + "VPS (Rice, E. Cats, cats, & cats)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433006598316" + ], + "idBarcode": [ + "33433006598316" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "shelfMark_sort": "aVPS (Rice, E. Cats, cats, & cats)" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:13 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "2970", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"VPS \\\\(Rice, E. Cats, cats, \",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"VPS \\\\(Rice, E. Cats, cats, \\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"VPS \\\\(Rice, E. Cats, cats, \",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1090" + }, + "timeout": 30000 + }, + "options": {}, + "id": 72 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-a0e4b5292f813a1a98d1fe8459106211.json b/test/fixtures/query-a0e4b5292f813a1a98d1fe8459106211.json new file mode 100644 index 00000000..f9b1355e --- /dev/null +++ b/test/fixtures/query-a0e4b5292f813a1a98d1fe8459106211.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 161, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.007645, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.007645, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:12 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19778", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Report number. \\\\-\\\\- 027\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"Report number. \\\\-\\\\- 027\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"Report number. \\\\-\\\\- 027\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1093" + }, + "timeout": 30000 + }, + "options": {}, + "id": 70 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-a1849941cf6e1b1e8830be2a63d7304d.json b/test/fixtures/query-a1849941cf6e1b1e8830be2a63d7304d.json new file mode 100644 index 00000000..e50412f0 --- /dev/null +++ b/test/fixtures/query-a1849941cf6e1b1e8830be2a63d7304d.json @@ -0,0 +1,14493 @@ +{ + "body": { + "took": 295, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 2431574, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000044", + "_score": null, + "_source": { + "extent": [ + "[99] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ngawang Sopa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77901316" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" + }, + { + "type": "nypl:Bnumber", + "value": "10000044" + }, + { + "type": "bf:Lccn", + "value": "77901316" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100021" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200043" + } + ], + "idOclc": [ + "NYPG001000021-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Ngawang Sopa, 1976." + ], + "identifier": [ + "urn:bnum:10000044", + "urn:lccn:77901316", + "urn:oclc:NYPG001000021-B", + "urn:undefined:NNSZ00100021", + "urn:undefined:(WaOLN)nyp0200043" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." + ], + "uri": "b10000044", + "lccClassification": [ + "BQ942.Y367 R47 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000044" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000011", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2361" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2361", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080645" + } + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080645" + ], + "idBarcode": [ + "33433015080645" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002361" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000046", + "_score": null, + "_source": { + "extent": [ + "[83] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kye rdor rnam bśad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", + "Tripiṭaka.", + "Tripiṭaka. -- Commentaries", + "Sa-skya-pa lamas", + "Sa-skya-pa lamas -- Tibet", + "Sa-skya-pa lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trayang and Jamyang Samten" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900893" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, + { + "type": "nypl:Bnumber", + "value": "10000046" + }, + { + "type": "bf:Lccn", + "value": "77900893" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100022" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200045" + } + ], + "idOclc": [ + "NYPG001000022-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Trayang and Jamyang Samten, 1976." + ], + "identifier": [ + "urn:bnum:10000046", + "urn:lccn:77900893", + "urn:oclc:NYPG001000022-B", + "urn:undefined:NNSZ00100022", + "urn:undefined:(WaOLN)nyp0200045" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", + "Tripiṭaka. -- Commentaries.", + "Sa-skya-pa lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." + ], + "uri": "b10000046", + "lccClassification": [ + "BG974.0727 T75" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "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" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000046" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2362", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080413" + } + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080413" + ], + "idBarcode": [ + "33433015080413" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002362" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000048", + "_score": null, + "_source": { + "extent": [ + "[150] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kunzang Topgey" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901012" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" + }, + { + "type": "nypl:Bnumber", + "value": "10000048" + }, + { + "type": "bf:Lccn", + "value": "76901012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100023" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200047" + } + ], + "idOclc": [ + "NYPG001000023-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Thimphu : Kunzang Topgey, 1976." + ], + "identifier": [ + "urn:bnum:10000048", + "urn:lccn:76901012", + "urn:oclc:NYPG001000023-B", + "urn:undefined:NNSZ00100023", + "urn:undefined:(WaOLN)nyp0200047" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000048", + "lccClassification": [ + "BQ7695 .B55" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Thimphu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 38 cm." + ] + }, + "sort": [ + "b10000048" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000013", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2382", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080439" + } + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080439" + ], + "idBarcode": [ + "33433015080439" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002382" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000050", + "_score": null, + "_source": { + "extent": [ + "[188] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas", + "Bkaʼ-brgyud-pa lamas -- Tibet", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", + "Spiritual life", + "Spiritual life -- Buddhism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Urgyan Dorje" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" + }, + { + "type": "nypl:Bnumber", + "value": "10000050" + }, + { + "type": "bf:Lccn", + "value": "76901747" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100024" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200049" + } + ], + "idOclc": [ + "NYPG001000024-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "New Delhi : Urgyan Dorje, 1976." + ], + "identifier": [ + "urn:bnum:10000050", + "urn:lccn:76901747", + "urn:oclc:NYPG001000024-B", + "urn:undefined:NNSZ00100024", + "urn:undefined:(WaOLN)nyp0200049" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", + "Spiritual life -- Buddhism." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000050", + "lccClassification": [ + "BQ942.A187 A35 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000014", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2381", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080421" + } + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080421" + ], + "idBarcode": [ + "33433015080421" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002381" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000052", + "_score": null, + "_source": { + "extent": [ + "[247] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Gu ruʼi rnam thar ṅo tshar phun tshogs rgya mtsho.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Padma Sambhava, approximately 717-approximately 762", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sherab Gyaltshen Lama" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OZ+ 82-2383" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bkra-śis-stobs-rgyal, Byaṅ-bdag." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76900205" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2383" + }, + { + "type": "nypl:Bnumber", + "value": "10000052" + }, + { + "type": "bf:Lccn", + "value": "76900205" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000025-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100025" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200051" + } + ], + "idOclc": [ + "NYPG001000025-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Gangtog : Sherab Gyaltshen Lama, 1976." + ], + "identifier": [ + "urn:bnum:10000052", + "urn:lccn:76900205", + "urn:oclc:NYPG001000025-B", + "urn:undefined:NNSZ00100025", + "urn:undefined:(WaOLN)nyp0200051" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Padma Sambhava, approximately 717-approximately 762.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Byaṅ-bdag Bkra-śis-stobs-rgyal." + ], + "uri": "b10000052", + "lccClassification": [ + "BQ7950.P327 B55 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Gangtog" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 x 37 cm." + ] + }, + "sort": [ + "b10000052" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000015", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2383" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2383", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080447" + } + ], + "physicalLocation": [ + "*OZ+ 82-2383" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080447" + ], + "idBarcode": [ + "33433015080447" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002383" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000054", + "_score": null, + "_source": { + "extent": [ + "[161] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a one volume collection of the writings from the library of Rtogs-ldan Rin-po-che of Sgaṅ-sṅon.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBri-gung-pa (Sect)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tsondu Senghe" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Collected works (gsun ʼbum) of ʼBri-guṅ Skyob-pa ʼJig-rten-mgon-po Pin-chen-dpal." + ], + "shelfMark": [ + "*OZ+ 82-2384" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBri-gung Chos-rje ʼJig-rten-mgon-po, 1143-1217." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900734" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2384" + }, + { + "type": "nypl:Bnumber", + "value": "10000054" + }, + { + "type": "bf:Lccn", + "value": "77900734" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000026-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100026" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200053" + } + ], + "idOclc": [ + "NYPG001000026-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bir, H.P. : Tsondu Senghe, 1976." + ], + "identifier": [ + "urn:bnum:10000054", + "urn:lccn:77900734", + "urn:oclc:NYPG001000026-B", + "urn:undefined:NNSZ00100026", + "urn:undefined:(WaOLN)nyp0200053" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBri-gung-pa (Sect)" + ], + "titleDisplay": [ + "Collected works (gsun ʼbum) of ʼBri-guṅ Skyob-pa ʼJig-rten-mgon-po Pin-chen-dpal." + ], + "uri": "b10000054", + "lccClassification": [ + "BQ7684 .B74 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bir, H.P." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000054" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000016", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2384" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2384", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080454" + } + ], + "physicalLocation": [ + "*OZ+ 82-2384" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080454" + ], + "idBarcode": [ + "33433015080454" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002384" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000056", + "_score": null, + "_source": { + "extent": [ + "[155] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Half title: Pha rin po che Ratna-badzra gyi mgyur ʼbum zab don rdo rje ʼphreṅ ba bźugs so.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from a rare manuscript from Dzong-khul Monastery in Zangskar.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBrug-pa (Sect)", + "ʼBrug-pa (Sect) -- Prayer books and devotions", + "ʼBrug-pa (Sect) -- Prayer books and devotions -- Tibetan" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kargyud Sungrab Nyamso Khang" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Collected songs (mgur) of esoteric realisation of Ratna-badzra (Rin-chen-rdo-rje)." + ], + "shelfMark": [ + "*OZ+ 82-2385" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rad-na-badzra." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901741" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2385" + }, + { + "type": "nypl:Bnumber", + "value": "10000056" + }, + { + "type": "bf:Lccn", + "value": "76901741" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000027-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100027" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200055" + } + ], + "idOclc": [ + "NYPG001000027-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Darjeeling : Kargyud Sungrab Nyamso Khang, 1976." + ], + "identifier": [ + "urn:bnum:10000056", + "urn:lccn:76901741", + "urn:oclc:NYPG001000027-B", + "urn:undefined:NNSZ00100027", + "urn:undefined:(WaOLN)nyp0200055" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBrug-pa (Sect) -- Prayer books and devotions -- Tibetan." + ], + "titleDisplay": [ + "Collected songs (mgur) of esoteric realisation of Ratna-badzra (Rin-chen-rdo-rje)." + ], + "uri": "b10000056", + "lccClassification": [ + "BQ7683.6 .R37 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Darjeeling" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000056" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000017", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2385" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2385", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080462" + } + ], + "physicalLocation": [ + "*OZ+ 82-2385" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080462" + ], + "idBarcode": [ + "33433015080462" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002385" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000058", + "_score": null, + "_source": { + "extent": [ + "[132] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on spine: Rdzogs chen yaṅ ti nag po gser ʼbru chos skor.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced photographically from a rare manuscript from the collection of Brag-thog Monastery in Ladakh by Pema Choden.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rnying-ma-pa (Sect)", + "Rnying-ma-pa (Sect) -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "S.W. Tashigangpa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yaṅ ti nag po gser gyi ʼbru gcig paʼi chos skor : a collection of Nyingmapa Dzogchen teachings" + ], + "shelfMark": [ + "*OZ+ 82-5174" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Duṅ-mtsho-ras-pa, active 14th century." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "72908332" + ], + "seriesStatement": [ + "Smanrtsis shesrig spendzod; v. 41" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5174" + }, + { + "type": "nypl:Bnumber", + "value": "10000058" + }, + { + "type": "bf:Lccn", + "value": "72908332" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000028-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100028" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200057" + } + ], + "idOclc": [ + "NYPG001000028-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Leh : S.W. Tashigangpa, 1972." + ], + "identifier": [ + "urn:bnum:10000058", + "urn:lccn:72908332", + "urn:oclc:NYPG001000028-B", + "urn:undefined:NNSZ00100028", + "urn:undefined:(WaOLN)nyp0200057" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rnying-ma-pa (Sect) -- Rituals." + ], + "titleDisplay": [ + "Yaṅ ti nag po gser gyi ʼbru gcig paʼi chos skor : a collection of Nyingmapa Dzogchen teachings / rediscovered by Duṅ-mtsho-ras-pa (Phyi-ma)." + ], + "uri": "b10000058", + "lccClassification": [ + "BQ7662.4 .D86 1972" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leh" + ], + "titleAlt": [ + "Rdzogs chen yaṅ ti nag po gser ʼbru chos skor." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000058" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000018", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-5174" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-5174", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012357756" + } + ], + "physicalLocation": [ + "*OZ+ 82-5174" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012357756" + ], + "idBarcode": [ + "33433012357756" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-005174" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000060", + "_score": null, + "_source": { + "extent": [ + "1 v. (unpaged)" + ], + "note": [ + { + "noteType": "Note", + "label": "Photographic reproduction of a Tashilhunpo xylograph.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tibetan; introd. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The autobiography of the First Panchen Lama Blo-bzang-chos-kyi-rgyal-mtsho." + ], + "shelfMark": [ + "*OZ+ 82-5074" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "70908872" + ], + "seriesStatement": [ + "Gedan sungrab minyam gyunphel series, v. 12" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Demo, Ngawang Gelek, 1939-" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5074" + }, + { + "type": "nypl:Bnumber", + "value": "10000060" + }, + { + "type": "bf:Lccn", + "value": "70908872" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000029-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100029" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200059" + } + ], + "idOclc": [ + "NYPG001000029-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[New Delhi, 1969]" + ], + "identifier": [ + "urn:bnum:10000060", + "urn:lccn:70908872", + "urn:oclc:NYPG001000029-B", + "urn:undefined:NNSZ00100029", + "urn:undefined:(WaOLN)nyp0200059" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662." + ], + "titleDisplay": [ + "The autobiography of the First Panchen Lama Blo-bzang-chos-kyi-rgyal-mtsho. Edited and reproduced by Ngawang Gelek Demo, with an English introd. by E. Gene Smith." + ], + "uri": "b10000060", + "lccClassification": [ + "BQ7945.B547 A33" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 x 43 cm." + ] + }, + "sort": [ + "b10000060" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000019", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-5074" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-5074", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080363" + } + ], + "physicalLocation": [ + "*OZ+ 82-5074" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080363" + ], + "idBarcode": [ + "33433015080363" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-005074" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000062", + "_score": null, + "_source": { + "extent": [ + "1 v. (unpaged)" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Gnas-chung chos spyod.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[Can be obtained from Tibet House, New Delhi]" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-5073" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "74906111" + ], + "seriesStatement": [ + "Ngagyur Ngingmay Sungrab, v. 3" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sonam Topgay Kazi." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5073" + }, + { + "type": "nypl:Bnumber", + "value": "10000062" + }, + { + "type": "bf:Lccn", + "value": "74906111" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000030-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100030" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200061" + } + ], + "idOclc": [ + "NYPG001000030-B" + ], + "uniformTitle": [ + "Gnas-chuṅ chos spyod." + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Gangtok [Can be obtained from Tibet House, New Delhi] 1969." + ], + "identifier": [ + "urn:bnum:10000062", + "urn:lccn:74906111", + "urn:oclc:NYPG001000030-B", + "urn:undefined:NNSZ00100030", + "urn:undefined:(WaOLN)nyp0200061" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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. Reproduced photographically from Bskal-bzang-rin-chenʼs xylographic edition of 1845 by Sonam Topgay Kazi, with an English pref. by E. Gene Smith." + ], + "uri": "b10000062", + "lccClassification": [ + "BQ7695 .G58 1969" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Gangtok" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 x 44 cm." + ] + }, + "sort": [ + "b10000062" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000020", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-5073" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-5073", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030669448" + } + ], + "physicalLocation": [ + "*OZ+ 82-5073" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433030669448" + ], + "idBarcode": [ + "33433030669448" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-005073" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000064", + "_score": null, + "_source": { + "extent": [ + "168 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Shiʻr an-Nmir ibn Tawlab.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 159-168.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maṭbaʻat al-Maʻārif" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Shiʻr" + ], + "shelfMark": [ + "*OFA 82-2370" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Namir ibn Tawlab." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "76240902" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Qaysī, Nūrī Ḥammūdī." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-2370" + }, + { + "type": "nypl:Bnumber", + "value": "10000064" + }, + { + "type": "bf:Lccn", + "value": "76240902" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000031-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100031" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200063" + } + ], + "idOclc": [ + "NYPG001000031-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Baghdād, Maṭbaʻat al-Maʻārif [1969]" + ], + "identifier": [ + "urn:bnum:10000064", + "urn:lccn:76240902", + "urn:oclc:NYPG001000031-B", + "urn:undefined:NNSZ00100031", + "urn:undefined:(WaOLN)nyp0200063" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Shiʻr, al-Namir ibn Tawlab. Ṣanʻat Nūrī ʻHammūdī al-Qaysī." + ], + "uri": "b10000064", + "lccClassification": [ + "PJ7696.N3 S5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000064" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000021", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-2370" + ], + "identifierV2": [ + { + "value": "*OFA 82-2370", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000481" + } + ], + "physicalLocation": [ + "*OFA 82-2370" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000481" + ], + "idBarcode": [ + "33433002000481" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-002370" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000066", + "_score": null, + "_source": { + "extent": [ + "70, 272 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sāhitya Bhaṇḍāra" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1962 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kālidāsa." + ], + "createdString": [ + "1962" + ], + "idLccn": [ + "sa 65007611" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Mallinātha.", + "Shastri, S. R." + ], + "dateStartYear": [ + 1962 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 82-2129" + }, + { + "type": "nypl:Bnumber", + "value": "10000066" + }, + { + "type": "bf:Lccn", + "value": "sa 65007611" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000032-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100032" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200065" + } + ], + "idOclc": [ + "NYPG001000032-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Meraṭha, Sāhitya Bhaṇḍāra, 1962." + ], + "identifier": [ + "urn:bnum:10000066", + "urn:lccn:sa 65007611", + "urn:oclc:NYPG001000032-B", + "urn:undefined:NNSZ00100032", + "urn:undefined:(WaOLN)nyp0200065" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "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. Mahākavikālidāsapraṇita. Śivarāja Śāstrī dvārā sampādita evaṃ saṃśodhita." + ], + "uri": "b10000066", + "lccClassification": [ + "PK3796 .M5 1962" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Meraṭha" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000066" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783793", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 82-2129" + ], + "identifierV2": [ + { + "value": "*OKP 82-2129", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058152988" + } + ], + "physicalLocation": [ + "*OKP 82-2129" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058152988" + ], + "idBarcode": [ + "33433058152988" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 82-002129" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000068", + "_score": null, + "_source": { + "extent": [ + "228 p. port." + ], + "note": [ + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Urdu language", + "Urdu language -- Rhyme" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Qavāfī-yi Kāmil ; ʻilm-i qāfīyah bi-qānūn-i qadīm va jadīd." + ], + "shelfMark": [ + "*OKTX 82-2129" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kāmil Jūnāgaṛhī." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "72932110" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 82-2129" + }, + { + "type": "nypl:Bnumber", + "value": "10000068" + }, + { + "type": "bf:Lccn", + "value": "72932110" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000033-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100033" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200067" + } + ], + "idOclc": [ + "NYPG001000033-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Karācī, 1970]" + ], + "identifier": [ + "urn:bnum:10000068", + "urn:lccn:72932110", + "urn:oclc:NYPG001000033-B", + "urn:undefined:NNSZ00100033", + "urn:undefined:(WaOLN)nyp0200067" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Urdu language -- Rhyme." + ], + "titleDisplay": [ + "Qavāfī-yi Kāmil ; ʻilm-i qāfīyah bi-qānūn-i qadīm va jadīd. Muʼallifah-yi Kāmil Jūnāgaṛhī." + ], + "uri": "b10000068", + "lccClassification": [ + "PK1979 .K3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Karācī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000068" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000022", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-2129" + ], + "identifierV2": [ + { + "value": "*OKTX 82-2129", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004672303" + } + ], + "physicalLocation": [ + "*OKTX 82-2129" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004672303" + ], + "idBarcode": [ + "33433004672303" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-002129" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000070", + "_score": null, + "_source": { + "extent": [ + "2 v. in 1." + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 2 published by Ke. Bṟadērsȧ, Kōḻikkōṭȧ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Malayalam literature", + "Malayalam literature -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Vidyārtthimitṟaṃ Bukkuḍippō" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Gadyamañjari." + ], + "shelfMark": [ + "*OLD 82-2140" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kumāran, Mūrkkōttȧ, 1874-1941." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "sa 68007302" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 82-2140" + }, + { + "type": "nypl:Bnumber", + "value": "10000070" + }, + { + "type": "bf:Lccn", + "value": "sa 68007302" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000034-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100034" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200069" + } + ], + "idOclc": [ + "NYPG001000034-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Kōṭṭayaṃ, Vidyārtthimitṟaṃ Bukkuḍippō [1967]" + ], + "identifier": [ + "urn:bnum:10000070", + "urn:lccn:sa 68007302", + "urn:oclc:NYPG001000034-B", + "urn:undefined:NNSZ00100034", + "urn:undefined:(WaOLN)nyp0200069" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Malayalam literature -- History and criticism." + ], + "titleDisplay": [ + "Gadyamañjari. Granthakarttā Mūrkkōttu Kumāran." + ], + "uri": "b10000070", + "lccClassification": [ + "PL4718.O5 .K77" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000070" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 82-2140" + ], + "identifierV2": [ + { + "value": "*OLD 82-2140", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004314914" + } + ], + "physicalLocation": [ + "*OLD 82-2140" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004314914" + ], + "idBarcode": [ + "33433004314914" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 82-002140" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000072", + "_score": null, + "_source": { + "extent": [ + "54 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Primers, Persian" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Āgāh" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Fārsī nivīsī barā-yi kūdakān" + ], + "shelfMark": [ + "*OMP 82-2194" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ibrāhīmī, Nādir." + ], + "createdString": [ + "1977" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 82-2194" + }, + { + "type": "nypl:Bnumber", + "value": "10000072" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000035-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100035" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200071" + } + ], + "idOclc": [ + "NYPG001000035-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Tihrān : Intishārāt-i Āgāh, 2536 [1977]" + ], + "identifier": [ + "urn:bnum:10000072", + "urn:oclc:NYPG001000035-B", + "urn:undefined:NNSZ00100035", + "urn:undefined:(WaOLN)nyp0200071" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Primers, Persian." + ], + "titleDisplay": [ + "Fārsī nivīsī barā-yi kūdakān / Nādir Ibrāhīmī." + ], + "uri": "b10000072", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000072" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000024", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 82-2194" + ], + "identifierV2": [ + { + "value": "*OMP 82-2194", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013172402" + } + ], + "physicalLocation": [ + "*OMP 82-2194" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013172402" + ], + "idBarcode": [ + "33433013172402" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 82-002194" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000074", + "_score": null, + "_source": { + "extent": [ + "4 v. facsims." + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 3-4 edited by M. S. Maʻrūf only.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Text of the diwan is vocalized.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Maʻārif" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1975" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān al-Bārūdī" + ], + "shelfMark": [ + "*OFA 82-2183" + ], + "numItemVolumesParsed": [ + 4 + ], + "creatorLiteral": [ + "Bārūdī, Maḥmūd Sāmī, 1839-1904." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "74963263" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jārim, ʻAlī.", + "Maʻrūf, Muḥammad Shafīq." + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-2183" + }, + { + "type": "nypl:Bnumber", + "value": "10000074" + }, + { + "type": "bf:Lccn", + "value": "74963263" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000036-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100036" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200073" + } + ], + "idOclc": [ + "NYPG001000036-B" + ], + "dateEndYear": [ + 1975 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Miṣr, Dār al-Maʻārif, 1971-1974 i.e. 1975." + ], + "identifier": [ + "urn:bnum:10000074", + "urn:lccn:74963263", + "urn:oclc:NYPG001000036-B", + "urn:undefined:NNSZ00100036", + "urn:undefined:(WaOLN)nyp0200073" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān al-Bārūdī [taʼlīf] Maḥmūd Sāmī al-Bārūdī. Ḥaqqaqahu wa-ṣaḥḥaạhu wa-ḍabaṭahu wa-sharaḥahu ʻAlī al-Jārim [wa]-Muḥammad Shafīq Maʻrūf" + ], + "uri": "b10000074", + "lccClassification": [ + "PJ7816 .A694 1971" + ], + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Miṣr" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Juzʼ 1. Qāfiyat al-Hamzah-qāfiyat al-Dhāl. -- Juzʼ 2. Qāfiyat al-Rāʼ - qāfiyat al-Kāf. -- Juzʼ 3. Qāfiyat al-Lām - qāfiyat al-Mīm. -- Juzʼ 4. Qāfiyat al-Nūn-qā fiyat al-yāʼ." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000074" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10000028", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-2183 v. 4" + ], + "identifierV2": [ + { + "value": "*OFA 82-2183 v. 4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000465" + } + ], + "enumerationChronology": [ + "v. 4" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000465" + ], + "idBarcode": [ + "33433002000465" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000004" + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i10000027", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-2183 v. 3" + ], + "identifierV2": [ + { + "value": "*OFA 82-2183 v. 3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000457" + } + ], + "enumerationChronology": [ + "v. 3" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000457" + ], + "idBarcode": [ + "33433002000457" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000003" + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10000026", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-2183 v. 2" + ], + "identifierV2": [ + { + "value": "*OFA 82-2183 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000440" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000440" + ], + "idBarcode": [ + "33433002000440" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000025", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-2183 v. 1" + ], + "identifierV2": [ + { + "value": "*OFA 82-2183 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000432" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000432" + ], + "idBarcode": [ + "33433002000432" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000076", + "_score": null, + "_source": { + "extent": [ + "132 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Mujibur Rahman, Sheikh, 1922-1975", + "Finance, Public", + "Finance, Public -- Pakistan", + "Pakistan", + "Pakistan -- Politics and government" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktab-i Urdū Ḍaʼjist" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Chah nikāt kī saccī taṣvīr." + ], + "shelfMark": [ + "*OKTX 82-2408" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Quraishī, Al̤tāf Ḥasan." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "78932499" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 82-2408" + }, + { + "type": "nypl:Bnumber", + "value": "10000076" + }, + { + "type": "bf:Lccn", + "value": "78932499" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000037-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100037" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200075" + } + ], + "idOclc": [ + "NYPG001000037-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Lāhaur, Maktab-i Urdū Ḍaʼjist [1969]" + ], + "identifier": [ + "urn:bnum:10000076", + "urn:lccn:78932499", + "urn:oclc:NYPG001000037-B", + "urn:undefined:NNSZ00100037", + "urn:undefined:(WaOLN)nyp0200075" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Mujibur Rahman, Sheikh, 1922-1975.", + "Finance, Public -- Pakistan.", + "Pakistan -- Politics and government." + ], + "titleDisplay": [ + "Chah nikāt kī saccī taṣvīr. [Muṣannif] Al̤tāf Ḥasan Quraishī." + ], + "uri": "b10000076", + "lccClassification": [ + "JQ543 1969 .Q87" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lāhaur" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000076" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000029", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-2408" + ], + "identifierV2": [ + { + "value": "*OKTX 82-2408", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004672238" + } + ], + "physicalLocation": [ + "*OKTX 82-2408" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004672238" + ], + "idBarcode": [ + "33433004672238" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-002408" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000078", + "_score": null, + "_source": { + "extent": [ + "144 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājakamala Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Raśmibandha." + ], + "shelfMark": [ + "*OKTN 82-2402" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pant, Sumitra Nandan, 1900-" + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "sa 67003708" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTN 82-2402" + }, + { + "type": "nypl:Bnumber", + "value": "10000078" + }, + { + "type": "bf:Lccn", + "value": "sa 67003708" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000038-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100038" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200077" + } + ], + "idOclc": [ + "NYPG001000038-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Dillī] Rājakamala Prakāśana [1966]" + ], + "identifier": [ + "urn:bnum:10000078", + "urn:lccn:sa 67003708", + "urn:oclc:NYPG001000038-B", + "urn:undefined:NNSZ00100038", + "urn:undefined:(WaOLN)nyp0200077" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Raśmibandha. [Lekhaka] Sumitrānandana Panta." + ], + "uri": "b10000078", + "lccClassification": [ + "PK2098.P32 R3 1966" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000078" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000030", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTN 82-2402" + ], + "identifierV2": [ + { + "value": "*OKTN 82-2402", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011745118" + } + ], + "physicalLocation": [ + "*OKTN 82-2402" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011745118" + ], + "idBarcode": [ + "33433011745118" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTN 82-002402" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000081", + "_score": null, + "_source": { + "extent": [ + "80 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Added title: Urdu kī pahili seerrhi", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Primers, Urdu" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktab-i Mīrī Laʼibrīrī" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Urdū kī pahlī sīṛhī; jadīd uslūb ʻāhil mabādī." + ], + "shelfMark": [ + "*OKTX 82-2414" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Alifulmiḥrā̲s, 1919-" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "76932355" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 82-2414" + }, + { + "type": "nypl:Bnumber", + "value": "10000081" + }, + { + "type": "bf:Lccn", + "value": "76932355" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000040-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100040" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200080" + } + ], + "idOclc": [ + "NYPG001000040-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Lāhaur, Maktab-i Mīrī Laʼibrīrī [1969]" + ], + "identifier": [ + "urn:bnum:10000081", + "urn:lccn:76932355", + "urn:oclc:NYPG001000040-B", + "urn:undefined:NNSZ00100040", + "urn:undefined:(WaOLN)nyp0200080" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Primers, Urdu." + ], + "titleDisplay": [ + "Urdū kī pahlī sīṛhī; jadīd uslūb ʻāhil mabādī. Az Alifulmiḥrā̲s." + ], + "uri": "b10000081", + "lccClassification": [ + "PK1972 .A53" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lāhaur" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000081" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000031", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-2414" + ], + "identifierV2": [ + { + "value": "*OKTX 82-2414", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004672246" + } + ], + "physicalLocation": [ + "*OKTX 82-2414" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004672246" + ], + "idBarcode": [ + "33433004672246" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-002414" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000083", + "_score": null, + "_source": { + "extent": [ + "4, 41, 4, 456 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Includes commentary of Namisādhu.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Although some scholars (Aufrecht, Weber) have identified the author with Rudrabhaṭṭa, the bulk of evidence produced by others (Peterson, Jacobi) seems to prove that they are not the same. The editor also concludes that they are different persons.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 456.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hindi and Sanskrit; introd. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Hindī-Anusandhāna-Parishad, Dillī Viśvavidyālaya ke nimitta Vāsudeva Prakāśana dvārā prakāśita" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita." + ], + "shelfMark": [ + "*OKP 82-2410" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rudraṭa, active 9th century." + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "sa 66001274" + ], + "seriesStatement": [ + "Hindī Anusandhāna Parishad granthamālā, 33" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Namisādhu, active 1068.", + "Chaudhary, S. D." + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 82-2410" + }, + { + "type": "nypl:Bnumber", + "value": "10000083" + }, + { + "type": "bf:Lccn", + "value": "sa 66001274" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000041-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100041" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200082" + } + ], + "idOclc": [ + "NYPG001000041-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Dillī, Hindī-Anusandhāna-Parishad, Dillī Viśvavidyālaya ke nimitta Vāsudeva Prakāśana dvārā prakāśita [1965]" + ], + "identifier": [ + "urn:bnum:10000083", + "urn:lccn:sa 66001274", + "urn:oclc:NYPG001000041-B", + "urn:undefined:NNSZ00100041", + "urn:undefined:(WaOLN)nyp0200082" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- History and criticism." + ], + "titleDisplay": [ + "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita. Rudraṭa praṇīta. Hindīvyākhyākāra Satyadeva Chaudharī." + ], + "uri": "b10000083", + "lccClassification": [ + "PK2916 .R8 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000083" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783794", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 82-2410" + ], + "identifierV2": [ + { + "value": "*OKP 82-2410", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153028" + } + ], + "physicalLocation": [ + "*OKP 82-2410" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153028" + ], + "idBarcode": [ + "33433058153028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 82-002410" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000085", + "_score": null, + "_source": { + "extent": [ + "11, 321, 87 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Abridged version of Jayasi's Padamāvata-Sāra: p. [1]-87 (3d group)", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Hindī Bhavana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa." + ], + "shelfMark": [ + "*OKTM 82-2424" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Narang, Indra Chandra, 1907-" + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 68005298" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Malika Mohammada Jāyasī, active 1540." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 82-2424" + }, + { + "type": "nypl:Bnumber", + "value": "10000085" + }, + { + "type": "bf:Lccn", + "value": "sa 68005298" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000042-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100042" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200084" + } + ], + "idOclc": [ + "NYPG001000042-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Jālandhara, Hindī Bhavana, 1964." + ], + "identifier": [ + "urn:bnum:10000085", + "urn:lccn:sa 68005298", + "urn:oclc:NYPG001000042-B", + "urn:undefined:NNSZ00100042", + "urn:undefined:(WaOLN)nyp0200084" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa. Sampādaka Indracandra Nāranga." + ], + "uri": "b10000085", + "lccClassification": [ + "PK2095.M3 P36" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Jālandhara" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000085" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 82-2424" + ], + "identifierV2": [ + { + "value": "*OKTM 82-2424", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011108135" + } + ], + "physicalLocation": [ + "*OKTM 82-2424" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011108135" + ], + "idBarcode": [ + "33433011108135" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 82-002424" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000087", + "_score": null, + "_source": { + "extent": [ + "12, 195 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindi drama" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Iṇḍiyāna Presa (Pablikeśansa)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āṭha ekāṅkī." + ], + "shelfMark": [ + "*OKTN 82-2423" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Śarma, Nityānanda" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "sa 67003777" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTN 82-2423" + }, + { + "type": "nypl:Bnumber", + "value": "10000087" + }, + { + "type": "bf:Lccn", + "value": "sa 67003777" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000043-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100043" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200086" + } + ], + "idOclc": [ + "NYPG001000043-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ilāhābāda, Iṇḍiyāna Presa (Pablikeśansa) [1965]" + ], + "identifier": [ + "urn:bnum:10000087", + "urn:lccn:sa 67003777", + "urn:oclc:NYPG001000043-B", + "urn:undefined:NNSZ00100043", + "urn:undefined:(WaOLN)nyp0200086" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindi drama." + ], + "titleDisplay": [ + "Āṭha ekāṅkī. Sampādaka Nityānanda Śarmā." + ], + "uri": "b10000087", + "lccClassification": [ + "PK2071 .S2" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ilāhābāda" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000087" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTN 82-2423" + ], + "identifierV2": [ + { + "value": "*OKTN 82-2423", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011745134" + } + ], + "physicalLocation": [ + "*OKTN 82-2423" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011745134" + ], + "idBarcode": [ + "33433011745134" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTN 82-002423" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000089", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Beṅgala Pābaliśārsa" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bāghinī." + ], + "shelfMark": [ + "*OKV 82-2420" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Basu, Samaresh, 1921-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "79903322" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-2420" + }, + { + "type": "nypl:Bnumber", + "value": "10000089" + }, + { + "type": "bf:Lccn", + "value": "79903322" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000044-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100044" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200088" + } + ], + "idOclc": [ + "NYPG001000044-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Kalikātā, Beṅgala Pābaliśārsa [1967]" + ], + "identifier": [ + "urn:bnum:10000089", + "urn:lccn:79903322", + "urn:oclc:NYPG001000044-B", + "urn:undefined:NNSZ00100044", + "urn:undefined:(WaOLN)nyp0200088" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Bāghinī. [Lekhaka] Samareśa Basu." + ], + "uri": "b10000089", + "lccClassification": [ + "Pk1718.B39 B3 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalikātā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000089" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000034", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKV 82-2420" + ], + "identifierV2": [ + { + "value": "*OKV 82-2420", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011167040" + } + ], + "physicalLocation": [ + "*OKV 82-2420" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011167040" + ], + "idBarcode": [ + "33433011167040" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKV 82-002420" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000091", + "_score": null, + "_source": { + "extent": [ + "920, 144 p. : ill., map ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Translation of Contributions to the anthropology of Iran.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [817]-838.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Anthropometry", + "Anthropometry -- Iran" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Ibn Sīnā" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mardumʹshināsī-i Īrān" + ], + "shelfMark": [ + "*OMK 82-2419" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Field, Henry, 1902-" + ], + "createdString": [ + "1965" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMK 82-2419" + }, + { + "type": "nypl:Bnumber", + "value": "10000091" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000045-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100045" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200090" + } + ], + "idOclc": [ + "NYPG001000045-B" + ], + "uniformTitle": [ + "Contributions to the anthropology of Iran. Persian" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Intishārāt-i Ibn Sīnā, 1343 [1965]" + ], + "identifier": [ + "urn:bnum:10000091", + "urn:oclc:NYPG001000045-B", + "urn:undefined:NNSZ00100045", + "urn:undefined:(WaOLN)nyp0200090" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Anthropometry -- Iran." + ], + "titleDisplay": [ + "Mardumʹshināsī-i Īrān / Hinrī Fīld. Tarjumah-ʼi ʻAbd Allāh Faryār." + ], + "uri": "b10000091", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Contributions to the anthropology of Iran." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000091" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000036", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMK 82-2419" + ], + "identifierV2": [ + { + "value": "*OMK 82-2419", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013106327" + } + ], + "physicalLocation": [ + "*OMK 82-2419" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013106327" + ], + "idBarcode": [ + "33433013106327" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMK 82-002419" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000093", + "_score": null, + "_source": { + "extent": [ + "90 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kuṟaḷ neṟi cittaneṟi.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar", + "Tamil Siddhas" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Civāṉantā Cittaneṟip Payiṟcik Kaḻkamm; inn̄ūl kiṭaikkum iṭam: S. Caṅkaraṉār, Ceṉṉai" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuṟaḷ neṟiyum Citta neṟiyum; ārāyccik kaṭṭurai." + ], + "shelfMark": [ + "*OLB 82-5144" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pasumporkizhar, N., 1936-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74902781" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5144" + }, + { + "type": "nypl:Bnumber", + "value": "10000093" + }, + { + "type": "bf:Lccn", + "value": "74902781" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000046-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100046" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200092" + } + ], + "idOclc": [ + "NYPG001000046-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Pacumpoṉ, Irāmanātapuram Māvaṭṭam, Civāṉantā Cittaneṟip Payiṟcik Kaḻkamm; inn̄ūl kiṭaikkum iṭam: S. Caṅkaraṉār, Ceṉṉai, 1974." + ], + "identifier": [ + "urn:bnum:10000093", + "urn:lccn:74902781", + "urn:oclc:NYPG001000046-B", + "urn:undefined:NNSZ00100046", + "urn:undefined:(WaOLN)nyp0200092" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar.", + "Tamil Siddhas." + ], + "titleDisplay": [ + "Kuṟaḷ neṟiyum Citta neṟiyum; ārāyccik kaṭṭurai. Ākkiyōṉ Nā. Pacumpoṟkiḻār." + ], + "uri": "b10000093", + "lccClassification": [ + "PL4758.9.T5 P3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Pacumpoṉ, Irāmanātapuram Māvaṭṭam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kuṟaḷ neṟi cittaneṟi." + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000093" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000037", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5144" + ], + "identifierV2": [ + { + "value": "*OLB 82-5144", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838980" + } + ], + "physicalLocation": [ + "*OLB 82-5144" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838980" + ], + "idBarcode": [ + "33433001838980" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005144" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000095", + "_score": null, + "_source": { + "extent": [ + "17, 504, xi p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Sources de l'histoire du Yemen à l'époque musulmane", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Introduction in Arabic and French.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [437]-467.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Yemen (Republic)", + "Yemen (Republic) -- History", + "Yemen (Republic) -- History -- Bibliography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Maʻhad al-ʻIlmī al-Faransī lil-Āthār al-Sharqīyah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Maṣādir tārīkh al-Yaman fī al-ʻaṣr al-Islāmī" + ], + "shelfMark": [ + "*OFK 82-5143" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sayyid, Ayman Fuʼād." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75960138" + ], + "seriesStatement": [ + "Nuṣūṣ wa-tarjamāt -- al-Maʻhad al-ʻIlmī al-Faransī lil-Āthar al-Sharqīyah; al-mujallad 7" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 82-5143" + }, + { + "type": "nypl:Bnumber", + "value": "10000095" + }, + { + "type": "bf:Lccn", + "value": "75960138" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000047-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100047" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200094" + } + ], + "idOclc": [ + "NYPG001000047-B" + ], + "uniformTitle": [ + "Textes et traductions d'auteurs orientaux ; t. 7." + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah : al-Maʻhad al-ʻIlmī al-Faransī lil-Āthār al-Sharqīyah, 1974." + ], + "identifier": [ + "urn:bnum:10000095", + "urn:lccn:75960138", + "urn:oclc:NYPG001000047-B", + "urn:undefined:NNSZ00100047", + "urn:undefined:(WaOLN)nyp0200094" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Yemen (Republic) -- History -- Bibliography." + ], + "titleDisplay": [ + "Maṣādir tārīkh al-Yaman fī al-ʻaṣr al-Islāmī / waḍaʻahā Ayman Fuʼād Sayyid." + ], + "uri": "b10000095", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "titleAlt": [ + "Sources de l'histoire de Yemen à l'époque musulmane." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000095" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000038", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 82-5143" + ], + "identifierV2": [ + { + "value": "*OFK 82-5143", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548338" + } + ], + "physicalLocation": [ + "*OFK 82-5143" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548338" + ], + "idBarcode": [ + "33433005548338" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 82-005143" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000097", + "_score": null, + "_source": { + "extent": [ + "218 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Anti Laylāy" + ], + "shelfMark": [ + "*OFA 82-5142" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kharfī, Ṣāliḥ." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75960362" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-5142" + }, + { + "type": "nypl:Bnumber", + "value": "10000097" + }, + { + "type": "bf:Lccn", + "value": "75960362" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000048-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100048" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200096" + } + ], + "idOclc": [ + "NYPG001000048-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "al-Jazāʼir : al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1974." + ], + "identifier": [ + "urn:bnum:10000097", + "urn:lccn:75960362", + "urn:oclc:NYPG001000048-B", + "urn:undefined:NNSZ00100048", + "urn:undefined:(WaOLN)nyp0200096" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Anti Laylāy / Ṣāliḥ Kharfī." + ], + "uri": "b10000097", + "lccClassification": [ + "PJ7842.H3245 A83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Jazāʼir" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000097" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-5142" + ], + "identifierV2": [ + { + "value": "*OFA 82-5142", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000689" + } + ], + "physicalLocation": [ + "*OFA 82-5142" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000689" + ], + "idBarcode": [ + "33433002000689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-005142" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000099", + "_score": null, + "_source": { + "extent": [ + "520 p. : facsims. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Originally presented as the author's thesis (M. A.) Kullīyat Dār al-ʻUlūm.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 507-515.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ibn Rashīq al-Qayrawānī, al-Ḥasan, -1064?", + "Arabic poetry", + "Arabic poetry -- 750-1258", + "Arabic poetry -- 750-1258 -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wakālat al-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ibn Rashīq wa-naqd al-shiʻr : dirāsah naqdīyah taḥlīlīyah muqāranah" + ], + "shelfMark": [ + "*OFS 82-5141" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Makhlūf, ʻAbd al-Raʼūf." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75960190" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 82-5141" + }, + { + "type": "nypl:Bnumber", + "value": "10000099" + }, + { + "type": "bf:Lccn", + "value": "75960190" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000049-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100049" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200098" + } + ], + "idOclc": [ + "NYPG001000049-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Kuwayt : Wakālat al-Maṭbūʻāt, 1973." + ], + "identifier": [ + "urn:bnum:10000099", + "urn:lccn:75960190", + "urn:oclc:NYPG001000049-B", + "urn:undefined:NNSZ00100049", + "urn:undefined:(WaOLN)nyp0200098" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ibn Rashīq al-Qayrawānī, al-Ḥasan, -1064?", + "Arabic poetry -- 750-1258 -- History and criticism." + ], + "titleDisplay": [ + "Ibn Rashīq wa-naqd al-shiʻr : dirāsah naqdīyah taḥlīlīyah muqāranah / bi-qalam ʻAbd al-Raʼūf ʻAbd al-ʻAzīz Makhlūf." + ], + "uri": "b10000099", + "lccClassification": [ + "PJ7750.I27 Z82 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Kuwayt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000099" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 82-5141" + ], + "identifierV2": [ + { + "value": "*OFS 82-5141", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514545" + } + ], + "physicalLocation": [ + "*OFS 82-5141" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514545" + ], + "idBarcode": [ + "33433014514545" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 82-005141" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000101", + "_score": null, + "_source": { + "extent": [ + "7, 237 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "An abridgment of the thesis originally submitted to Jāmiʻat al-Qāhirah, 1963.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 225-229", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Arameans", + "Arameans -- Egypt" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OFP 82-5140" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ayad, Boulos Ayad." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "75960565" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-5140" + }, + { + "type": "nypl:Bnumber", + "value": "10000101" + }, + { + "type": "bf:Lccn", + "value": "75960565" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000050-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100050" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200100" + } + ], + "idOclc": [ + "NYPG001000050-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[al-Qāhirah : s.n., al-muqaddimah 1975]" + ], + "identifier": [ + "urn:bnum:10000101", + "urn:lccn:75960565", + "urn:oclc:NYPG001000050-B", + "urn:undefined:NNSZ00100050", + "urn:undefined:(WaOLN)nyp0200100" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Arameans -- Egypt." + ], + "titleDisplay": [ + "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. / Taʼlīf Būlus ʻAyyād ʻAyyād." + ], + "uri": "b10000101", + "lccClassification": [ + "DT72.A73 A92" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000101" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000041", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 82-5140" + ], + "identifierV2": [ + { + "value": "*OFP 82-5140", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001937568" + } + ], + "physicalLocation": [ + "*OFP 82-5140" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001937568" + ], + "idBarcode": [ + "33433001937568" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 82-005140" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000103", + "_score": null, + "_source": { + "extent": [ + "11, 602 p.: port.;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "75960366" + ], + "seriesStatement": [ + "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" + }, + { + "type": "nypl:Bnumber", + "value": "10000103" + }, + { + "type": "bf:Lccn", + "value": "75960366" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000051-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100051" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200102" + } + ], + "idOclc": [ + "NYPG001000051-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." + ], + "identifier": [ + "urn:bnum:10000103", + "urn:lccn:75960366", + "urn:oclc:NYPG001000051-B", + "urn:undefined:NNSZ00100051", + "urn:undefined:(WaOLN)nyp0200102" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "uri": "b10000103", + "lccClassification": [ + "PJ7842.H2937 A17 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Jazāʼir]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000103" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000042", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "identifierV2": [ + { + "value": "*OFA 82-5137", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000671" + } + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000671" + ], + "idBarcode": [ + "33433002000671" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-005137" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:08 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "177111", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"nested\":{\"path\":\"items\",\"query\":{\"constant_score\":{\"filter\":{\"bool\":{\"should\":[{\"term\":{\"items.holdingLocation.id\":\"loc:rc2ma\"}},{\"term\":{\"items.holdingLocation.label\":\"loc:rc2ma\"}}]}}}}}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "727" + }, + "timeout": 30000 + }, + "options": {}, + "id": 54 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-a19ae4e78b36593cbe7b84eebb64396f.json b/test/fixtures/query-a19ae4e78b36593cbe7b84eebb64396f.json deleted file mode 100644 index 9780e120..00000000 --- a/test/fixtures/query-a19ae4e78b36593cbe7b84eebb64396f.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 53, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.450954, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 15.450954, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json b/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json index 48f7546e..5924347f 100644 --- a/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json +++ b/test/fixtures/query-a744712a30c8bcda83ef121d25017ba7.json @@ -1,534 +1,575 @@ { - "took": 51, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.619752, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10022734", - "_score": 14.619752, - "_source": { - "extent": [ - "xiv, 381 p., [16] leaves of plates : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African American arts", - "African American arts -- New York", - "Arts, Modern", - "Arts, Modern -- 20th century", - "Arts, Modern -- 20th century -- New York", - "Harlem Renaissance", - "Harlem (New York, N.Y.)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Knopf : distributed by Random House" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 3 - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "When Harlem was in vogue" - ], - "shelfMark": [ - "IEC 81-1139" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lewis, David Levering, 1936-" - ], - "createdString": [ - "1981" - ], - "idLccn": [ - "80002704" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IEC 81-1139" - }, - { - "type": "nypl:Bnumber", - "value": "10022734" - }, - { - "type": "bf:Isbn", - "value": "0394495721 :" + "body": { + "took": 9, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.256477, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10022734", + "_score": 14.256477, + "_source": { + "extent": [ + "xiv, 381 p., [16] leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "African American arts", + "African American arts -- New York (State)", + "African American arts -- New York (State) -- New York", + "Arts, Modern", + "Arts, Modern -- 20th century", + "Arts, Modern -- 20th century -- New York (State)", + "Arts, Modern -- 20th century -- New York (State) -- New York", + "Harlem Renaissance", + "Harlem (New York, N.Y.)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Knopf : distributed by Random House" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1981 + ], + "title": [ + "When Harlem was in vogue" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "IEC 81-1139" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1981" + ], + "creatorLiteral": [ + "Lewis, David Levering, 1936-" + ], + "idLccn": [ + "80002704" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "idOclc": [ + "NYPG25743597-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IEC 81-1139" + }, + { + "type": "nypl:Bnumber", + "value": "10022734" + }, + { + "type": "bf:Isbn", + "value": "0394495721" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25743597-B" + }, + { + "type": "bf:Lccn", + "value": "80002704" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0022812" + } + ], + "updatedAt": 1706739063269, + "publicationStatement": [ + "New York : Knopf : distributed by Random House, 1981." + ], + "idIsbn": [ + "0394495721" + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:bnum:10022734", + "urn:isbn:0394495721", + "urn:oclc:NYPG25743597-B", + "urn:lccn:80002704", + "urn:identifier:(WaOLN)nyp0022812" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "African American arts -- New York (State) -- New York.", + "Arts, Modern -- 20th century -- New York (State) -- New York.", + "Harlem Renaissance.", + "Harlem (New York, N.Y.)" + ], + "titleDisplay": [ + "When Harlem was in vogue / David Levering Lewis." + ], + "uri": "b10022734", + "lccClassification": [ + "NX511.N4 L48 1981" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0394495721" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag82", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag82||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433035187214" + ], + "identifier": [ + "urn:shelfmark:IEC 81-1139", + "urn:barcode:33433035187214" + ], + "identifierV2": [ + { + "value": "IEC 81-1139", + "type": "bf:ShelfMark" + }, + { + "value": "33433035187214", + "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": [ + "IEC 81-1139" + ], + "requestable": [ + true + ], + "shelfMark": [ + "IEC 81-1139" + ], + "shelfMark_sort": "aIEC 81-001139", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010902" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:-", + "label": "No restrictions" + } + ], + "accessMessage_packed": [ + "accessMessage:-||No restrictions" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } + ], + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "idBarcode": [ + "33433015873411" + ], + "identifier": [ + "urn:shelfmark:Sc *700-L (Lewis, D. When Harlem was in vogue)", + "urn:barcode:33433015873411" + ], + "identifierV2": [ + { + "value": "Sc *700-L (Lewis, D. When Harlem was in vogue)", + "type": "bf:ShelfMark" + }, + { + "value": "33433015873411", + "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 *700-L (Lewis, D. When Harlem was in vogue)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Sc *700-L (Lewis, D. When Harlem was in vogue)" + ], + "shelfMark_sort": "aSc *700-L (Lewis, D. When Harlem was in vogue)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010903" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "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": [ + "33433034124614" + ], + "identifier": [ + "urn:shelfmark:Sc E 96-780", + "urn:barcode:33433034124614" + ], + "identifierV2": [ + { + "value": "Sc E 96-780", + "type": "bf:ShelfMark" + }, + { + "value": "33433034124614", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc E 96-780" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc E 96-780" + ], + "shelfMark_sort": "aSc E 96-000780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10010904" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "type": "bf:Lccn", - "value": "80002704" + "key": "loc:mag82||Schwarzman Building - Milstein Division Room 121", + "doc_count": 1 }, { - "type": "nypl:Oclc", - "value": "NYPG25743597-B" + "key": "loc:scff1||Schomburg Center - Research & Reference - Open Shelf", + "doc_count": 1 }, { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0022812" - } - ], - "idOclc": [ - "NYPG25743597-B" - ], - "updatedAt": 1690903833331, - "publicationStatement": [ - "New York : Knopf : distributed by Random House, 1981." - ], - "identifier": [ - "urn:bnum:10022734", - "urn:isbn:0394495721 :", - "urn:lccn:80002704", - "urn:oclc:NYPG25743597-B", - "urn:undefined:(WaOLN)nyp0022812" - ], - "idIsbn": [ - "0394495721 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" + "key": "loc:scff2||Schomburg Center - Research & Reference", + "doc_count": 1 } - ], - "dateString": [ - "1981" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 3 } - ], - "subjectLiteral": [ - "African American arts -- New York.", - "Arts, Modern -- 20th century -- New York.", - "Harlem Renaissance.", - "Harlem (New York, N.Y.)" - ], - "titleDisplay": [ - "When Harlem was in vogue / David Levering Lewis." - ], - "uri": "b10022734", - "lccClassification": [ - "NX511.N4 L48 1981" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 3, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 3 } - ], - "idIsbn_clean": [ - "0394495721" - ], - "dimensions": [ - "24 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10010904", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc E 96-780" - ], - "identifierV2": [ - { - "value": "Sc E 96-780", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433034124614" - } - ], - "physicalLocation": [ - "Sc E 96-780" - ], - "identifier": [ - "urn:barcode:33433034124614" - ], - "idBarcode": [ - "33433034124614" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-08-02" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc E 96-000780" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10010903", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff1", - "label": "Schomburg Center - Research & Reference - Open Shelf" - } - ], - "holdingLocation_packed": [ - "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" - ], - "shelfMark": [ - "Sc *700-L (Lewis, D. When Harlem was in vogue)" - ], - "identifierV2": [ - { - "value": "Sc *700-L (Lewis, D. When Harlem was in vogue)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015873411" - } - ], - "physicalLocation": [ - "Sc *700-L (Lewis, D. When Harlem was in vogue)" - ], - "identifier": [ - "urn:barcode:33433015873411" - ], - "idBarcode": [ - "33433015873411" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], - "accessMessage_packed": [ - "accessMessage:-||No restrictions" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc *700-L (Lewis, D. When Harlem was in vogue)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10010902", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag82", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag82||Schwarzman Building - Milstein Division Room 121" - ], - "shelfMark": [ - "IEC 81-1139" - ], - "identifierV2": [ - { - "value": "IEC 81-1139", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433035187214" - } - ], - "physicalLocation": [ - "IEC 81-1139" - ], - "identifier": [ - "urn:barcode:33433035187214" - ], - "idBarcode": [ - "33433035187214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aIEC 81-001139" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mag82||Schwarzman Building - Milstein Division Room 121", - "doc_count": 1 - }, - { - "key": "loc:scff1||Schomburg Center - Research & Reference - Open Shelf", - "doc_count": 1 - }, - { - "key": "loc:scff2||Schomburg Center - Research & Reference", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:56 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "7361", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10022734\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 33 }, - "item_format": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 3 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 2 - }, - { - "key": "status:co||Loaned", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-af1eb94bf25cec28cbb6055cc02978ea.json b/test/fixtures/query-af1eb94bf25cec28cbb6055cc02978ea.json new file mode 100644 index 00000000..1900f42f --- /dev/null +++ b/test/fixtures/query-af1eb94bf25cec28cbb6055cc02978ea.json @@ -0,0 +1,15630 @@ +{ + "body": { + "took": 616, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 10440897, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000109", + "_score": null, + "_source": { + "extent": [ + "xxii, 321 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [305]-321).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Americans", + "Americans -- Travel", + "Americans -- Travel -- History", + "Americans -- Travel -- History -- China", + "Americans -- Travel -- History -- China -- 19th century", + "Public opinion", + "Public opinion -- United States", + "Public opinion -- United States -- History", + "Public opinion -- United States -- History -- 19th century", + "United States", + "United States -- Civilization", + "United States -- Civilization -- Chinese influences", + "United States -- Intellectual life", + "United States -- Intellectual life -- 19th century", + "China", + "China -- Foreign public opinion, American", + "China -- Foreign public opinion, American -- History", + "China -- Foreign public opinion, American -- History -- 19th century", + "China -- Civilization", + "China -- Civilization -- Public opinion", + "China -- Civilization -- Public opinion -- History", + "China -- Civilization -- Public opinion -- History -- 19th century", + "China -- Description and travel", + "China -- In popular culture", + "United States -- Relations", + "United States -- Relations -- China", + "China -- Relations", + "China -- Relations -- United States" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Columbia University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 2008 + ], + "title": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 09-1362" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2008" + ], + "creatorLiteral": [ + "Haddad, John Rogers." + ], + "idLccn": [ + "2008037637" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2008 + ], + "idOclc": [ + "184821618" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 09-1362" + }, + { + "type": "nypl:Bnumber", + "value": "10000109" + }, + { + "type": "bf:Isbn", + "value": "9780231130943 (cloth : alk. paper)" + }, + { + "type": "bf:Isbn", + "value": "0231130945 (cloth : alk. paper)" + }, + { + "type": "nypl:Oclc", + "value": "184821618" + }, + { + "type": "bf:Lccn", + "value": "2008037637" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)184821618" + } + ], + "updatedAt": 1709334898828, + "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", + "urn:isbn:9780231130943 (cloth : alk. paper)", + "urn:isbn:0231130945 (cloth : alk. paper)", + "urn:oclc:184821618", + "urn:lccn:2008037637", + "urn:identifier:(OCoLC)184821618" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2008" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Americans -- Travel -- History -- China -- 19th century.", + "Public opinion -- United States -- History -- 19th century.", + "United States -- Civilization -- Chinese influences.", + "United States -- Intellectual life -- 19th century.", + "China -- Foreign public opinion, American -- History -- 19th century.", + "China -- Civilization -- Public opinion -- History -- 19th century.", + "China -- Description and travel.", + "China -- In popular culture.", + "United States -- Relations -- China.", + "China -- Relations -- United States." + ], + "titleDisplay": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." + ], + "uri": "b10000109", + "lccClassification": [ + "E183.8.C5 H175 2008" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "9780231130943", + "0231130945" + ] + }, + "sort": [ + "b10000109" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dueDate": [ + "2024-05-30" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061318089" + ], + "identifier": [ + "urn:shelfmark:*OLF 82-5145", + "urn:barcode:33433061318089" + ], + "identifierV2": [ + { + "value": "*OLF 82-5145", + "type": "bf:ShelfMark" + }, + { + "value": "33433061318089", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLF 82-5145" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*OLF 82-5145" + ], + "shelfMark_sort": "a*OLF 82-005145", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783799" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "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": [ + "33433084847221" + ], + "identifier": [ + "urn:shelfmark:JFE 09-1362", + "urn:barcode:33433084847221" + ], + "identifierV2": [ + { + "value": "JFE 09-1362", + "type": "bf:ShelfMark" + }, + { + "value": "33433084847221", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "JFE 09-1362" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 09-1362" + ], + "shelfMark_sort": "aJFE 09-001362", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i23117386" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000432", + "_score": null, + "_source": { + "extent": [ + "94 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Amīr Kabīr" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah" + ], + "shelfMark": [ + "*OMO 84-1527" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Yūshīj, Nīmā." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMO 84-1527" + }, + { + "type": "nypl:Bnumber", + "value": "10000432" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000386-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100386" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200431" + } + ], + "idOclc": [ + "NYPG001000386-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10000432", + "urn:oclc:NYPG001000386-B", + "urn:undefined:NNSZ00100386", + "urn:undefined:(WaOLN)nyp0200431" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah / az Nīmā yūshīj." + ], + "uri": "b10000432", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Khānah-ʼi Sarīvaylī." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000432" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000245", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMO 84-1527" + ], + "identifierV2": [ + { + "value": "*OMO 84-1527", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001898497" + } + ], + "physicalLocation": [ + "*OMO 84-1527" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001898497" + ], + "idBarcode": [ + "33433001898497" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMO 84-001527" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001333", + "_score": null, + "_source": { + "extent": [ + "v. : ill., folded maps ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Geomorphology", + "Geomorphology -- Libya" + ], + "publisherLiteral": [ + "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" + ], + "shelfMark": [ + "*OFO 82-5116" + ], + "creatorLiteral": [ + "Jawdah, Jawdah Ḥasanayn." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75960642" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFO 82-5116" + }, + { + "type": "nypl:Bnumber", + "value": "10001333" + }, + { + "type": "bf:Lccn", + "value": "75960642" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201348" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201331" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636070536203, + "publicationStatement": [ + "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" + ], + "identifier": [ + "urn:bnum:10001333", + "urn:lccn:75960642", + "urn:undefined:NNSZ00201348", + "urn:undefined:(WaOLN)nyp0201331" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Geomorphology -- Libya." + ], + "titleDisplay": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." + ], + "uri": "b10001333", + "lccClassification": [ + "GB440.L5 J38" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Binghāzī] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24cm." + ] + }, + "sort": [ + "b10001333" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000872", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode: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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000871", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001377", + "_score": null, + "_source": { + "extent": [ + "71 p. : ill., music ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 69).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Silbermann, Gottfried, 1683-1753", + "Organ (Musical instrument)", + "Organ (Musical instrument) -- Instruction and study", + "Improvisation (Music)", + "Improvisation (Music) -- Instruction and study", + "Organ music", + "Organ music -- Interpretation (Phrasing, dynamics, etc.)", + "Organ builders", + "Organ builders -- Germany" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Klaus-Jürgen Kamprad" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 2007 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Choralimprovisation auf Orgeln Gottfried Silbermanns" + ], + "shelfMark": [ + "JMG 09-710" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wagler, Dietrich, 1940-" + ], + "createdString": [ + "2007" + ], + "seriesStatement": [ + "Freiberger Studien zur Orgel ; 10" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gottfried-Silbermann-Gesellschaft." + ], + "dateStartYear": [ + 2007 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 09-710" + }, + { + "type": "nypl:Bnumber", + "value": "10001377" + }, + { + "type": "bf:Isbn", + "value": "9783930550494 (pbk.)" + }, + { + "type": "bf:Isbn", + "value": "3930550490 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "439765611" + }, + { + "type": "nypl:Oclc", + "value": "439765611" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)439765611" + } + ], + "idOclc": [ + "439765611" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "[Altenburg] : Verlag Klaus-Jürgen Kamprad, c2007." + ], + "identifier": [ + "urn:bnum:10001377", + "urn:isbn:9783930550494 (pbk.)", + "urn:isbn:3930550490 (pbk.)", + "urn:oclc:439765611", + "urn:undefined:(OCoLC)439765611" + ], + "idIsbn": [ + "9783930550494 (pbk.)", + "3930550490 (pbk.)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2007" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Silbermann, Gottfried, 1683-1753.", + "Organ (Musical instrument) -- Instruction and study.", + "Improvisation (Music) -- Instruction and study.", + "Organ music -- Interpretation (Phrasing, dynamics, etc.)", + "Organ builders -- Germany." + ], + "titleDisplay": [ + "Choralimprovisation auf Orgeln Gottfried Silbermanns / Dietrich Wagler ; [Hrsg.: Gottfried-Silbermann-Gesellschaft]." + ], + "uri": "b10001377", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Altenburg]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "9783930550494", + "3930550490" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10001377" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i24299761", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 09-710" + ], + "identifierV2": [ + { + "value": "JMG 09-710", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433089337251" + } + ], + "physicalLocation": [ + "JMG 09-710" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433089337251" + ], + "idBarcode": [ + "33433089337251" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMG 09-000710" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001657", + "_score": null, + "_source": { + "extent": [ + "v. : ill., maps ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on p. [4] of cover: Village gazetteer.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "English and Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Gazetteers", + "Villages", + "Villages -- Iran", + "Villages -- Iran -- Statistics" + ], + "publisherLiteral": [ + "Markaz-i Āmār-i Īrān," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "shelfMark": [ + "Map Div. 84-146" + ], + "creatorLiteral": [ + "Markaz-i Āmār-i Īrān." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "81464564" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146" + }, + { + "type": "nypl:Bnumber", + "value": "10001657" + }, + { + "type": "bf:Lccn", + "value": "81464564" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201692" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201655" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636095534719, + "publicationStatement": [ + "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" + ], + "identifier": [ + "urn:bnum:10001657", + "urn:lccn:81464564", + "urn:undefined:NNSZ00201692", + "urn:undefined:(WaOLN)nyp0201655" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Gazetteers.", + "Villages -- Iran -- Statistics." + ], + "titleDisplay": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "uri": "b10001657", + "lccClassification": [ + "DS253 .M37" + ], + "numItems": [ + 11 + ], + "numAvailable": [ + 11 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Village gazetteer." + ], + "tableOfContents": [ + "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." + ], + "dimensions": [ + "42x54 cm." + ] + }, + "sort": [ + "b10001657" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 11, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030870" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000017", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784147", + "shelfMark": [ + "Map Div. 84-146 v. 17" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030862" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000015", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784146", + "shelfMark": [ + "Map Div. 84-146 v. 15" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030854" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000014", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784145", + "shelfMark": [ + "Map Div. 84-146 v. 14" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030847" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000010", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784144", + "shelfMark": [ + "Map Div. 84-146 v. 10" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 10" + }, + { + "type": "bf:Barcode", + "value": "33433057030847" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 10" + ], + "idBarcode": [ + "33433057030847" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030839" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000009", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784143", + "shelfMark": [ + "Map Div. 84-146 v. 9" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 9" + }, + { + "type": "bf:Barcode", + "value": "33433057030839" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 9" + ], + "idBarcode": [ + "33433057030839" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030821" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000006", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784142", + "shelfMark": [ + "Map Div. 84-146 v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433057030821" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433057030821" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030813" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784141", + "shelfMark": [ + "Map Div. 84-146 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433057030813" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433057030813" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030805" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784140", + "shelfMark": [ + "Map Div. 84-146 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433057030805" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433057030805" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030797" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784139", + "shelfMark": [ + "Map Div. 84-146 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057030797" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057030797" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030789" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784138", + "shelfMark": [ + "Map Div. 84-146 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057030789" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057030789" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030771" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784137", + "shelfMark": [ + "Map Div. 84-146 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057030771" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057030771" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001844", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu philosophy", + "Vedanta" + ], + "publisherLiteral": [ + "Chaukhambā Vidyābhavana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." + ], + "shelfMark": [ + "*OKN 82-2276" + ], + "creatorLiteral": [ + "Bādarāyaṇa." + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 65007118" + ], + "seriesStatement": [ + "Vidyābhavara Saṃskrta granthamālā, 124" + ], + "contributorLiteral": [ + "Sastri, Hanumanadas, Swami.", + "Śaṅkarācārya." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "nypl:Bnumber", + "value": "10001844" + }, + { + "type": "bf:Lccn", + "value": "sa 65007118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201882" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201842" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636079011965, + "publicationStatement": [ + "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" + ], + "identifier": [ + "urn:bnum:10001844", + "urn:lccn:sa 65007118", + "urn:undefined:NNSZ00201882", + "urn:undefined:(WaOLN)nyp0201842" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu philosophy.", + "Vedanta." + ], + "titleDisplay": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." + ], + "uri": "b10001844", + "lccClassification": [ + "B132.V3 B22" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasī," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Brahmasūtra Śaṅkarbhāṣya." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10001844" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058617816" + ], + "physicalLocation": [ + "*OKN 82-2276" + ], + "shelfMark_sort": "a*OKN 82-002276", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784177", + "shelfMark": [ + "*OKN 82-2276" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "bf:Barcode", + "value": "33433058617816" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058617816" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002118", + "_score": null, + "_source": { + "extent": [ + "204 p. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Wakālat Nāy," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1999" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Awlād bi-al-jumlah" + ], + "shelfMark": [ + "*OFD 82-4488" + ], + "creatorLiteral": [ + "Gilbreth, Frank B. (Frank Bunker), 1911-2001." + ], + "createdString": [ + "1900" + ], + "contributorLiteral": [ + "Carey, Ernestine Moller, 1908-", + "Ṭāhā, Aḥmad." + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "nypl:Bnumber", + "value": "10002118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202160" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202114" + } + ], + "uniformTitle": [ + "Cheaper by the dozen. Arabic" + ], + "dateEndYear": [ + 1999 + ], + "updatedAt": 1636076222810, + "publicationStatement": [ + "Dimashq : Wakālat Nāy, 19--." + ], + "identifier": [ + "urn:bnum:10002118", + "urn:undefined:NNSZ00202160", + "urn:undefined:(WaOLN)nyp0202114" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." + ], + "uri": "b10002118", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Cheaper by the dozen." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10002118" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001997497" + ], + "physicalLocation": [ + "*OFD 82-4488" + ], + "shelfMark_sort": "a*OFD 82-004488", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001459", + "shelfMark": [ + "*OFD 82-4488" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "bf:Barcode", + "value": "33433001997497" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001997497" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002297", + "_score": null, + "_source": { + "extent": [ + "199 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Politics and government", + "Iran -- Politics and government -- 20th century" + ], + "publisherLiteral": [ + "Intishārāt-i Firdawsī," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." + ], + "shelfMark": [ + "*OMZ 84-1529" + ], + "creatorLiteral": [ + "Dawlatābādī, Àlī Muḥammad." + ], + "createdString": [ + "1983" + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1529" + }, + { + "type": "nypl:Bnumber", + "value": "10002297" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202345" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202293" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636109324448, + "publicationStatement": [ + "Tihrān : Intishārāt-i Firdawsī, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10002297", + "urn:undefined:NNSZ00202345", + "urn:undefined:(WaOLN)nyp0202293" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Politics and government -- 20th century." + ], + "titleDisplay": [ + "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." + ], + "uri": "b10002297", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10002297" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539872" + ], + "physicalLocation": [ + "*OMZ 84-1529" + ], + "shelfMark_sort": "a*OMZ 84-001529", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942128", + "shelfMark": [ + "*OMZ 84-1529" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1529" + }, + { + "type": "bf:Barcode", + "value": "33433014539872" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539872" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002303", + "_score": null, + "_source": { + "extent": [ + "280 p. : facsim. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Politics and government", + "Iran -- Politics and government -- 20th century", + "Political prisoners", + "Political prisoners -- Iran", + "Political prisoners -- Iran -- Biography" + ], + "publisherLiteral": [ + "Intishārāt-i Haftah," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad" + ], + "shelfMark": [ + "*OMZ 84-1538" + ], + "creatorLiteral": [ + "Khāmahʼī, Anvar." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1538" + }, + { + "type": "nypl:Bnumber", + "value": "10002303" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202351" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202299" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636121044994, + "publicationStatement": [ + "Tihrān : Intishārāt-i Haftah, [198-?]" + ], + "identifier": [ + "urn:bnum:10002303", + "urn:undefined:NNSZ00202351", + "urn:undefined:(WaOLN)nyp0202299" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Politics and government -- 20th century.", + "Political prisoners -- Iran -- Biography." + ], + "titleDisplay": [ + "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad / khāṭirāt-i Anvar Khāmah'ī." + ], + "uri": "b10002303", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10002303" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539880" + ], + "physicalLocation": [ + "*OMZ 84-1538" + ], + "shelfMark_sort": "a*OMZ 84-001538", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942130", + "shelfMark": [ + "*OMZ 84-1538" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1538" + }, + { + "type": "bf:Barcode", + "value": "33433014539880" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539880" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003134", + "_score": null, + "_source": { + "extent": [ + "397 p. : ill., port., facsim. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- History", + "Iran -- History -- Qajar dynasty, 1794-1925", + "Statesmen", + "Statesmen -- Iran", + "Statesmen -- Iran -- Biography" + ], + "publisherLiteral": [ + "Intishārāt-i Amīr Kabīr," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī" + ], + "shelfMark": [ + "*OMZ 84-1427" + ], + "creatorLiteral": [ + "Mumtaḥin al-Dawlah Shaqāqī, Mahdī Khān." + ], + "createdString": [ + "1983" + ], + "seriesStatement": [ + "Majmūʻah-ʼi guzashtah-ʼi Īrān dar nivishtah-ʼi pīshīnīyān, 1" + ], + "contributorLiteral": [ + "Khānshaqāqī, Ḥusaynqulī." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1427" + }, + { + "type": "nypl:Bnumber", + "value": "10003134" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303485" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203127" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636109324448, + "publicationStatement": [ + "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003134", + "urn:undefined:NNSZ00303485", + "urn:undefined:(WaOLN)nyp0203127" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- History -- Qajar dynasty, 1794-1925.", + "Statesmen -- Iran -- Biography." + ], + "titleDisplay": [ + "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī / bi-kūshish-i Ḥusaynqulī Khānshaqāqī." + ], + "uri": "b10003134", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24cm." + ] + }, + "sort": [ + "b10003134" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539856" + ], + "physicalLocation": [ + "*OMZ 84-1427" + ], + "shelfMark_sort": "a*OMZ 84-001427", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942159", + "shelfMark": [ + "*OMZ 84-1427" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1427" + }, + { + "type": "bf:Barcode", + "value": "33433014539856" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539856" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003171", + "_score": null, + "_source": { + "extent": [ + "412 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Naw" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āvāz-i kushtigān" + ], + "shelfMark": [ + "*OMP 84-2030" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Baraheni, Reza, 1935-2022." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2030" + }, + { + "type": "nypl:Bnumber", + "value": "10003171" + }, + { + "type": "nypl:Oclc", + "value": "NYPG003000626-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303522" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203164" + } + ], + "idOclc": [ + "NYPG003000626-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1675110792889, + "publicationStatement": [ + "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003171", + "urn:oclc:NYPG003000626-B", + "urn:undefined:NNSZ00303522", + "urn:undefined:(WaOLN)nyp0203164" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Āvāz-i kushtigān / Rizā Barāhinī." + ], + "uri": "b10003171", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm." + ] + }, + "sort": [ + "b10003171" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10002196", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2030" + ], + "identifierV2": [ + { + "value": "*OMP 84-2030", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173038" + } + ], + "physicalLocation": [ + "*OMP 84-2030" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173038" + ], + "idBarcode": [ + "33433013173038" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002030" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003179", + "_score": null, + "_source": { + "extent": [ + "101 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Naw" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Chāh bih chāh" + ], + "shelfMark": [ + "*OMP 84-2039" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Baraheni, Reza, 1935-2022." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2039" + }, + { + "type": "nypl:Bnumber", + "value": "10003179" + }, + { + "type": "nypl:Oclc", + "value": "NYPG003000634-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303530" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203172" + } + ], + "idOclc": [ + "NYPG003000634-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1675110792235, + "publicationStatement": [ + "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003179", + "urn:oclc:NYPG003000634-B", + "urn:undefined:NNSZ00303530", + "urn:undefined:(WaOLN)nyp0203172" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Chāh bih chāh / Rizā Barāhinī." + ], + "uri": "b10003179", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003179" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10002203", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2039" + ], + "identifierV2": [ + { + "value": "*OMP 84-2039", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173053" + } + ], + "physicalLocation": [ + "*OMP 84-2039" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173053" + ], + "idBarcode": [ + "33433013173053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002039" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003180", + "_score": null, + "_source": { + "extent": [ + "235 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam and state", + "Islam and state -- Iran", + "Khomeini, Ruhollah" + ], + "publisherLiteral": [ + "Org. of Act. Constitutionalist Iranians," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1989" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Qizāvat" + ], + "shelfMark": [ + "*OMZ 84-965" + ], + "creatorLiteral": [ + "ʻAbd al-Raḥmān." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-965" + }, + { + "type": "nypl:Bnumber", + "value": "10003180" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303531" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203173" + } + ], + "dateEndYear": [ + 1989 + ], + "updatedAt": 1636124389229, + "publicationStatement": [ + "Los Angeles : Org. of Act. Constitutionalist Iranians, [198-?]" + ], + "identifier": [ + "urn:bnum:10003180", + "urn:undefined:NNSZ00303531", + "urn:undefined:(WaOLN)nyp0203173" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam and state -- Iran.", + "Khomeini, Ruhollah." + ], + "titleDisplay": [ + "Qizāvat / ʻAbd al-Raḥmān..." + ], + "uri": "b10003180", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Los Angeles :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10003180" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539666" + ], + "physicalLocation": [ + "*OMZ 84-965" + ], + "shelfMark_sort": "a*OMZ 84-000965", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942161", + "shelfMark": [ + "*OMZ 84-965" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-965" + }, + { + "type": "bf:Barcode", + "value": "33433014539666" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539666" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003410", + "_score": null, + "_source": { + "extent": [ + "v. facsims." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Introd. in Arabic and English ; text in Arabic.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: v. 1, p. [313]-314.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic law" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ikhtilāf al-fuqahāʼ," + ], + "shelfMark": [ + "*OGM 84-702" + ], + "creatorLiteral": [ + "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72930954" + ], + "seriesStatement": [ + "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" + ], + "contributorLiteral": [ + "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "nypl:Bnumber", + "value": "10003410" + }, + { + "type": "bf:Lccn", + "value": "72930954" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303765" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203402" + } + ], + "uniformTitle": [ + "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636104747880, + "publicationStatement": [ + "Islām Ābād [1971-" + ], + "identifier": [ + "urn:bnum:10003410", + "urn:lccn:72930954", + "urn:undefined:NNSZ00303765", + "urn:undefined:(WaOLN)nyp0203402" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic law." + ], + "titleDisplay": [ + "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." + ], + "uri": "b10003410", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Islām Ābād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003410" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001944960" + ], + "physicalLocation": [ + "*OGM 84-702" + ], + "shelfMark_sort": "a*OGM 84-000702", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002358", + "shelfMark": [ + "*OGM 84-702" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "bf:Barcode", + "value": "33433001944960" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001944960" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003414", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Skandamahāpurāṇam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added t.p. in English or Hindi.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Manasukharāya Mora," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Skandamahāpurāṇam" + ], + "shelfMark": [ + "*OKOK 84-641" + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "73902099" + ], + "seriesStatement": [ + "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641" + }, + { + "type": "nypl:Bnumber", + "value": "10003414" + }, + { + "type": "bf:Lccn", + "value": "73902099" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303769" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203406" + } + ], + "uniformTitle": [ + "Puranas Skanda Purāṇa." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636124303127, + "publicationStatement": [ + "Kalakattā : Manasukharāya Mora, 1960-" + ], + "identifier": [ + "urn:bnum:10003414", + "urn:lccn:73902099", + "urn:undefined:NNSZ00303769", + "urn:undefined:(WaOLN)nyp0203406" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." + ], + "uri": "b10003414", + "lccClassification": [ + "PK3621 .S5 1960" + ], + "numItems": [ + 6 + ], + "numAvailable": [ + 6 + ], + "placeOfPublication": [ + "Kalakattā :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Skanda-Purāṇam." + ], + "tableOfContents": [ + "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10003414" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 6, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002364", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002363", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221407" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002362", + "shelfMark": [ + "*OKOK 84-641 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013221407" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013221407" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221399" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002365", + "shelfMark": [ + "*OKOK 84-641 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013221399" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433013221399" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221381" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002361", + "shelfMark": [ + "*OKOK 84-641 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433013221381" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433013221381" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221373" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002360", + "shelfMark": [ + "*OKOK 84-641 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013221373" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013221373" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003502", + "_score": null, + "_source": { + "extent": [ + "v. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Partly translations from German poetry (with German texts included).", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Liesma," + ], + "language": [ + { + "id": "lang:lav", + "label": "Latvian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dziesmiņas" + ], + "shelfMark": [ + "*QYN 82-2046" + ], + "creatorLiteral": [ + "Alunāns, Juris, 1832-1864." + ], + "createdString": [ + "1981" + ], + "seriesStatement": [ + "Literārā mantojuma mazā bibliotēka" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046" + }, + { + "type": "nypl:Bnumber", + "value": "10003502" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303857" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203494" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636091475285, + "publicationStatement": [ + "Riga : Liesma, 1981-" + ], + "identifier": [ + "urn:bnum:10003502", + "urn:undefined:NNSZ00303857", + "urn:undefined:(WaOLN)nyp0203494" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dziesmiņas / Juris Alunāns." + ], + "uri": "b10003502", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Riga :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "17 cm." + ] + }, + "sort": [ + "b10003502" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002421", + "shelfMark": [ + "*QYN 82-2046 Dala 1." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046 Dala 1." + }, + { + "type": "bf:Barcode", + "value": "33433013501782" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013501782" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003671", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- Politics and government", + "Egypt -- Politics and government -- 640-1882" + ], + "publisherLiteral": [ + "Maktabat al-Anjlū al-Miṣrīyah," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." + ], + "shelfMark": [ + "*OFP 82-1931" + ], + "creatorLiteral": [ + "Mājid, ʻAbd al-Munʻim." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "73960873" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10003671" + }, + { + "type": "bf:Lccn", + "value": "73960873" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304029" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203663" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636119319155, + "publicationStatement": [ + "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" + ], + "identifier": [ + "urn:bnum:10003671", + "urn:lccn:73960873", + "urn:undefined:NNSZ00304029", + "urn:undefined:(WaOLN)nyp0203663" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- Politics and government -- 640-1882." + ], + "titleDisplay": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." + ], + "uri": "b10003671", + "lccClassification": [ + "JQ3824 .M34 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Institutions et cérémonial des Fatimides en Égypte." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003671" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001937121" + ], + "physicalLocation": [ + "*OFP 82-1931" + ], + "shelfMark_sort": "a*OFP 82-001931", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002566", + "shelfMark": [ + "*OFP 82-1931" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "bf:Barcode", + "value": "33433001937121" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937121" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003719", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 2 & 4: pariṣkarta Puripanda.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Telugu literature", + "Telugu literature -- History and criticism" + ], + "publisherLiteral": [ + "Āndhrapradēś Sāhitya Akāḍami" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." + ], + "shelfMark": [ + "*OLC 83-35" + ], + "creatorLiteral": [ + "Subrahmanyam, G. V., 1935-" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "71912553" + ], + "contributorLiteral": [ + "Appalaswamy, Puripanda, 1904-", + "Āndhra Pradēśa Sāhitya Akāḍami." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35" + }, + { + "type": "nypl:Bnumber", + "value": "10003719" + }, + { + "type": "bf:Lccn", + "value": "71912553" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304078" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203711" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132209400, + "publicationStatement": [ + "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" + ], + "identifier": [ + "urn:bnum:10003719", + "urn:lccn:71912553", + "urn:undefined:NNSZ00304078", + "urn:undefined:(WaOLN)nyp0203711" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Telugu literature -- History and criticism." + ], + "titleDisplay": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." + ], + "uri": "b10003719", + "lccClassification": [ + "PL4780.05 S79" + ], + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Haidrābādu," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003719" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197476" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002605", + "shelfMark": [ + "*OLC 83-35 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433011197476" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433011197476" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197468" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002604", + "shelfMark": [ + "*OLC 83-35 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433011197468" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433011197468" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197450" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002603", + "shelfMark": [ + "*OLC 83-35 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433011197450" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433011197450" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197443" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002602", + "shelfMark": [ + "*OLC 83-35 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011197443" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433011197443" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197435" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002601", + "shelfMark": [ + "*OLC 83-35 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011197435" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433011197435" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003958", + "_score": null, + "_source": { + "extent": [ + "39, 18, 83, 3 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Original Version", + "label": "Reprint of the 1910 ? ed.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Logic", + "Logic -- Early works to 1800" + ], + "publisherLiteral": [ + "Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1910" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn," + ], + "shelfMark": [ + "*OGL 83-2455" + ], + "creatorLiteral": [ + "Avicenna, 980-1037." + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "73960850" + ], + "contributorLiteral": [ + "Avicenna, 980-1037." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGL 83-2455" + }, + { + "type": "nypl:Bnumber", + "value": "10003958" + }, + { + "type": "bf:Lccn", + "value": "73960850" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304319" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203950" + } + ], + "dateEndYear": [ + 1910 + ], + "updatedAt": 1636072413178, + "publicationStatement": [ + "Qum : Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī, 1405 [1984 or 1985]" + ], + "identifier": [ + "urn:bnum:10003958", + "urn:lccn:73960850", + "urn:undefined:NNSZ00304319", + "urn:undefined:(WaOLN)nyp0203950" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Logic -- Early works to 1800." + ], + "titleDisplay": [ + "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn, taṣnīf Abī ʻAlī ibn Sīnā." + ], + "uri": "b10003958", + "lccClassification": [ + "B751 .M4 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Qum :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10003958" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058069919" + ], + "physicalLocation": [ + "*OGL 83-2455" + ], + "shelfMark_sort": "a*OGL 83-002455", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858216", + "shelfMark": [ + "*OGL 83-2455" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGL 83-2455" + }, + { + "type": "bf:Barcode", + "value": "33433058069919" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058069919" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004373", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994" + ], + "publisherLiteral": [ + "Karnāṭaka Sahakārī Prakāśana Mandira" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu." + ], + "shelfMark": [ + "*OLA 83-3417" + ], + "creatorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902119" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417" + }, + { + "type": "nypl:Bnumber", + "value": "10004373" + }, + { + "type": "bf:Lccn", + "value": "72902119" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304738" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204365" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636109940889, + "publicationStatement": [ + "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" + ], + "identifier": [ + "urn:bnum:10004373", + "urn:lccn:72902119", + "urn:undefined:NNSZ00304738", + "urn:undefined:(WaOLN)nyp0204365" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994." + ], + "titleDisplay": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." + ], + "uri": "b10004373", + "lccClassification": [ + "PL4659.P797 S7934" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004373" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003188", + "shelfMark": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417 Library has: Vol. 1, 3." + }, + { + "type": "bf:Barcode", + "value": "33433001707623" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001707623" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057523718" + ], + "physicalLocation": [ + "*OLA 83-341" + ], + "shelfMark_sort": "a*OLA 83-341 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858227", + "shelfMark": [ + "*OLA 83-341 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-341 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057523718" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057523718" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004788", + "_score": null, + "_source": { + "extent": [ + "277 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Plon" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Le château du soleil couchant : roman" + ], + "shelfMark": [ + "JFE 84-3450" + ], + "creatorLiteral": [ + "Grey, Marina." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "La saga de l'exil / Marina Grey ; [3]", + "Grey, Marina. Saga de l'exil ; \\[3]" + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 84-3450" + }, + { + "type": "nypl:Bnumber", + "value": "10004788" + }, + { + "type": "bf:Isbn", + "value": "2259011187 :" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405900" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204778" + } + ], + "updatedAt": 1652324535423, + "publicationStatement": [ + "Paris : Plon, 1984." + ], + "identifier": [ + "urn:bnum:10004788", + "urn:isbn:2259011187 :", + "urn:undefined:NNSZ00405900", + "urn:undefined:(WaOLN)nyp0204778" + ], + "idIsbn": [ + "2259011187 " + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Le château du soleil couchant : roman / Marina Grey." + ], + "uri": "b10004788", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "2259011187" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10004788" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433046113944" + ], + "physicalLocation": [ + "JFE 84-3450" + ], + "shelfMark_sort": "aJFE 84-003450", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858280", + "shelfMark": [ + "JFE 84-3450" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 84-3450" + }, + { + "type": "bf:Barcode", + "value": "33433046113944" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433046113944" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004816", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Martins Livreiro-Editor," + ], + "language": [ + { + "id": "lang:por", + "label": "Portuguese" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A outra face de J. Simões Lopes Neto" + ], + "shelfMark": [ + "JFK 84-291" + ], + "creatorLiteral": [ + "Lopes Neto, J. Simões (João Simões), 1865-1916." + ], + "createdString": [ + "1983" + ], + "idLccn": [ + "84227211" + ], + "contributorLiteral": [ + "Moreira, Angelo Pires." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291" + }, + { + "type": "nypl:Bnumber", + "value": "10004816" + }, + { + "type": "bf:Lccn", + "value": "84227211" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204806" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636069640817, + "publicationStatement": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" + ], + "identifier": [ + "urn:bnum:10004816", + "urn:lccn:84227211", + "urn:undefined:(WaOLN)nyp0204806" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." + ], + "uri": "b10004816", + "lccClassification": [ + "PQ9697.L7223 A6 1983" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004816" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003418559" + ], + "physicalLocation": [ + "JFK 84-291" + ], + "shelfMark_sort": "aJFK 84-291 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003383", + "shelfMark": [ + "JFK 84-291 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433003418559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433003418559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004947", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Geografi︠i︡a.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 170.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1926 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-221 no. 8" + ], + "creatorLiteral": [ + "Räshad, Gafyr." + ], + "createdString": [ + "1926" + ], + "dateStartYear": [ + 1926 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-221 no. 8" + }, + { + "type": "nypl:Bnumber", + "value": "10004947" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406058" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204937" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403668, + "publicationStatement": [ + "Baqï : Azärnäshr, 1926-" + ], + "identifier": [ + "urn:bnum:10004947", + "urn:undefined:NNSZ00406058", + "urn:undefined:(WaOLN)nyp0204937" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1926" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Gafyr Räshad." + ], + "uri": "b10004947", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Geografi︠i︡a." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10004947" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105673499" + ], + "physicalLocation": [ + "*ZO-221" + ], + "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30081242", + "shelfMark": [ + "*ZO-221 11 Azerbaijani monographs" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005127", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 151.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1928 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-216 no. 15" + ], + "creatorLiteral": [ + "Ivanov, G." + ], + "createdString": [ + "1928" + ], + "dateStartYear": [ + 1928 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-216 no. 15" + }, + { + "type": "nypl:Bnumber", + "value": "10005127" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406243" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205116" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403606, + "publicationStatement": [ + "Baqï : Azärnäshr, 1928-" + ], + "identifier": [ + "urn:bnum:10005127", + "urn:undefined:NNSZ00406243", + "urn:undefined:(WaOLN)nyp0205116" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1928" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." + ], + "uri": "b10005127", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Nachalʹnyĭ kurs geografii." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005127" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005211", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Khaos.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 586.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1929 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Xaos [microform]" + ], + "shelfMark": [ + "*ZO-220 no. 9" + ], + "creatorLiteral": [ + "Shirvanzade, 1858-1935." + ], + "createdString": [ + "1929" + ], + "dateStartYear": [ + 1929 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10005211" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406328" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205200" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636144501921, + "publicationStatement": [ + "Bagï : Azärnäshr, 1929" + ], + "identifier": [ + "urn:bnum:10005211", + "urn:undefined:NNSZ00406328", + "urn:undefined:(WaOLN)nyp0205200" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1929" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts." + ], + "titleDisplay": [ + "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." + ], + "uri": "b10005211", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bagï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Khaos." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005211" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105674059" + ], + "physicalLocation": [ + "*ZO-220" + ], + "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30087469", + "shelfMark": [ + "*ZO-220 collection of 10 titles (monographs)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 collection of 10 titles (monographs)" + }, + { + "type": "bf:Barcode", + "value": "33433105674059" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "enumerationChronology": [ + "collection of 10 titles (monographs)" + ], + "idBarcode": [ + "33433105674059" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005860", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Swahili.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Swahili language", + "Swahili language -- Texts" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:swa", + "label": "Swahili" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "shelfMark": [ + "Sc Ser.-N .Z288" + ], + "creatorLiteral": [ + "Zanzibar." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-N .Z288" + }, + { + "type": "nypl:Bnumber", + "value": "10005860" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507074" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205850" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636116169694, + "publicationStatement": [ + "[Zanzibar : s.n., 1980- ]" + ], + "identifier": [ + "urn:bnum:10005860", + "urn:undefined:NNSZ00507074", + "urn:undefined:(WaOLN)nyp0205850" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Swahili language -- Texts." + ], + "titleDisplay": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "uri": "b10005860", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Zanzibar :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Kitabu cha 1-9." + ], + "dimensions": [ + "13-31 cm." + ] + }, + "sort": [ + "b10005860" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942241", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-N .Z288 Kituba cha 1-9" + ], + "identifierV2": [ + { + "value": "Sc Ser.-N .Z288 Kituba cha 1-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030859007" + } + ], + "physicalLocation": [ + "Sc Ser.-N .Z288" + ], + "enumerationChronology": [ + "Kituba cha 1-9" + ], + "identifier": [ + "urn:barcode:33433030859007" + ], + "idBarcode": [ + "33433030859007" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005862", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editor: Gerald A. McWorter.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "African Americans", + "African Americans -- Study and teaching", + "African Americans -- Study and teaching -- Congresses", + "Black people", + "Black people -- Study and teaching", + "Black people -- Study and teaching -- Congresses" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Afro-American Studies and Research Program, University of Illinois" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1983 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Proceedings" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1983" + ], + "creatorLiteral": [ + "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "McWorter, Gerald A." + ], + "dateStartYear": [ + 1983 + ], + "idOclc": [ + "NYPG005000004-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .N3674" + }, + { + "type": "nypl:Bnumber", + "value": "10005862" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507076" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205852" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "identifier": [ + { + "type": "bf:shelfMark", + "value": "Sc Ser.-M .N3674" + } + ], + "physicalLocation": [ + "Sc Ser.-M .N3674" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "uri": "h1144093" + } + ], + "updatedAt": 1709752718868, + "publicationStatement": [ + "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .N3674", + "urn:bnum:10005862", + "urn:oclc:NYPG005000004-B", + "urn:identifier:NNSZ00507076", + "urn:identifier:(WaOLN)nyp0205852" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "African Americans -- Study and teaching -- Congresses.", + "Black people -- Study and teaching -- Congresses." + ], + "titleDisplay": [ + "Proceedings / National Council for Black Studies, 6th annual national conference." + ], + "uri": "b10005862", + "placeOfPublication": [ + "Urbana, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005862" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "no. 3-5" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "no. 1-2" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005870", + "_score": null, + "_source": { + "extent": [ + "71 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"D'après le livre et le montage audiovisual 'L'Evolution de l'amour' por D. Sonet, légèrement adapté avec l'aimable autorisation de l'auteur.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sex instruction", + "Sex instruction -- Haiti", + "Sonet, D" + ], + "publisherLiteral": [ + "Action familiale d'Haïti," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A quel age peut-on aimer? : pour une éducation à l'amour responsable" + ], + "shelfMark": [ + "Sc D 84-595" + ], + "createdString": [ + "1980" + ], + "contributorLiteral": [ + "Action familiale d'Haïti." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-595" + }, + { + "type": "nypl:Bnumber", + "value": "10005870" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507084" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205860" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636069688379, + "publicationStatement": [ + "Port-au-Prince : Action familiale d'Haïti, [198-?]" + ], + "identifier": [ + "urn:bnum:10005870", + "urn:undefined:NNSZ00507084", + "urn:undefined:(WaOLN)nyp0205860" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sex instruction -- Haiti.", + "Sonet, D." + ], + "titleDisplay": [ + "A quel age peut-on aimer? : pour une éducation à l'amour responsable / Action familiale d'Haïti." + ], + "uri": "b10005870", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Port-au-Prince :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10005870" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900461", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-595" + ], + "identifierV2": [ + { + "value": "Sc D 84-595", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036649329" + } + ], + "physicalLocation": [ + "Sc D 84-595" + ], + "identifier": [ + "urn:barcode:33433036649329" + ], + "idBarcode": [ + "33433036649329" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000595" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005876", + "_score": null, + "_source": { + "extent": [ + "xxvii, 751 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of title: Unesco International Scientific Committee for the Drafting of a General History of Africa.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 692-733.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa", + "Africa -- History", + "Africa -- History -- To 1884" + ], + "publisherLiteral": [ + "Heinemann ; University of California Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Africa from the twelfth to the sixteenth century" + ], + "shelfMark": [ + "Sc E 84-288" + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "84256508 //r86" + ], + "seriesStatement": [ + "General history of Africa ; 4" + ], + "contributorLiteral": [ + "Niane, Djibril Tamsir.", + "Unesco. International Scientific Committee for the Drafting of a General History of Africa." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc E 84-288" + }, + { + "type": "nypl:Bnumber", + "value": "10005876" + }, + { + "type": "bf:Isbn", + "value": "0435948105" + }, + { + "type": "bf:Isbn", + "value": "0520039157 (University of California Press)" + }, + { + "type": "bf:Lccn", + "value": "84256508 //r86" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205866" + } + ], + "updatedAt": 1652323261637, + "publicationStatement": [ + "London : Heinemann ; Berkeley, Calif. : University of California Press, 1984." + ], + "identifier": [ + "urn:bnum:10005876", + "urn:isbn:0435948105", + "urn:isbn:0520039157 (University of California Press)", + "urn:lccn:84256508 //r86", + "urn:undefined:(WaOLN)nyp0205866" + ], + "idIsbn": [ + "0435948105", + "0520039157 (University of California Press)" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa -- History -- To 1884." + ], + "titleDisplay": [ + "Africa from the twelfth to the sixteenth century / editor, D.T. Niane." + ], + "uri": "b10005876", + "lccClassification": [ + "DT20 .G45 1981 vol. 4 DT25" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London : Berkeley, Calif." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0435948105", + "0520039157" + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10005876" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10003888", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc E 84-288" + ], + "identifierV2": [ + { + "value": "Sc E 84-288", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433021813997" + } + ], + "physicalLocation": [ + "Sc E 84-288" + ], + "identifier": [ + "urn:barcode:33433021813997" + ], + "idBarcode": [ + "33433021813997" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc E 84-000288" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10003889", + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "shelfMark": [ + "*R-BK 90-2407" + ], + "identifierV2": [ + { + "value": "*R-BK 90-2407", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*R-BK 90-2407" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:-", + "label": "No restrictions" + } + ], + "accessMessage_packed": [ + "accessMessage:-||No restrictions" + ], + "shelfMark_sort": "a*R-BK 90-002407" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005898", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Creole dialects, French", + "Creole dialects, French -- Haiti", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" + ], + "publisherLiteral": [ + "I.L.A. de Port-au-Prince," + ], + "language": [ + { + "id": "lang:crp", + "label": "Creoles and Pidgins (Other)" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Leson kreyòl pou etranje ki pale franse \\" + ], + "shelfMark": [ + "Sc Ser.-M .M468" + ], + "creatorLiteral": [ + "Mirville, Ernst." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "Collection Coucoville", + "Siwolin; \\t.2" + ], + "contributorLiteral": [ + "Institut de linguistique appliquée de Port-au-Prince." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .M468" + }, + { + "type": "nypl:Bnumber", + "value": "10005898" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507113" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205888" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1144290", + "shelfMark": [ + "Sc Ser.-M .M468" + ] + } + ], + "updatedAt": 1636113236627, + "publicationStatement": [ + "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" + ], + "identifier": [ + "urn:bnum:10005898", + "urn:undefined:NNSZ00507113", + "urn:undefined:(WaOLN)nyp0205888" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." + ], + "titleDisplay": [ + "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." + ], + "uri": "b10005898", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Port-au-Prince :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005898" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900486", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .M468 t. 2, ptie 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .M468 t. 2, ptie 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017863220" + } + ], + "physicalLocation": [ + "Sc Ser.-M .M468" + ], + "enumerationChronology": [ + "t. 2, ptie 1" + ], + "identifier": [ + "urn:barcode:33433017863220" + ], + "idBarcode": [ + "33433017863220" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005902", + "_score": null, + "_source": { + "extent": [ + "76 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs, English", + "Sacred songs, English -- Caribbean Area", + "Sacred songs, English -- Caribbean Area -- Texts", + "Sacred songs, English -- Jamaica", + "Sacred songs, English -- Jamaica -- Texts" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Modern Jamaican-Caribbean religious folk music." + ], + "shelfMark": [ + "Sc D 84-602" + ], + "createdString": [ + "1900" + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-602" + }, + { + "type": "nypl:Bnumber", + "value": "10005902" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507117" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205892" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636116687148, + "publicationStatement": [ + "[S.l. : s.n., 19--]" + ], + "identifier": [ + "urn:bnum:10005902", + "urn:undefined:NNSZ00507117", + "urn:undefined:(WaOLN)nyp0205892" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs, English -- Caribbean Area -- Texts.", + "Sacred songs, English -- Jamaica -- Texts." + ], + "titleDisplay": [ + "Modern Jamaican-Caribbean religious folk music." + ], + "uri": "b10005902", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10005902" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900490", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-602" + ], + "identifierV2": [ + { + "value": "Sc D 84-602", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058825831" + } + ], + "physicalLocation": [ + "Sc D 84-602" + ], + "identifier": [ + "urn:barcode:33433058825831" + ], + "idBarcode": [ + "33433058825831" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000602" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005905", + "_score": null, + "_source": { + "extent": [ + "52 p. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\" + ], + "shelfMark": [ + "Sc C 85-2" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Passavant, Camille." + ], + "createdString": [ + "1900" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc C 85-2" + }, + { + "type": "nypl:Bnumber", + "value": "10005905" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000048-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507120" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205895" + } + ], + "idOclc": [ + "NYPG005000048-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1681930671217, + "publicationStatement": [ + "[Fort-de-France? Martinique : s.n., 19--] 52" + ], + "identifier": [ + "urn:bnum:10005905", + "urn:oclc:NYPG005000048-B", + "urn:undefined:NNSZ00507120", + "urn:undefined:(WaOLN)nyp0205895" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\ Camille Passavant." + ], + "uri": "b10005905", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Fort-de-France? Martinique" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 x 21 cm." + ] + }, + "sort": [ + "b10005905" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900493", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc C 85-2" + ], + "identifierV2": [ + { + "value": "Sc C 85-2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036604563" + } + ], + "physicalLocation": [ + "Sc C 85-2" + ], + "identifier": [ + "urn:barcode:33433036604563" + ], + "idBarcode": [ + "33433036604563" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc C 85-000002" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005907", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Discography: p. 115-122.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- History and criticism" + ], + "publisherLiteral": [ + "Producciones Don Pedro," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "En torno al jazz" + ], + "shelfMark": [ + "Sc Ser.-L .V354" + ], + "creatorLiteral": [ + "Vélez, Ana." + ], + "createdString": [ + "1978" + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V354" + }, + { + "type": "nypl:Bnumber", + "value": "10005907" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507122" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205897" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636093384929, + "publicationStatement": [ + "San Juan, P.R. : Producciones Don Pedro, 1978-" + ], + "identifier": [ + "urn:bnum:10005907", + "urn:undefined:NNSZ00507122", + "urn:undefined:(WaOLN)nyp0205897" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jazz -- History and criticism." + ], + "titleDisplay": [ + "En torno al jazz / Ana Vélez." + ], + "uri": "b10005907", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "San Juan, P.R. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10005907" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900496", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 2" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017895651" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 2" + ], + "identifier": [ + "urn:barcode:33433017895651" + ], + "idBarcode": [ + "33433017895651" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900495", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030890481" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 1" + ], + "identifier": [ + "urn:barcode:33433030890481" + ], + "idBarcode": [ + "33433030890481" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005910", + "_score": null, + "_source": { + "extent": [ + "xvi, 99 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 99.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Universities and colleges", + "Universities and colleges -- Africa", + "Universities and colleges -- Zambia" + ], + "publisherLiteral": [ + "Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The African university : issues and perspectives : speeches" + ], + "shelfMark": [ + "Sc D 84-502" + ], + "creatorLiteral": [ + "Goma, L. K. H." + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "84980558" + ], + "seriesStatement": [ + "Zambian papers ; no. 14" + ], + "contributorLiteral": [ + "Tembo, L. P.", + "University of Zambia. Institute for African Studies." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-502" + }, + { + "type": "nypl:Bnumber", + "value": "10005910" + }, + { + "type": "bf:Lccn", + "value": "84980558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205900" + } + ], + "updatedAt": 1636133189056, + "publicationStatement": [ + "Lusaka, Zambia : Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia, 1984." + ], + "identifier": [ + "urn:bnum:10005910", + "urn:lccn:84980558", + "urn:undefined:(WaOLN)nyp0205900" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Universities and colleges -- Africa.", + "Universities and colleges -- Zambia." + ], + "titleDisplay": [ + "The African university : issues and perspectives : speeches / by L.H.K. [i.e. L.K.H.] Goma ; selected and edited by L.P. Tembo." + ], + "uri": "b10005910", + "lccClassification": [ + "DT963.A3 Z3 no. 14 LA1503" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Lusaka, Zambia :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10005910" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433021791029" + ], + "physicalLocation": [ + "Sc D 84-502" + ], + "shelfMark_sort": "aSc D 84-000502", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003896", + "shelfMark": [ + "Sc D 84-502" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-502" + }, + { + "type": "bf:Barcode", + "value": "33433021791029" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433021791029" + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003630815" + ], + "physicalLocation": [ + "JFK 86-224" + ], + "shelfMark_sort": "aJFK 86-224 v. 000014", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003897", + "shelfMark": [ + "JFK 86-224 v. 14" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 86-224 v. 14" + }, + { + "type": "bf:Barcode", + "value": "33433003630815" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 14" + ], + "idBarcode": [ + "33433003630815" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006007", + "_score": null, + "_source": { + "extent": [ + "2 microfilm reels ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes biographical notes, scope and contents note and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm of Mss.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Washington, Fredi, 1903-1994", + "African American actresses", + "African American actresses -- Correspondence", + "African American women journalists", + "African American women journalists -- Correspondence", + "African Americans in the performing arts", + "African American actors", + "African American journalists" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Amistad Research Center" + ], + "description": [ + "Contains approximately one hundred pieces of correspondence, news clippings containing reviews of productions in which Fredi Washington appeared, and Washington's columns for The People's voice. Other groups in the collection are theatre programs, scripts, photographs and documentation of honors conferred on Fredi Washington." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1980 + ], + "dateEndString": [ + "1984" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Fredi Washington papers, 1925-1979." + ], + "shelfMark": [ + "Sc Micro R-4205" + ], + "numItemVolumesParsed": [ + 2 + ], + "creatorLiteral": [ + "Washington, Fredi, 1903-1994." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Amistad Research Center." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro R-4205" + }, + { + "type": "nypl:Bnumber", + "value": "10006007" + }, + { + "type": "nypl:Oclc", + "value": "11780064" + }, + { + "type": "nypl:Oclc", + "value": "11780064" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11780064" + } + ], + "idOclc": [ + "11780064" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1681930673375, + "publicationStatement": [ + "New Orleans, La. : Amistad Research Center, [198-?]" + ], + "identifier": [ + "urn:bnum:10006007", + "urn:oclc:11780064", + "urn:undefined:(OCoLC)11780064" + ], + "genreForm": [ + "Personal correspondence." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Washington, Fredi, 1903-1994.", + "African American actresses -- Correspondence.", + "African American women journalists -- Correspondence.", + "African Americans in the performing arts.", + "African American actors.", + "African American journalists." + ], + "titleDisplay": [ + "Fredi Washington papers, 1925-1979." + ], + "uri": "b10006007", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "New Orleans, La." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 mm" + ] + }, + "sort": [ + "b10006007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900582", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4205 r. 2" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4205 r. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433031242500" + } + ], + "enumerationChronology": [ + "r. 2" + ], + "physicalLocation": [ + "Sc Micro R-4205" + ], + "identifier": [ + "urn:barcode:33433031242500" + ], + "idBarcode": [ + "33433031242500" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-4205 r. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900581", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4205 r. 1" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4205 r. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433031242492" + } + ], + "enumerationChronology": [ + "r. 1" + ], + "physicalLocation": [ + "Sc Micro R-4205" + ], + "identifier": [ + "urn:barcode:33433031242492" + ], + "idBarcode": [ + "33433031242492" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-4205 r. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006011", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tem language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tem" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Der-Houssikian, Haig." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .T425" + }, + { + "type": "nypl:Bnumber", + "value": "10006011" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507231" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206003" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132578775, + "publicationStatement": [ + "Brattleboro, vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006011", + "urn:undefined:NNSZ00507231", + "urn:undefined:(WaOLN)nyp0206003" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tem language." + ], + "titleDisplay": [ + "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Communication and culture handbook/by Haig Der-Houssikian.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i23169346", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .T425", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076233265" + } + ], + "physicalLocation": [ + "Sc Ser.-M .T425" + ], + "identifier": [ + "urn:barcode:33433076233265" + ], + "idBarcode": [ + "33433076233265" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .T000425" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006012", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kabre language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kabiye" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Experiment in International Living.", + "Jassor, Essogoye.", + "Sedlak, Philip Alan Stephen, 1939-" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc F 84-135" + }, + { + "type": "nypl:Bnumber", + "value": "10006012" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507232" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206004" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108841395, + "publicationStatement": [ + "Brattleboro, Vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006012", + "urn:undefined:NNSZ00507232", + "urn:undefined:(WaOLN)nyp0206004" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kabre language." + ], + "titleDisplay": [ + "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, Vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900585", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "identifierV2": [ + { + "value": "Sc F 84-135", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036872368" + } + ], + "physicalLocation": [ + "Sc F 84-135" + ], + "identifier": [ + "urn:barcode:33433036872368" + ], + "idBarcode": [ + "33433036872368" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 84-000135" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006018", + "_score": null, + "_source": { + "extent": [ + "v. : ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Corrections to volume I\": v. 2, p. 69.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iota Phi Lambda" + ], + "publisherLiteral": [ + "The Sorority," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1959 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A History of Iota Phi Lambda Sorority." + ], + "shelfMark": [ + "Sc Ser.-M .H592" + ], + "createdString": [ + "1959" + ], + "contributorLiteral": [ + "Greene, Ethel K.", + "Sims, Sarah B." + ], + "dateStartYear": [ + 1959 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .H592" + }, + { + "type": "nypl:Bnumber", + "value": "10006018" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507238" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206010" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1142937", + "shelfMark": [ + "Sc Ser.-M .H592" + ] + } + ], + "updatedAt": 1636069378411, + "publicationStatement": [ + "Washington : The Sorority, 1959-" + ], + "identifier": [ + "urn:bnum:10006018", + "urn:undefined:NNSZ00507238", + "urn:undefined:(WaOLN)nyp0206010" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iota Phi Lambda." + ], + "titleDisplay": [ + "A History of Iota Phi Lambda Sorority." + ], + "uri": "b10006018", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Washington :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746595", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061038323" + } + ], + "physicalLocation": [ + "Sc Ser.-M .H592" + ], + "enumerationChronology": [ + "v. 1, 2 (1928-19, 1959-69)" + ], + "identifier": [ + "urn:barcode:33433061038323" + ], + "idBarcode": [ + "33433061038323" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006034", + "_score": null, + "_source": { + "extent": [ + "79 p. : ill., maps ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa", + "Africa -- Portuguese", + "Cão, Diogo, active 15th century", + "Dias, Bartolomeu", + "Gama, Vasco da, 1469-1524", + "Portuguese", + "Portuguese -- India", + "Portuguese -- India -- History" + ], + "publisherLiteral": [ + "Basler Afrika Bibliographien," + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen" + ], + "shelfMark": [ + "Sc D 84-477" + ], + "creatorLiteral": [ + "Kalthammer, Wilhelm." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "Beiträge zur Afrikakunde, 0171-1660; 5" + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-477" + }, + { + "type": "nypl:Bnumber", + "value": "10006034" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507257" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206027" + } + ], + "updatedAt": 1636088600902, + "publicationStatement": [ + "Basel : Basler Afrika Bibliographien, 1978." + ], + "identifier": [ + "urn:bnum:10006034", + "urn:undefined:NNSZ00507257", + "urn:undefined:(WaOLN)nyp0206027" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa -- Portuguese.", + "Cão, Diogo, active 15th century.", + "Dias, Bartolomeu.", + "Gama, Vasco da, 1469-1524.", + "Portuguese -- India -- History." + ], + "titleDisplay": [ + "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen / Wilhelm Kalthammer." + ], + "uri": "b10006034", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Basel :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900606", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-477" + ], + "identifierV2": [ + { + "value": "Sc D 84-477", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036649683" + } + ], + "physicalLocation": [ + "Sc D 84-477" + ], + "identifier": [ + "urn:barcode:33433036649683" + ], + "idBarcode": [ + "33433036649683" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000477" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006043", + "_score": null, + "_source": { + "extent": [ + "205 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa, Sub-Saharan", + "Africa, Sub-Saharan -- Relations", + "Africa, Sub-Saharan -- Relations -- Arab countries", + "Arab countries", + "Arab countries -- Relations", + "Arab countries -- Relations -- Africa, Sub-Saharan" + ], + "publisherLiteral": [ + "Unesco," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." + ], + "shelfMark": [ + "Sc E 84-236" + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "General history of Africa: studies and documents; 7" + ], + "contributorLiteral": [ + "Unesco." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc E 84-236" + }, + { + "type": "nypl:Bnumber", + "value": "10006043" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206036" + } + ], + "updatedAt": 1636103134727, + "publicationStatement": [ + "Paris : Unesco, 1984." + ], + "identifier": [ + "urn:bnum:10006043", + "urn:undefined:(WaOLN)nyp0206036" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa, Sub-Saharan -- Relations -- Arab countries.", + "Arab countries -- Relations -- Africa, Sub-Saharan." + ], + "titleDisplay": [ + "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." + ], + "uri": "b10006043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10006043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900614", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc E 84-236" + ], + "identifierV2": [ + { + "value": "Sc E 84-236", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036807315" + } + ], + "physicalLocation": [ + "Sc E 84-236" + ], + "identifier": [ + "urn:barcode:33433036807315" + ], + "idBarcode": [ + "33433036807315" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc E 84-000236" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006159", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Civil rights", + "Civil rights -- United States", + "Violence", + "Violence -- United States", + "African Americans", + "African Americans -- Civil rights" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Foundation for Negro Affairs" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Law and disorder a research position paper" + ], + "shelfMark": [ + "Sc Micro R-4202, no. 16" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro R-4202, no. 16" + }, + { + "type": "nypl:Bnumber", + "value": "10006159" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000311-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507384" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206150" + } + ], + "idOclc": [ + "NYPG005000311-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689883301321, + "publicationStatement": [ + "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" + ], + "identifier": [ + "urn:bnum:10006159", + "urn:oclc:NYPG005000311-B", + "urn:undefined:NNSZ00507384", + "urn:undefined:(WaOLN)nyp0206150" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Civil rights -- United States.", + "Violence -- United States.", + "African Americans -- Civil rights." + ], + "titleDisplay": [ + "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." + ], + "uri": "b10006159", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Philadelphia, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 x 28 cm." + ] + }, + "sort": [ + "b10006159" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i24023455", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4202" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4202", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433059035760" + } + ], + "physicalLocation": [ + "Sc Micro R-4202" + ], + "identifier": [ + "urn:barcode:33433059035760" + ], + "idBarcode": [ + "33433059035760" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-004202" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006344", + "_score": null, + "_source": { + "extent": [ + "11 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Black people", + "Black people -- Caribbean Area", + "Black people -- Caribbean Area -- Social conditions", + "Middle class", + "Middle class -- Caribbean Area" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1999" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The making of a middle class" + ], + "shelfMark": [ + "Sc Micro F-10459" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Franks, W. Stanley." + ], + "createdString": [ + "1900" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro F-10459" + }, + { + "type": "nypl:Bnumber", + "value": "10006344" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000499-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206335" + } + ], + "idOclc": [ + "NYPG005000499-B" + ], + "dateEndYear": [ + 1999 + ], + "updatedAt": 1689018711074, + "publicationStatement": [ + "[S.l. : s.n., 19--]" + ], + "identifier": [ + "urn:bnum:10006344", + "urn:oclc:NYPG005000499-B", + "urn:undefined:NNSZ00507572", + "urn:undefined:(WaOLN)nyp0206335" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Black people -- Caribbean Area -- Social conditions.", + "Middle class -- Caribbean Area." + ], + "titleDisplay": [ + "The making of a middle class [microform] / by W. S. Franks ; with a foreword by Lee Llewellyn Moore." + ], + "uri": "b10006344", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "sort": [ + "b10006344" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540203", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:26", + "label": "microfiche" + } + ], + "catalogItemType_packed": [ + "catalogItemType:26||microfiche" + ], + "holdingLocation": [ + { + "id": "loc:scff3", + "label": "Schomburg Center - Research & Reference - Desk" + } + ], + "holdingLocation_packed": [ + "loc:scff3||Schomburg Center - Research & Reference - Desk" + ], + "shelfMark": [ + "Sc Micro F-10459" + ], + "identifierV2": [ + { + "value": "Sc Micro F-10459", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058831748" + } + ], + "physicalLocation": [ + "Sc Micro F-10459" + ], + "identifier": [ + "urn:barcode:33433058831748" + ], + "idBarcode": [ + "33433058831748" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro F-010459" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006540", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 issued without edition statement has imprint date 1972.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Germany", + "Germany -- History", + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945", + "World War, 1939-1945 -- Germany" + ], + "publisherLiteral": [ + "Selbstverlag," + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Was geschah nach 1945?" + ], + "shelfMark": [ + "JFK 84-184" + ], + "creatorLiteral": [ + "Roth, Heinz." + ], + "createdString": [ + "1970" + ], + "seriesStatement": [ + "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", + "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184" + }, + { + "type": "nypl:Bnumber", + "value": "10006540" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507771" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206529" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636143161690, + "publicationStatement": [ + "Odenhausen/Lumda : Selbstverlag, [197-?-" + ], + "identifier": [ + "urn:bnum:10006540", + "urn:undefined:NNSZ00507771", + "urn:undefined:(WaOLN)nyp0206529" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945 -- Germany." + ], + "titleDisplay": [ + "Was geschah nach 1945? / Heinz Roth." + ], + "uri": "b10006540", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Odenhausen/Lumda :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Was geschah nach neunzehnhundertfünfundvierzig." + ], + "tableOfContents": [ + "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006540" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003841073" + ], + "physicalLocation": [ + "JFK 84-184" + ], + "shelfMark_sort": "aJFK 84-184 v. 000001-2", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003927", + "shelfMark": [ + "JFK 84-184 v. 1-2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184 v. 1-2" + }, + { + "type": "bf:Barcode", + "value": "33433003841073" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1-2" + ], + "idBarcode": [ + "33433003841073" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006622", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Caldas (Colombia : Department)", + "Caldas (Colombia : Department) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Biblioteca de Escritores Caldenses" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Historia del Gran Caldas" + ], + "shelfMark": [ + "HDK 84-1693" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Ríos Tobón, Ricardo de los." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693" + }, + { + "type": "nypl:Bnumber", + "value": "10006622" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000779-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507853" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206611" + } + ], + "idOclc": [ + "NYPG005000779-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1682562721628, + "publicationStatement": [ + "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" + ], + "identifier": [ + "urn:bnum:10006622", + "urn:oclc:NYPG005000779-B", + "urn:undefined:NNSZ00507853", + "urn:undefined:(WaOLN)nyp0206611" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Caldas (Colombia : Department) -- History." + ], + "titleDisplay": [ + "Historia del Gran Caldas / Ricardo de los Ríos Tobón." + ], + "uri": "b10006622", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Manizales, Colombia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Origenes y colonización hasta 1850." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006622" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097665214" + ], + "physicalLocation": [ + "HDK 84-1693" + ], + "m2CustomerCode": [ + "XA" + ], + "shelfMark_sort": "aHDK 84-1693 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746647", + "shelfMark": [ + "HDK 84-1693 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433097665214" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433097665214" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006645", + "_score": null, + "_source": { + "extent": [ + "a, 257 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Translation of: Algoritmy upravlen︠i︡a rabotami-manipul︠i︡atorami.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"JPRS 59717.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 245-252.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Photocopy.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Manipulators (Mechanism)", + "Robots, Industrial" + ], + "publisherLiteral": [ + "Joint Publications Research Service," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "1973" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Robot-manipulator control algorithms" + ], + "shelfMark": [ + "JSF 83-552" + ], + "creatorLiteral": [ + "Ignatʹev, M. B. (Mikhail Borisovich)" + ], + "createdString": [ + "1984" + ], + "contributorLiteral": [ + "Kulakov, F. M. (Feliks Mikhaĭlovich)", + "Pokrovskiĭ, A. M." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 83-552" + }, + { + "type": "nypl:Bnumber", + "value": "10006645" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206634" + } + ], + "uniformTitle": [ + "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami. English" + ], + "dateEndYear": [ + 1973 + ], + "updatedAt": 1636073144930, + "publicationStatement": [ + "Arlington, Va. : Joint Publications Research Service, 1973." + ], + "identifier": [ + "urn:bnum:10006645", + "urn:undefined:(WaOLN)nyp0206634" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Manipulators (Mechanism)", + "Robots, Industrial." + ], + "titleDisplay": [ + "Robot-manipulator control algorithms / by M.B. Ignatʹyev, F.M. Kulakov, A.M. Pokrovskiy." + ], + "uri": "b10006645", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Arlington, Va. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami." + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10006645" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433037693748" + ], + "physicalLocation": [ + "JSF 83-552" + ], + "shelfMark_sort": "aJSF 83-000552", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12540383", + "shelfMark": [ + "JSF 83-552" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 83-552" + }, + { + "type": "bf:Barcode", + "value": "33433037693748" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433037693748" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006687", + "_score": null, + "_source": { + "extent": [ + "v. : ill., ports, ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "publisherLiteral": [ + "Bókaútgáfan Skjaldborg," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-217" + ], + "creatorLiteral": [ + "Eiður Guðmundsson, 1888-1984." + ], + "createdString": [ + "1982" + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217" + }, + { + "type": "nypl:Bnumber", + "value": "10006687" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507920" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206676" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Akureyri : Bókaútgáfan Skjaldborg, 1982-" + ], + "identifier": [ + "urn:bnum:10006687", + "urn:undefined:NNSZ00507920", + "urn:undefined:(WaOLN)nyp0206676" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "titleDisplay": [ + "Ritsafn / Eidur Gudmundsson Púfnav;ollum." + ], + "uri": "b10006687", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Akureyri :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10006687" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069567" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003946", + "shelfMark": [ + "JFL 84-217 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069567" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069567" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069559" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003945", + "shelfMark": [ + "JFL 84-217 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006688", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iceland", + "Iceland -- Economic conditions", + "Iceland -- History", + "Iceland -- Social conditions" + ], + "publisherLiteral": [ + "Mál og Menning," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-216" + ], + "creatorLiteral": [ + "Sverrir Kristjánsson, 1908-" + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216" + }, + { + "type": "nypl:Bnumber", + "value": "10006688" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206677" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Reykjavík : Mál og Menning, 1981-" + ], + "identifier": [ + "urn:bnum:10006688", + "urn:undefined:NNSZ00507921", + "urn:undefined:(WaOLN)nyp0206677" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iceland -- Economic conditions.", + "Iceland -- History.", + "Iceland -- Social conditions." + ], + "titleDisplay": [ + "Ritsafn / Sverrir Kristjánsson." + ], + "uri": "b10006688", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Reykjavík :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10006688" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069542" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003948", + "shelfMark": [ + "JFL 84-216 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069542" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069542" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069534" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003947", + "shelfMark": [ + "JFL 84-216 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069534" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069534" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006699", + "_score": null, + "_source": { + "extent": [ + "483 p. : ill., ports ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 476-483.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dominican literature", + "Dominican literature -- Manuals, handbooks, etc", + "Latin American literature", + "Latin American literature -- Study and teaching", + "Latin American literature -- Study and teaching -- Handbooks, manuals, etc" + ], + "publisherLiteral": [ + "s.n.]," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media" + ], + "shelfMark": [ + "JFF 84-820" + ], + "createdString": [ + "1984" + ], + "contributorLiteral": [ + "Gómez de Michel, Fiume." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 84-820" + }, + { + "type": "nypl:Bnumber", + "value": "10006699" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507932" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206688" + } + ], + "updatedAt": 1636114816670, + "publicationStatement": [ + "[Santo Domingo, R. D. : s.n.], 1984" + ], + "identifier": [ + "urn:bnum:10006699", + "urn:undefined:NNSZ00507932", + "urn:undefined:(WaOLN)nyp0206688" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dominican literature -- Manuals, handbooks, etc.", + "Latin American literature -- Study and teaching -- Handbooks, manuals, etc." + ], + "titleDisplay": [ + "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media / [compilación] Fiumé Gómez de Michel." + ], + "uri": "b10006699", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Santo Domingo, R. D. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10006699" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433050352214" + ], + "physicalLocation": [ + "JFF 84-820" + ], + "shelfMark_sort": "aJFF 84-000820", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784848", + "shelfMark": [ + "JFF 84-820" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 84-820" + }, + { + "type": "bf:Barcode", + "value": "33433050352214" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433050352214" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:07 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "197166", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":1984}}},{\"range\":{\"dateEndYear\":{\"gte\":1984}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 51 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-af2c6a904983b67a7eed159c29009afa.json b/test/fixtures/query-af2c6a904983b67a7eed159c29009afa.json new file mode 100644 index 00000000..fe57adf3 --- /dev/null +++ b/test/fixtures/query-af2c6a904983b67a7eed159c29009afa.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 52, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.006381, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.006381, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:11 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"ISBN \\\\-\\\\- 020 $z\\\"\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"\\\"ISBN \\\\-\\\\- 020 $z\\\"\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"\\\"ISBN \\\\-\\\\- 020 $z\\\"\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1072" + }, + "timeout": 30000 + }, + "options": {}, + "id": 65 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json b/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json index 01bcdc90..e1dfa7ab 100644 --- a/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json +++ b/test/fixtures/query-b42be6cd6e74c6eb45bd02fb0b86e80e.json @@ -1,1270 +1,1318 @@ { - "took": 10, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.919557, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b14937001", - "_score": 14.919557, - "_source": { - "note": [ - { - "noteType": "Note", - "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Kunst-blatt. Stuttgart, 1816-1849.", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "J. G. Cotta'sche buchhandlung." - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 4 - ], - "dateEndString": [ - "1" - ], - "createdYear": [ - 1855 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Morgenblatt für gebildete leser." - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1855" - ], - "idLccn": [ - "cau08001961" - ], - "numElectronicResources": [ - 88 - ], - "dateStartYear": [ - 1855 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DF+ (Morgenblatt für gebildete Leser)" - }, - { - "type": "nypl:Bnumber", - "value": "14937001" - }, - { - "type": "bf:Lccn", - "value": "cau08001961" - }, - { - "type": "nypl:Oclc", - "value": "1608345" - }, - { - "type": "bf:Identifier", - "value": "0494254" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)ret0001042" - } - ], - "idOclc": [ - "1608345" - ], - "dateEndYear": [ - 1 - ], - "updatedAt": 1671729582968, - "publicationStatement": [ - "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." - ], - "identifier": [ - "urn:bnum:14937001", - "urn:lccn:cau08001961", - "urn:oclc:1608345", - "urn:undefined:0494254", - "urn:undefined:(WaOLN)ret0001042" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1855" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Morgenblatt für gebildete leser." - ], - "uri": "b14937001", - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Stuttgart, Tübingen [etc.]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "shelfMark_sort": "bi14937001-e", - "electronicLocator": [ - { - "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899526k" - }, - { - "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", - "url": "http://hdl.handle.net/2027/umn.31951001899527i" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899528g" - }, - { - "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", - "url": "http://hdl.handle.net/2027/umn.31951001899529e" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899530t" - }, - { - "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", - "url": "http://hdl.handle.net/2027/umn.31951001899531r" - }, - { - "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", - "url": "http://hdl.handle.net/2027/umn.31951001899532p" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899534l" - }, - { - "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", - "url": "http://hdl.handle.net/2027/umn.31951001899535j" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899536h" - }, - { - "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", - "url": "http://hdl.handle.net/2027/umn.31951001899537f" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899538d" - }, - { - "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", - "url": "http://hdl.handle.net/2027/umn.31951001899539b" - }, - { - "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", - "url": "http://hdl.handle.net/2027/umn.31951001899541o" - }, - { - "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", - "url": "http://hdl.handle.net/2027/umn.31951001899542m" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899505s" - }, - { - "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", - "url": "http://hdl.handle.net/2027/umn.31951001899506q" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899544i" - }, - { - "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", - "url": "http://hdl.handle.net/2027/umn.31951001899545g" - }, - { - "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", - "url": "http://hdl.handle.net/2027/umn.31951001899547c" - }, - { - "label": "Full text available via HathiTrust - jahrg.22 (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899548a" - }, - { - "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", - "url": "http://hdl.handle.net/2027/umn.31951001899620s" - }, - { - "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", - "url": "http://hdl.handle.net/2027/umn.31951001899550n" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899551l" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899552j" - }, - { - "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", - "url": "http://hdl.handle.net/2027/umn.31951001899624k" - }, - { - "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", - "url": "http://hdl.handle.net/2027/umn.31951001899554f" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899555d" - }, - { - "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", - "url": "http://hdl.handle.net/2027/umn.31951001899556b" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995587" - }, - { - "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", - "url": "http://hdl.handle.net/2027/umn.319510018995595" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899560k" - }, - { - "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", - "url": "http://hdl.handle.net/2027/umn.31951001899561i" - }, - { - "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", - "url": "http://hdl.handle.net/2027/umn.31951001899563e" - }, - { - "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", - "url": "http://hdl.handle.net/2027/umn.31951001899641k" - }, - { - "label": "Full text available via HathiTrust - jahrg.33 (1839)", - "url": "http://hdl.handle.net/2027/umn.319510018995668" - }, - { - "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", - "url": "http://hdl.handle.net/2027/umn.31951001899642i" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899645c" - }, - { - "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", - "url": "http://hdl.handle.net/2027/umn.31951001899646a" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", - "url": "http://hdl.handle.net/2027/umn.319510018995692" - }, - { - "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", - "url": "http://hdl.handle.net/2027/umn.31951001899571f" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899572d" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", - "url": "http://hdl.handle.net/2027/umn.31951001899573b" - }, - { - "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", - "url": "http://hdl.handle.net/2027/umn.319510018995749" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", - "url": "http://hdl.handle.net/2027/umn.31951p01107664f" - }, - { - "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", - "url": "http://hdl.handle.net/2027/umn.319510018995765" - }, - { - "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", - "url": "http://hdl.handle.net/2027/umn.319510018995781" - }, - { - "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", - "url": "http://hdl.handle.net/2027/umn.31951001899509k" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", - "url": "http://hdl.handle.net/2027/umn.31951001899582a" - }, - { - "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", - "url": "http://hdl.handle.net/2027/umn.319510018995838" - }, - { - "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", - "url": "http://hdl.handle.net/2027/umn.31951001899589w" - }, - { - "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", - "url": "http://hdl.handle.net/2027/umn.31951001899590b" - }, - { - "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", - "url": "http://hdl.handle.net/2027/umn.31951001899599t" - }, - { - "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", - "url": "http://hdl.handle.net/2027/umn.31951001899512v" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899600y" - }, - { - "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", - "url": "http://hdl.handle.net/2027/umn.31951001899601w" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899602u" - }, - { - "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", - "url": "http://hdl.handle.net/2027/umn.31951001899603s" - }, - { - "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", - "url": "http://hdl.handle.net/2027/umn.31951001899605o" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899606m" - }, - { - "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", - "url": "http://hdl.handle.net/2027/umn.31951001899607k" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899608i" - }, - { - "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", - "url": "http://hdl.handle.net/2027/umn.31951001899609g" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899610v" - }, - { - "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", - "url": "http://hdl.handle.net/2027/umn.31951001899611t" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899612r" - }, - { - "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", - "url": "http://hdl.handle.net/2027/umn.31951001899613p" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899614n" - }, - { - "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", - "url": "http://hdl.handle.net/2027/umn.31951001899615l" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899616j" - }, - { - "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", - "url": "http://hdl.handle.net/2027/umn.31951001899617h" - }, - { - "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", - "url": "http://hdl.handle.net/2027/umn.31951001899619d" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899513t" - }, - { - "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", - "url": "http://hdl.handle.net/2027/umn.31951001899514r" - }, - { - "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", - "url": "http://hdl.handle.net/2027/umn.31951001899516n" - }, - { - "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", - "url": "http://hdl.handle.net/2027/umn.31951001899521u" - }, - { - "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054677" - }, - { - "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054701" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054743" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054768" - }, - { - "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054776" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054800" - }, - { - "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054818" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054826" - }, - { - "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054834" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054842" - }, - { - "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", - "url": "http://hdl.handle.net/2027/njp.32101064054859" - }, - { - "label": "Full text available via HathiTrust - vol.40 (1846)", - "url": "http://hdl.handle.net/2027/njp.32101064488156" - } - ], - "type": [ - "bf:Item" - ], - "uri": "i14937001-e", - "formatLiteral": [ - "Text" - ] - } - } - ] - } + "body": { + "took": 47, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.011845, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14937001", + "_score": 15.011845, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "From 1807-June 1837 title reads: Morgenblatt für gebildete stände.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Kunst-blatt. Stuttgart, 1816-1849.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Includes the current supplements Literatur-blatt 1817-1849; Kunstblatt 1816-1849; Intelligenz-blatt 1817-1847.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. G. Cotta'sche buchhandlung." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 4 + ], + "dateEndString": [ + "1" + ], + "createdYear": [ + 1855 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Morgenblatt für gebildete leser." + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1855" + ], + "idLccn": [ + "cau08001961" + ], + "numElectronicResources": [ + 88 + ], + "dateStartYear": [ + 1855 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser)" + }, + { + "type": "nypl:Bnumber", + "value": "14937001" + }, + { + "type": "bf:Lccn", + "value": "cau08001961" + }, + { + "type": "nypl:Oclc", + "value": "1608345" + }, + { + "type": "bf:Identifier", + "value": "0494254" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)ret0001042" + } + ], + "idOclc": [ + "1608345" + ], + "dateEndYear": [ + 1 + ], + "updatedAt": 1671729582968, + "publicationStatement": [ + "Stuttgart, Tübingen [etc.], J. G. Cotta'sche buchhandlung." + ], + "identifier": [ + "urn:bnum:14937001", + "urn:lccn:cau08001961", + "urn:oclc:1608345", + "urn:undefined:0494254", + "urn:undefined:(WaOLN)ret0001042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1855" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Morgenblatt für gebildete leser." + ], + "uri": "b14937001", + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "Stuttgart, Tübingen [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ] }, - "allItems": { - "hits": { - "total": 4, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] - } - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" - ] + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi14937001-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust - jahrg.11:Jan.-June (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899526k" + }, + { + "label": "Full text available via HathiTrust - jahrg.11:July-Dec. (1817)", + "url": "http://hdl.handle.net/2027/umn.31951001899527i" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:Jan.-June (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899528g" + }, + { + "label": "Full text available via HathiTrust - jahrg.12:July-Dec. (1818)", + "url": "http://hdl.handle.net/2027/umn.31951001899529e" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:Jan.-June (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899530t" + }, + { + "label": "Full text available via HathiTrust - jahrg.13:July-Dec. (1819)", + "url": "http://hdl.handle.net/2027/umn.31951001899531r" + }, + { + "label": "Full text available via HathiTrust - jahrg.14:Jan.-June (1820)", + "url": "http://hdl.handle.net/2027/umn.31951001899532p" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:Jan.-June (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899534l" + }, + { + "label": "Full text available via HathiTrust - jahrg.15:July-Dec. (1821)", + "url": "http://hdl.handle.net/2027/umn.31951001899535j" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:Jan.-June (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899536h" + }, + { + "label": "Full text available via HathiTrust - jahrg.16:July-Dec. (1822)", + "url": "http://hdl.handle.net/2027/umn.31951001899537f" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:Jan.-June (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899538d" + }, + { + "label": "Full text available via HathiTrust - jahrg.17:July-Dec. (1823)", + "url": "http://hdl.handle.net/2027/umn.31951001899539b" + }, + { + "label": "Full text available via HathiTrust - jahrg.18:July-Dec. (1824)", + "url": "http://hdl.handle.net/2027/umn.31951001899541o" + }, + { + "label": "Full text available via HathiTrust - jahrg.19:Jan.-June (1825)", + "url": "http://hdl.handle.net/2027/umn.31951001899542m" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:Jan.-June (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899505s" + }, + { + "label": "Full text available via HathiTrust - jahrg.2:July-Dec. (1808)", + "url": "http://hdl.handle.net/2027/umn.31951001899506q" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:Jan.-June (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899544i" + }, + { + "label": "Full text available via HathiTrust - jahrg.20:July-Dec. (1826)", + "url": "http://hdl.handle.net/2027/umn.31951001899545g" + }, + { + "label": "Full text available via HathiTrust - jahrg.21:July-Dec. (1827)", + "url": "http://hdl.handle.net/2027/umn.31951001899547c" + }, + { + "label": "Full text available via HathiTrust - jahrg.22 (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899548a" + }, + { + "label": "Full text available via HathiTrust - jahrg.22:suppl.:art (1828)", + "url": "http://hdl.handle.net/2027/umn.31951001899620s" + }, + { + "label": "Full text available via HathiTrust - jahrg.23:July-Dec. (1829)", + "url": "http://hdl.handle.net/2027/umn.31951001899550n" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:Jan.-June (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899551l" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:July-Dec. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899552j" + }, + { + "label": "Full text available via HathiTrust - jahrg.24:suppl.:lit. (1830)", + "url": "http://hdl.handle.net/2027/umn.31951001899624k" + }, + { + "label": "Full text available via HathiTrust - jahrg.25:July-Dec. (1831)", + "url": "http://hdl.handle.net/2027/umn.31951001899554f" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:Jan.-June (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899555d" + }, + { + "label": "Full text available via HathiTrust - jahrg.26:July-Dec. (1832)", + "url": "http://hdl.handle.net/2027/umn.31951001899556b" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:Jan.-June (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995587" + }, + { + "label": "Full text available via HathiTrust - jahrg.28:July-Dec. (1834)", + "url": "http://hdl.handle.net/2027/umn.319510018995595" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:Jan.-June (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899560k" + }, + { + "label": "Full text available via HathiTrust - jahrg.29:July-Dec. (1835)", + "url": "http://hdl.handle.net/2027/umn.31951001899561i" + }, + { + "label": "Full text available via HathiTrust - jahrg.30:Oct.-Dec. (1836)", + "url": "http://hdl.handle.net/2027/umn.31951001899563e" + }, + { + "label": "Full text available via HathiTrust - jahrg.32:suppl.:lit. (1838)", + "url": "http://hdl.handle.net/2027/umn.31951001899641k" + }, + { + "label": "Full text available via HathiTrust - jahrg.33 (1839)", + "url": "http://hdl.handle.net/2027/umn.319510018995668" + }, + { + "label": "Full text available via HathiTrust - jahrg.33:suppl.:art (1839)", + "url": "http://hdl.handle.net/2027/umn.31951001899642i" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:art (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899645c" + }, + { + "label": "Full text available via HathiTrust - jahrg.35:suppl.:lit. (1841)", + "url": "http://hdl.handle.net/2027/umn.31951001899646a" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Jan.-Apr. (1842)", + "url": "http://hdl.handle.net/2027/umn.319510018995692" + }, + { + "label": "Full text available via HathiTrust - jahrg.36:Sept.-Dec. (1842)", + "url": "http://hdl.handle.net/2027/umn.31951001899571f" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Jan.-Apr. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899572d" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:May-Aug. (1843)", + "url": "http://hdl.handle.net/2027/umn.31951001899573b" + }, + { + "label": "Full text available via HathiTrust - jahrg.37:Sept.-Dec. (1843)", + "url": "http://hdl.handle.net/2027/umn.319510018995749" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:Jan.-Apr. (1844)", + "url": "http://hdl.handle.net/2027/umn.31951p01107664f" + }, + { + "label": "Full text available via HathiTrust - jahrg.38:May-Aug. (1844)", + "url": "http://hdl.handle.net/2027/umn.319510018995765" + }, + { + "label": "Full text available via HathiTrust - jahrg.39:Jan.-June (1845)", + "url": "http://hdl.handle.net/2027/umn.319510018995781" + }, + { + "label": "Full text available via HathiTrust - jahrg.4:Jan.-June (1810)", + "url": "http://hdl.handle.net/2027/umn.31951001899509k" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:Jan.-June (1847)", + "url": "http://hdl.handle.net/2027/umn.31951001899582a" + }, + { + "label": "Full text available via HathiTrust - jahrg.41:July-Dec. (1847)", + "url": "http://hdl.handle.net/2027/umn.319510018995838" + }, + { + "label": "Full text available via HathiTrust - jahrg.44:July-Dec. (1850)", + "url": "http://hdl.handle.net/2027/umn.31951001899589w" + }, + { + "label": "Full text available via HathiTrust - jahrg.45:Jan.-June (1851)", + "url": "http://hdl.handle.net/2027/umn.31951001899590b" + }, + { + "label": "Full text available via HathiTrust - jahrg.49:July-Dec. (1855)", + "url": "http://hdl.handle.net/2027/umn.31951001899599t" + }, + { + "label": "Full text available via HathiTrust - jahrg.5:July-Dec. (1811)", + "url": "http://hdl.handle.net/2027/umn.31951001899512v" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:Jan.-June (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899600y" + }, + { + "label": "Full text available via HathiTrust - jahrg.50:July-Dec. (1856)", + "url": "http://hdl.handle.net/2027/umn.31951001899601w" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:Jan.-June (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899602u" + }, + { + "label": "Full text available via HathiTrust - jahrg.51:July-Dec. (1857)", + "url": "http://hdl.handle.net/2027/umn.31951001899603s" + }, + { + "label": "Full text available via HathiTrust - jahrg.52:July-Dec. (1858)", + "url": "http://hdl.handle.net/2027/umn.31951001899605o" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:Jan.-June (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899606m" + }, + { + "label": "Full text available via HathiTrust - jahrg.53:July-Dec. (1859)", + "url": "http://hdl.handle.net/2027/umn.31951001899607k" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:Jan.-June (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899608i" + }, + { + "label": "Full text available via HathiTrust - jahrg.54:July-Dec. (1860)", + "url": "http://hdl.handle.net/2027/umn.31951001899609g" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:Jan.-June (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899610v" + }, + { + "label": "Full text available via HathiTrust - jahrg.55:July-Dec. (1861)", + "url": "http://hdl.handle.net/2027/umn.31951001899611t" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:Jan.-June (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899612r" + }, + { + "label": "Full text available via HathiTrust - jahrg.56:July-Dec. (1862)", + "url": "http://hdl.handle.net/2027/umn.31951001899613p" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:Jan.-June (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899614n" + }, + { + "label": "Full text available via HathiTrust - jahrg.57:July-Dec. (1863)", + "url": "http://hdl.handle.net/2027/umn.31951001899615l" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:Jan.-June (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899616j" + }, + { + "label": "Full text available via HathiTrust - jahrg.58:July-Dec. (1864)", + "url": "http://hdl.handle.net/2027/umn.31951001899617h" + }, + { + "label": "Full text available via HathiTrust - jahrg.59:July-Dec. (1865)", + "url": "http://hdl.handle.net/2027/umn.31951001899619d" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:Jan.-June (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899513t" + }, + { + "label": "Full text available via HathiTrust - jahrg.6:July-Dec. (1812)", + "url": "http://hdl.handle.net/2027/umn.31951001899514r" + }, + { + "label": "Full text available via HathiTrust - jahrg.7:July-Dec. (1813)", + "url": "http://hdl.handle.net/2027/umn.31951001899516n" + }, + { + "label": "Full text available via HathiTrust - jahrg.9:Jan.-June (1815)", + "url": "http://hdl.handle.net/2027/umn.31951001899521u" + }, + { + "label": "Full text available via HathiTrust - vol.13, pt.2 (1819)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054677" + }, + { + "label": "Full text available via HathiTrust - vol.15, pt.1 (1821)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054701" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.1 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054743" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.2 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054768" + }, + { + "label": "Full text available via HathiTrust - vol.28, pt.3 (1834)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054776" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.1 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054800" + }, + { + "label": "Full text available via HathiTrust - vol.30, pt.2 (1836)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054818" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.1 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054826" + }, + { + "label": "Full text available via HathiTrust - vol.31, pt.2 (1837)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054834" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.1 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054842" + }, + { + "label": "Full text available via HathiTrust - vol.33, pt.2 (1839)\"\"\"", + "url": "http://hdl.handle.net/2027/njp.32101064054859" + }, + { + "label": "Full text available via HathiTrust - vol.40 (1846)", + "url": "http://hdl.handle.net/2027/njp.32101064488156" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i14937001-e", + "formatLiteral": [ + "Text" + ] + } } - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + ] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] - } - } - ] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "formatLiteral": [ - "Text" + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097964930" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28543800", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 4, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309666", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433097964930" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800", - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "formatLiteral": [ - "Text" - ] + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309648", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } }, - "sort": [ - null - ] - } - ] + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i28309668", + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + } + } + ] + } } } } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:rc2ma||Offsite", + "doc_count": 3 + }, + { + "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", + "doc_count": 1 + } + ] + } + }, + "item_format": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 5 + } + ] + } + }, + "item_status": { + "doc_count": 5, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 4 + } + ] + } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 3 - }, - { - "key": "loc:mal92||Schwarzman Building M2 - General Research Room 315", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:54 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "23118", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14937001\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"terms\":{\"items.formatLiteral\":[\"Text\"]}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1111" + }, + "timeout": 30000 + }, + "options": {}, + "id": 15 }, - "item_format": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 5 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 5, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 4 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json b/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json index 9c2e7790..5e5a9a41 100644 --- a/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json +++ b/test/fixtures/query-b45864e0a007ab2dea34d6b0899f0959.json @@ -1,348 +1,396 @@ { - "took": 4, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.040952, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b14332438", - "_score": 15.040952, - "_source": { - "extent": [ - "4 v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "America", - "America -- Discovery and exploration", - "America -- History", - "Virginia", - "Virginia -- History", - "Virginia -- History -- Colonial period, ca. 1600-1775", - "New England", - "New England -- History", - "New England -- History -- Colonial period, ca. 1600-1775" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "A. Strahan" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The history of America ..." - ], - "shelfMark": [ - "*KF 1800 (Robertson, W. History of America)" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Robertson, William, 1721-1793." - ], - "createdString": [ - "1800" - ], - "numElectronicResources": [ - 5 - ], - "contributorLiteral": [ - "Robertson, William, 1753-1835." - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KF 1800 (Robertson, W. History of America)" - }, - { - "type": "nypl:Bnumber", - "value": "14332438" - }, - { - "type": "nypl:Oclc", - "value": "7127252" + "body": { + "took": 5, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.530987, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b14332438", + "_score": 15.530987, + "_source": { + "extent": [ + "4 v." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "America", + "America -- Discovery and exploration", + "America -- History", + "Virginia", + "Virginia -- History", + "Virginia -- History -- Colonial period, ca. 1600-1775", + "New England", + "New England -- History", + "New England -- History -- Colonial period, ca. 1600-1775" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "A. Strahan" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The history of America ..." + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Robertson, William, 1721-1793." + ], + "createdString": [ + "1800" + ], + "numElectronicResources": [ + 5 + ], + "contributorLiteral": [ + "Robertson, William, 1753-1835." + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*KF 1800 (Robertson, W. History of America)" + }, + { + "type": "nypl:Bnumber", + "value": "14332438" + }, + { + "type": "nypl:Oclc", + "value": "7127252" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)R220000327" + } + ], + "idOclc": [ + "7127252" + ], + "updatedAt": 1671731696724, + "publicationStatement": [ + "London, A. Strahan, 1800." + ], + "identifier": [ + "urn:bnum:14332438", + "urn:oclc:7127252", + "urn:undefined:(WaOLN)R220000327" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "America -- Discovery and exploration.", + "America -- History.", + "Virginia -- History -- Colonial period, ca. 1600-1775.", + "New England -- History -- Colonial period, ca. 1600-1775." + ], + "titleDisplay": [ + "The history of America ..." + ], + "uri": "b14332438", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8vo." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i14332438-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+history+of+America+...&Site=SASRB&CallNumber=*KF+1800+(Robertson,+W.+History+of+America)&Author=Robertson,+William,&ItemPlace=London,&ItemPublisher=A.+Strahan,&Date=1800.&ItemEdition=The+ninth+edition,+in+which+is+included+the+posthumous+volume,+containing+the+history+of+Virginia+to+the+year+1688,+and+of+New+England+to+the+year+1652.+[Edited+by+his+son.]&ItemInfo3=https://catalog.nypl.org/record=b14332438&ReferenceNumber=b14332438x&ItemISxN=i169831863&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", + "label": "Request access to this item in the Schwarzman Rare Books Collection" + }, + { + "url": "http://hdl.handle.net/2027/mdp.39015016750922", + "label": "Full text available via HathiTrust - v.1" + }, + { + "url": "http://hdl.handle.net/2027/mdp.39015016750930", + "label": "Full text available via HathiTrust - v.2" + }, + { + "url": "http://hdl.handle.net/2027/mdp.39015016750948", + "label": "Full text available via HathiTrust - v.3" + }, + { + "url": "http://hdl.handle.net/2027/mdp.39015016750955", + "label": "Full text available via HathiTrust - v.4" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi14332438-e" + } + } + ] + } }, - { - "type": "bf:Identifier", - "value": "(WaOLN)R220000327" - } - ], - "idOclc": [ - "7127252" - ], - "updatedAt": 1671731696724, - "publicationStatement": [ - "London, A. Strahan, 1800." - ], - "identifier": [ - "urn:bnum:14332438", - "urn:oclc:7127252", - "urn:undefined:(WaOLN)R220000327" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i16983186", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "identifierV2": [ + { + "value": "*KF 1800 (Robertson, W. History of America)", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+history+of+America+...&Site=SASRB&CallNumber=*KF+1800+(Robertson,+W.+History+of+America)&Author=Robertson,+William,&ItemPlace=London,&ItemPublisher=A.+Strahan,&Date=1800.&ItemEdition=The+ninth+edition,+in+which+is+included+the+posthumous+volume,+containing+the+history+of+Virginia+to+the+year+1688,+and+of+New+England+to+the+year+1652.+[Edited+by+his+son.]&ItemInfo3=https://catalog.nypl.org/record=b14332438&ReferenceNumber=b14332438x&ItemISxN=i169831863&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)" + }, + "sort": [ + null + ] + } + ] + } } - ], - "carrierType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "carriertypes:nc", - "label": "volume" + "key": "loc:marr2||Schwarzman Building - Rare Book Collection Room 328", + "doc_count": 1 } - ], - "dateString": [ - "1800" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 2 } - ], - "subjectLiteral": [ - "America -- Discovery and exploration.", - "America -- History.", - "Virginia -- History -- Colonial period, ca. 1600-1775.", - "New England -- History -- Colonial period, ca. 1600-1775." - ], - "titleDisplay": [ - "The history of America ..." - ], - "uri": "b14332438", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 1 } - ], - "dimensions": [ - "8vo." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i14332438-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+history+of+America+...&Site=SASRB&CallNumber=*KF+1800+(Robertson,+W.+History+of+America)&Author=Robertson,+William,&ItemPlace=London,&ItemPublisher=A.+Strahan,&Date=1800.&ItemEdition=The+ninth+edition,+in+which+is+included+the+posthumous+volume,+containing+the+history+of+Virginia+to+the+year+1688,+and+of+New+England+to+the+year+1652.+[Edited+by+his+son.]&ItemInfo3=https://catalog.nypl.org/record=b14332438&ReferenceNumber=b14332438x&ItemISxN=i169831863&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", - "label": "Request access to this item in the Schwarzman Rare Books Collection" - }, - { - "url": "http://hdl.handle.net/2027/mdp.39015016750922", - "label": "Full text available via HathiTrust - v.1" - }, - { - "url": "http://hdl.handle.net/2027/mdp.39015016750930", - "label": "Full text available via HathiTrust - v.2" - }, - { - "url": "http://hdl.handle.net/2027/mdp.39015016750948", - "label": "Full text available via HathiTrust - v.3" - }, - { - "url": "http://hdl.handle.net/2027/mdp.39015016750955", - "label": "Full text available via HathiTrust - v.4" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi14332438-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i16983186", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" - ], - "shelfMark": [ - "*KF 1800 (Robertson, W. History of America)" - ], - "identifierV2": [ - { - "value": "*KF 1800 (Robertson, W. History of America)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*KF 1800 (Robertson, W. History of America)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+history+of+America+...&Site=SASRB&CallNumber=*KF+1800+(Robertson,+W.+History+of+America)&Author=Robertson,+William,&ItemPlace=London,&ItemPublisher=A.+Strahan,&Date=1800.&ItemEdition=The+ninth+edition,+in+which+is+included+the+posthumous+volume,+containing+the+history+of+Virginia+to+the+year+1688,+and+of+New+England+to+the+year+1652.+[Edited+by+his+son.]&ItemInfo3=https://catalog.nypl.org/record=b14332438&ReferenceNumber=b14332438x&ItemISxN=i169831863&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:marr2||Schwarzman Building - Rare Book Collection Room 328", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:47 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "5732", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14332438\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 1 }, - "item_format": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 2 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-b4e10eb0d4b0cd46fdf7886dcc46e403.json b/test/fixtures/query-b4e10eb0d4b0cd46fdf7886dcc46e403.json deleted file mode 100644 index c7fd5a5d..00000000 --- a/test/fixtures/query-b4e10eb0d4b0cd46fdf7886dcc46e403.json +++ /dev/null @@ -1,21097 +0,0 @@ -{ - "took": 269, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 757757, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001080", - "_score": null, - "_source": { - "extent": [ - "577 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"The first printed book in Malayalam\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Facsimile reproduction of old Malayalam and transcription, paraphrase, and notes in modern Malayalam, on opposite pages.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Original t.p. reads: Nasṟāṇikaḷ okkakkuṃ aṟiyeṇṭunna saṅkṣepavedārtthaṃ=Compendiosa legis explanatio omnibus Christianis scitu necessaria. Malabarico idiomate. Romāyilninn Miśihā pirṟannīṭṭ 1772 śṟȧṣṭa melpaṭṭakkāraruṭe anuvādattāl=Romae An. A nativit. Christi 1772, praisidum facultate\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Catholic Church. Syro-Malabar rite", - "Christianity", - "Christianity -- Philosophy" - ], - "publisherLiteral": [ - "Ḍi. Ṣi. Buks ; Kārmel Pabḷiṣiṅg Senṟar," - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "dateEndString": [ - "1772" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" - ], - "shelfMark": [ - "*OLD 84-299" - ], - "creatorLiteral": [ - "Piyāniyas, Kḷemanṟ, 1731-1782." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82904075" - ], - "contributorLiteral": [ - "Choondal, Chummar, 1940-", - "Mathew, Ulakamthara." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-299" - }, - { - "type": "nypl:Bnumber", - "value": "10001080" - }, - { - "type": "bf:Lccn", - "value": "82904075" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201091" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201079" - } - ], - "dateEndYear": [ - 1772 - ], - "updatedAt": 1636128328325, - "publicationStatement": [ - "Kōṭṭayaṃ : Ḍi. Ṣi. Buks ; Tiruvanantapuraṃ : Kārmel Pabḷiṣiṅg Senṟar, 1980." - ], - "identifier": [ - "urn:bnum:10001080", - "urn:lccn:82904075", - "urn:undefined:NNSZ00201091", - "urn:undefined:(WaOLN)nyp0201079" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Catholic Church. Syro-Malabar rite.", - "Christianity -- Philosophy." - ], - "titleDisplay": [ - "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp / Kḷemanṟ Piyāniyas = Samkshepa vedartham / by Clement Pianius ; introduction by Chummar Choondel ; commentary by Mathew Ulakamthara." - ], - "uri": "b10001080", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōṭṭayaṃ : Tiruvanantapuraṃ :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10001080" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011099029" - ], - "physicalLocation": [ - "*OLD 84-299" - ], - "shelfMark_sort": "a*OLD 84-000299", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000682", - "shelfMark": [ - "*OLD 84-299" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 84-299" - }, - { - "type": "bf:Barcode", - "value": "33433011099029" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433011099029" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003158", - "_score": null, - "_source": { - "extent": [ - "608 p. in various pagings ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Reprint ed.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Chinese.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Medicine, Chinese" - ], - "publisherLiteral": [ - "Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si," - ], - "language": [ - { - "id": "lang:chi", - "label": "Chinese" - } - ], - "dateEndString": [ - "1670" - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Zheng yin mo zhi : [4 juan]" - ], - "shelfMark": [ - "*OVL 84-1330" - ], - "creatorLiteral": [ - "Qin, Changyu, active 17th century." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "77839836" - ], - "seriesStatement": [ - "zhongguo yi yao zong shu." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OVL 84-1330" - }, - { - "type": "nypl:Bnumber", - "value": "10003158" - }, - { - "type": "bf:Lccn", - "value": "77839836" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303509" - } - ], - "dateEndYear": [ - 1670 - ], - "updatedAt": 1641391919318, - "publicationStatement": [ - "Taipei xian yonghe zhen : Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si, Min'Guo 61[1972]" - ], - "identifier": [ - "urn:bnum:10003158", - "urn:lccn:77839836", - "urn:undefined:NNSZ00303509" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Medicine, Chinese." - ], - "titleDisplay": [ - "Zheng yin mo zhi : [4 juan] / Qin Jingming [Changyu] zhu ; Qin Zhizheng ji ; [Cao Binzhang quan dian]." - ], - "uri": "b10003158", - "lccClassification": [ - "R128.7 .C545" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Taipei xian yonghe zhen :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10003158" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001746852" - ], - "physicalLocation": [ - "*OVL 84-1330" - ], - "shelfMark_sort": "a*OVL 84-001330", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002193", - "shelfMark": [ - "*OVL 84-1330" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OVL 84-1330" - }, - { - "type": "bf:Barcode", - "value": "33433001746852" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001746852" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003190", - "_score": null, - "_source": { - "extent": [ - "606 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Basavapurāṇavu.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Kannaḍa sāhitya caritre.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Basava, active 1160", - "Basava, active 1160 -- Poetry", - "Lingayats", - "Lingayats -- Poetry" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Basavapurāṇavu" - ], - "shelfMark": [ - "*OLA+ 82-1360" - ], - "creatorLiteral": [ - "Palakuriki Somanatha, active 13th century." - ], - "createdString": [ - "1800" - ], - "contributorLiteral": [ - "Bhīmakavi, active 1369." - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 82-1360" - }, - { - "type": "nypl:Bnumber", - "value": "10003190" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303541" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203183" - } - ], - "uniformTitle": [ - "Basavapurāṇamu. Kannada" - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1636076831370, - "publicationStatement": [ - "[S.1. : s.n., 18--?]" - ], - "identifier": [ - "urn:bnum:10003190", - "urn:undefined:NNSZ00303541", - "urn:undefined:(WaOLN)nyp0203183" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Basava, active 1160 -- Poetry.", - "Lingayats -- Poetry." - ], - "titleDisplay": [ - "Basavapurāṇavu / [Bhīmakavi viracita ; Sōmanātha kaviya Telugu Basavapurāṇamuvina Kannaḍa anuvāda]." - ], - "uri": "b10003190", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.1. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Basavapurāṇamu." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10003190" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433069579674" - ], - "shelfMark_sort": "a*OLA+ 82-001360", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784381", - "shelfMark": [ - "*OLA+ 82-1360" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433069579674" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433069579674" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003301", - "_score": null, - "_source": { - "extent": [ - "v. : ill., map, facsims. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kurds", - "Kurds -- Iran", - "Kurds -- Iran -- History" - ], - "publisherLiteral": [ - "Chāpkhānah-ʼi Kūshish," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" - ], - "shelfMark": [ - "*OMR 84-1145" - ], - "creatorLiteral": [ - "Tavaḥḥudī Awghāzī, Kalīm Allāh." - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145" - }, - { - "type": "nypl:Bnumber", - "value": "10003301" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303655" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000007" - } - ], - "dateEndYear": [ - 999 - ], - "updatedAt": 1636103985760, - "publicationStatement": [ - "Mashhad : Chāpkhānah-ʼi Kūshish, 1359- [1981- ]" - ], - "identifier": [ - "urn:bnum:10003301", - "urn:undefined:NNSZ00303655", - "urn:undefined:(WaOLN)nyp0000007" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kurds -- Iran -- History." - ], - "titleDisplay": [ - "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān / taʼlīf-i Kalīm Allāh Tavaḥḥudī (Awghāzi)" - ], - "uri": "b10003301", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Mashhad :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003301" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013135854" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002283", - "shelfMark": [ - "*OMR 84-1145 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013135854" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013135854" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013135847" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002282", - "shelfMark": [ - "*OMR 84-1145 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433013135847" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433013135847" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013136530" - ], - "physicalLocation": [ - "*OMR 84-1145" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002281", - "shelfMark": [ - "*OMR 84-1145 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMR 84-1145 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013136530" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013136530" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003857", - "_score": null, - "_source": { - "extent": [ - "319 p. : ill., plates, maps ;" - ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "‏بيروت : دار مكتبة الحياة, [196-؟]" - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "‏بيروت :" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Yemen (Republic)" - ], - "publisherLiteral": [ - "Dār Maktabat al-Ḥayāh," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 196 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah /" - ], - "parallelTitle": [ - "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة /" - ], - "shelfMark": [ - "*OFI 82-4419" - ], - "creatorLiteral": [ - "Tarsīsī, ʻAdnān." - ], - "createdString": [ - "196" - ], - "parallelPublisher": [ - "‏دار مكتبة الحياة," - ], - "idLccn": [ - "ne 64003290" - ], - "dateStartYear": [ - 196 - ], - "parallelCreatorLiteral": [ - "‏ترسيسي, عدنان." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFI 82-4419" - }, - { - "type": "nypl:Bnumber", - "value": "10003857" - }, - { - "type": "bf:Lccn", - "value": "ne 64003290" - }, - { - "type": "nypl:Oclc", - "value": "11272192" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11272192" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)221366702" - } - ], - "idOclc": [ - "11272192" - ], - "updatedAt": 1649121307527, - "publicationStatement": [ - "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" - ], - "identifier": [ - "urn:bnum:10003857", - "urn:lccn:ne 64003290", - "urn:oclc:11272192", - "urn:undefined:(OCoLC)11272192", - "urn:undefined:(OCoLC)221366702" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "196" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Yemen (Republic)" - ], - "titleDisplay": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah / [taʼlīf] ʻAdnān Tarsīsī." - ], - "uri": "b10003857", - "lccClassification": [ - "DS247.Y4 T3" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "parallelTitleDisplay": [ - "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة / [تاليف] عدنان ترسيسي." - ], - "placeOfPublication": [ - "Bayrūt :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Includes musical score of national anthem of Yemen Arab Republic." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003857" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433101143836" - ], - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i29202258", - "shelfMark": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" - }, - { - "type": "bf:Barcode", - "value": "33433101143836" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433101143836" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433002023293" - ], - "physicalLocation": [ - "*OFI 82-4419" - ], - "shelfMark_sort": "a*OFI 82-004419", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002714", - "shelfMark": [ - "*OFI 82-4419" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFI 82-4419" - }, - { - "type": "bf:Barcode", - "value": "33433002023293" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433002023293" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004080", - "_score": null, - "_source": { - "extent": [ - "2v." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Esosiẏeṭeḍa Pābaliśārsa" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "dateEndString": [ - "62" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Junāpura Sṭīla." - ], - "shelfMark": [ - "*OKV 82-3891" - ], - "creatorLiteral": [ - "Mānnā, Guṇamaẏa, 1925-2010." - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "sa 63003864" - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891" - }, - { - "type": "nypl:Bnumber", - "value": "10004080" - }, - { - "type": "bf:Lccn", - "value": "sa 63003864" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304442" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204072" - } - ], - "dateEndYear": [ - 62 - ], - "updatedAt": 1636108800927, - "publicationStatement": [ - "[Kalakātā] Esosiẏeṭeḍa Pābaliśārsa [1960-1962]" - ], - "identifier": [ - "urn:bnum:10004080", - "urn:lccn:sa 63003864", - "urn:undefined:NNSZ00304442", - "urn:undefined:(WaOLN)nyp0204072" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Junāpura Sṭīla. [Lekhaka] Guṇamaẏa Mānnā." - ], - "uri": "b10004080", - "lccClassification": [ - "PK1718.M253 53" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Kalakātā]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10004080" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011168402" - ], - "physicalLocation": [ - "*OKV 82-3891" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002917", - "shelfMark": [ - "*OKV 82-3891 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433011168402" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433011168402" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011168394" - ], - "physicalLocation": [ - "*OKV 82-3891" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002916", - "shelfMark": [ - "*OKV 82-3891 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-3891 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433011168394" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433011168394" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004504", - "_score": null, - "_source": { - "extent": [ - "34 p.;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Pronunciation" - ], - "publisherLiteral": [ - "Naṭarācaṉ," - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 197 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" - ], - "shelfMark": [ - "*OLB 83-2757" - ], - "creatorLiteral": [ - "Natarajan, Subbiah, 1911-" - ], - "createdString": [ - "197" - ], - "idLccn": [ - "75906338" - ], - "dateStartYear": [ - 197 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2757" - }, - { - "type": "nypl:Bnumber", - "value": "10004504" - }, - { - "type": "bf:Lccn", - "value": "75906338" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304869" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204496" - } - ], - "updatedAt": 1636132308475, - "publicationStatement": [ - "[Tūttukkuṭi]: Naṭarācaṉ, 1974." - ], - "identifier": [ - "urn:bnum:10004504", - "urn:lccn:75906338", - "urn:undefined:NNSZ00304869", - "urn:undefined:(WaOLN)nyp0204496" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "197" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Pronunciation." - ], - "titleDisplay": [ - "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum/ Cu. Naṭarājaṉ." - ], - "uri": "b10004504", - "lccClassification": [ - "PL4754 .N33 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tūttukkuṭi]:" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10004504" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433061296681" - ], - "physicalLocation": [ - "*OLB 83-2757" - ], - "shelfMark_sort": "a*OLB 83-002757", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784546", - "shelfMark": [ - "*OLB 83-2757" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 83-2757" - }, - { - "type": "bf:Barcode", - "value": "33433061296681" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433061296681" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004672", - "_score": null, - "_source": { - "extent": [ - "106 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "P. Vaillant," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1775 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "All in the wrong [microform] : a comedy, as it is acted at the Theatre-Royal in Drury-Lane" - ], - "shelfMark": [ - "*ZC-177" - ], - "creatorLiteral": [ - "Murphy, Arthur, 1727-1805." - ], - "createdString": [ - "1775" - ], - "dateStartYear": [ - 1775 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZC-177" - }, - { - "type": "nypl:Bnumber", - "value": "10004672" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405783" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204664" - } - ], - "updatedAt": 1636073146019, - "publicationStatement": [ - "London : P. Vaillant, 1775." - ], - "identifier": [ - "urn:bnum:10004672", - "urn:undefined:NNSZ00405783", - "urn:undefined:(WaOLN)nyp0204664" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1775" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "All in the wrong [microform] : a comedy, as it is acted at the Theatre-Royal in Drury-Lane / by Mr. Murphy." - ], - "uri": "b10004672", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "London :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "12⁰." - ] - }, - "sort": [ - "b10004672" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004849", - "_score": null, - "_source": { - "extent": [ - "[8], 48 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Samaritans" - ], - "publisherLiteral": [ - "Sumtu Io. Bielckii," - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "createdYear": [ - 1688 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Christophori Cellarii Collectanea historiae Samaritanae : quibus praeter res geographicas, tam politia huius gentis, quam religio et res litteraria explicantur." - ], - "shelfMark": [ - "**P 07-283" - ], - "creatorLiteral": [ - "Cellarius, Christoph, 1638-1707." - ], - "createdString": [ - "1688" - ], - "dateStartYear": [ - 1688 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "**P 07-283" - }, - { - "type": "nypl:Bnumber", - "value": "10004849" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405962" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204839" - } - ], - "updatedAt": 1636081486226, - "publicationStatement": [ - "Cizae : Sumtu Io. Bielckii, 1688." - ], - "identifier": [ - "urn:bnum:10004849", - "urn:undefined:NNSZ00405962", - "urn:undefined:(WaOLN)nyp0204839" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1688" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Samaritans." - ], - "titleDisplay": [ - "Christophori Cellarii Collectanea historiae Samaritanae : quibus praeter res geographicas, tam politia huius gentis, quam religio et res litteraria explicantur." - ], - "uri": "b10004849", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Cizae :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Collectanea historiae Samaritanae." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10004849" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746564", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:maf88", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf88||Schwarzman Building - Dorot Jewish Division Room 111" - ], - "shelfMark": [ - "**P 07-283" - ], - "identifierV2": [ - { - "value": "**P 07-283", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433075470579" - } - ], - "physicalLocation": [ - "**P 07-283" - ], - "identifier": [ - "urn:barcode:33433075470579" - ], - "idBarcode": [ - "33433075470579" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:a", - "label": "By appointment only" - } - ], - "accessMessage_packed": [ - "accessMessage:a||By appointment only" - ], - "shelfMark_sort": "a**P 07-000283" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005935", - "_score": null, - "_source": { - "extent": [ - "[12] leaves : col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "J. Vlieger" - ], - "language": [ - { - "id": "lang:dut", - "label": "Dutch" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "De 10 kleine nikkertjes." - ], - "shelfMark": [ - "Sc Rare F 83-57" - ], - "createdString": [ - "1800" - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare F 83-57" - }, - { - "type": "nypl:Bnumber", - "value": "10005935" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507149" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205924" - } - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1654777212731, - "publicationStatement": [ - "Amsterdam : J. Vlieger, [18--?]" - ], - "identifier": [ - "urn:bnum:10005935", - "urn:undefined:NNSZ00507149", - "urn:undefined:(WaOLN)nyp0205924" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "De 10 kleine nikkertjes." - ], - "uri": "b10005935", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Tien Kleine nikkertjes." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10005935" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10005935-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+10+kleine+nikkertjes.&Site=SCHRB&CallNumber=Sc+Rare+F+83-57&ItemPlace=Amsterdam+:&ItemPublisher=J.+Vlieger,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10005935&ReferenceNumber=b100059351&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926669&ItemISxN=i119005189&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10005935-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900518", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare F 83-57" - ], - "identifierV2": [ - { - "value": "Sc Rare F 83-57", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036926669" - } - ], - "physicalLocation": [ - "Sc Rare F 83-57" - ], - "identifier": [ - "urn:barcode:33433036926669" - ], - "idBarcode": [ - "33433036926669" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+10+kleine+nikkertjes.&Site=SCHRB&CallNumber=Sc+Rare+F+83-57&ItemPlace=Amsterdam+:&ItemPublisher=J.+Vlieger,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10005935&ReferenceNumber=b100059351&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926669&ItemISxN=i119005189&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare F 83-000057" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005945", - "_score": null, - "_source": { - "extent": [ - "[4], iv, 5-62 p. ;" - ], - "note": [ - { - "noteType": "Indexed In", - "label": "Sabin", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "of Sidney Lapidus; ", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Copy in Sc Rare E 16-46 (Lapidus Collection) disbound.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Slave-trade", - "Slave-trade -- West Indies, British.", - "Slave-trade -- West Indies, British. -- Early works to 1800", - "Slavery", - "Slavery -- West Indies, British.", - "Slavery -- West Indies, British. -- Early works to 1800", - "Slavery -- Law and legislation", - "Slavery -- Law and legislation -- Jamaica", - "Slavery -- Law and legislation -- Jamaica -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Printed and sold by James Philips" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 4 - ], - "createdYear": [ - 1789 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "Sc Rare F 83-78" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Fuller, Stephen, 1716-1808." - ], - "createdString": [ - "1789" - ], - "numElectronicResources": [ - 2 - ], - "contributorLiteral": [ - "Jamaica. Assembly." - ], - "dateStartYear": [ - 1789 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare F 83-78" - }, - { - "type": "nypl:Bnumber", - "value": "10005945" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000087-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507159" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205933" - } - ], - "idOclc": [ - "NYPG005000087-B" - ], - "updatedAt": 1675264202226, - "publicationStatement": [ - "London : Printed and sold by James Philips, 1789." - ], - "identifier": [ - "urn:bnum:10005945", - "urn:oclc:NYPG005000087-B", - "urn:undefined:NNSZ00507159", - "urn:undefined:(WaOLN)nyp0205933" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1789" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Slave-trade -- West Indies, British. -- Early works to 1800.", - "Slavery -- West Indies, British. -- Early works to 1800.", - "Slavery -- Law and legislation -- Jamaica -- Early works to 1800." - ], - "titleDisplay": [ - "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. / by a Jamaica planter." - ], - "uri": "b10005945", - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10005945" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": 1, - "_source": { - "uri": "i10005945-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", - "label": "Request access to this item in the Schwarzman Rare Books Collection" - }, - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=Sc+Rare+F+83-78&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10005945-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10003913", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare F 83-78" - ], - "identifierV2": [ - { - "value": "Sc Rare F 83-78", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076159494" - } - ], - "physicalLocation": [ - "Sc Rare F 83-78" - ], - "identifier": [ - "urn:barcode:33433076159494" - ], - "idBarcode": [ - "33433076159494" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare F 83-000078" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i34051315", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare E 16-46 (Lapidus Collection)" - ], - "identifierV2": [ - { - "value": "Sc Rare E 16-46 (Lapidus Collection)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433117263263" - } - ], - "physicalLocation": [ - "Sc Rare E 16-46 (Lapidus Collection)" - ], - "identifier": [ - "urn:barcode:33433117263263" - ], - "idBarcode": [ - "33433117263263" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare E 16-46 (Lapidus Collection)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10003915", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" - ], - "shelfMark": [ - "8-*KF 1789 (Notes on the two reports)" - ], - "identifierV2": [ - { - "value": "8-*KF 1789 (Notes on the two reports)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "8-*KF 1789 (Notes on the two reports)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a8-*KF 1789 (Notes on the two reports)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10003914", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" - ], - "shelfMark": [ - "*KF 1789 (Notes on the two reports)" - ], - "identifierV2": [ - { - "value": "*KF 1789 (Notes on the two reports)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*KF 1789 (Notes on the two reports)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*KF 1789 (Notes on the two reports)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005951", - "_score": null, - "_source": { - "extent": [ - "150, [10] p. : folded col. map ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Bound in leather.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Almanacs, Jamaican", - "Jamaica", - "Jamaica -- Registers" - ], - "publisherLiteral": [ - "Printed by David Dickson for Thomas Stevenson" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1794 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The New Jamaica almanack, and register ... for the year of Our Lord 1795 ... ." - ], - "shelfMark": [ - "Sc Rare B 83-2" - ], - "createdString": [ - "1794" - ], - "dateStartYear": [ - 1794 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare B 83-2" - }, - { - "type": "nypl:Bnumber", - "value": "10005951" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507166" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205940" - } - ], - "updatedAt": 1654777211068, - "publicationStatement": [ - "Kingston : Printed by David Dickson for Thomas Stevenson, [1794?]" - ], - "identifier": [ - "urn:bnum:10005951", - "urn:undefined:NNSZ00507166", - "urn:undefined:(WaOLN)nyp0205940" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1794" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Almanacs, Jamaican.", - "Jamaica -- Registers." - ], - "titleDisplay": [ - "The New Jamaica almanack, and register ... for the year of Our Lord 1795 ... ." - ], - "uri": "b10005951", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kingston" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "15 cm." - ] - }, - "sort": [ - "b10005951" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10005951-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+New+Jamaica+almanack,+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Site=SCHRB&CallNumber=Sc+Rare+B+83-2&ItemPlace=Kingston+:&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson,&Date=[1794?]&ItemInfo3=https://catalog.nypl.org/record=b10005951&ReferenceNumber=b10005951x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926776&ItemISxN=i119005281&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10005951-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900528", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare B 83-2" - ], - "identifierV2": [ - { - "value": "Sc Rare B 83-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036926776" - } - ], - "physicalLocation": [ - "Sc Rare B 83-2" - ], - "identifier": [ - "urn:barcode:33433036926776" - ], - "idBarcode": [ - "33433036926776" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+New+Jamaica+almanack,+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Site=SCHRB&CallNumber=Sc+Rare+B+83-2&ItemPlace=Kingston+:&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson,&Date=[1794?]&ItemInfo3=https://catalog.nypl.org/record=b10005951&ReferenceNumber=b10005951x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926776&ItemISxN=i119005281&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare B 83-000002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005958", - "_score": null, - "_source": { - "extent": [ - "66 p. ;" - ], - "note": [ - { - "noteType": "Indexed In", - "label": "Sabin", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Garran de Coulon, Jean Philippe, 1748-1816", - "Haiti", - "Haiti -- History", - "Haiti -- History -- Revolution, 1791-1804" - ], - "publisherLiteral": [ - "Se vend chez Maret, Desenne, et chez tous les marchands de nouveautés" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1797 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*KF 1797 (Creuzé-Dufresne, M. P. Lettre de Michel Pascal Creuzé)" - ], - "creatorLiteral": [ - "Creuzé-Dufresne, Michel Pascal." - ], - "createdString": [ - "1797" - ], - "dateStartYear": [ - 1797 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*KF 1797 (Creuzé-Dufresne, M. P. Lettre de Michel Pascal Creuzé)" - }, - { - "type": "nypl:Bnumber", - "value": "10005958" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507175" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205949" - } - ], - "updatedAt": 1654780361497, - "publicationStatement": [ - "Paris : Se vend chez Maret, Desenne, et chez tous les marchands de nouveautés, an 5 [1797]" - ], - "identifier": [ - "urn:bnum:10005958", - "urn:undefined:NNSZ00507175", - "urn:undefined:(WaOLN)nyp0205949" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1797" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Garran de Coulon, Jean Philippe, 1748-1816.", - "Haiti -- History -- Revolution, 1791-1804." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10005958", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10005958" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10005958-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SASRB&CallNumber=*KF+1797+(Creuzé,+M.+P.+Lettre+de+Michel+Pascal+Creuzé)&Author=Creuzé-Dufresne,+Michel+Pascal.&ItemPlace=Paris+:&ItemPublisher=Se+vend+chez+Maret,+Desenne,+et+chez+tous+les+marchands+de+nouveautés,&Date=an+5+[1797]&ItemInfo3=https://catalog.nypl.org/record=b10005958&ReferenceNumber=b100059582&ItemISxN=i100039182&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", - "label": "Request access to this item in the Schwarzman Rare Books Collection" - } - ], - "shelfMark_sort": "bi10005958-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10003918", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" - ], - "shelfMark": [ - "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" - ], - "identifierV2": [ - { - "value": "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SASRB&CallNumber=*KF+1797+(Creuzé,+M.+P.+Lettre+de+Michel+Pascal+Creuzé)&Author=Creuzé-Dufresne,+Michel+Pascal.&ItemPlace=Paris+:&ItemPublisher=Se+vend+chez+Maret,+Desenne,+et+chez+tous+les+marchands+de+nouveautés,&Date=an+5+[1797]&ItemInfo3=https://catalog.nypl.org/record=b10005958&ReferenceNumber=b100059582&ItemISxN=i100039182&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "shelfMark_sort": "a*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006047", - "_score": null, - "_source": { - "extent": [ - "[12] p. of plates : all col. ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ethiopia", - "Ethiopia -- Pictorial works", - "Ethiopia -- Social life and customs" - ], - "publisherLiteral": [ - "A. Vallardi" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Usi e costumi dell' Abissinia e dei dintorni di Massaua" - ], - "shelfMark": [ - "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" - ], - "createdString": [ - "1800" - ], - "contributorLiteral": [ - "Pasini, Lazzaro." - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" - }, - { - "type": "nypl:Bnumber", - "value": "10006047" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507270" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206040" - } - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1654777378164, - "publicationStatement": [ - "Milano : A. Vallardi, [18--]" - ], - "identifier": [ - "urn:bnum:10006047", - "urn:undefined:NNSZ00507270", - "urn:undefined:(WaOLN)nyp0206040" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ethiopia -- Pictorial works.", - "Ethiopia -- Social life and customs." - ], - "titleDisplay": [ - "Usi e costumi dell' Abissinia e dei dintorni di Massaua / da originali acquarelli di un indigeno, riprodotti da Laz. Pasini." - ], - "uri": "b10006047", - "numItems": [ - 3 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 x 21 cm." - ] - }, - "sort": [ - "b10006047" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i10006047-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Usi+e+costumi+dell'+Abissinia+e+dei+dintorni+di+Massaua+/&Site=SCHRB&CallNumber=Sc+Rare+C+84-8&ItemPlace=Milano+:&ItemPublisher=A.+Vallardi,&Date=[18--]&ItemInfo3=https://catalog.nypl.org/record=b10006047&ReferenceNumber=b10006047x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433076137185&ItemISxN=i10003925x&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10006047-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10003925", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 84-8" - ], - "identifierV2": [ - { - "value": "Sc Rare C 84-8", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076137185" - } - ], - "physicalLocation": [ - "Sc Rare C 84-8" - ], - "identifier": [ - "urn:barcode:33433076137185" - ], - "idBarcode": [ - "33433076137185" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Usi+e+costumi+dell'+Abissinia+e+dei+dintorni+di+Massaua+/&Site=SCHRB&CallNumber=Sc+Rare+C+84-8&ItemPlace=Milano+:&ItemPublisher=A.+Vallardi,&Date=[18--]&ItemInfo3=https://catalog.nypl.org/record=b10006047&ReferenceNumber=b10006047x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433076137185&ItemISxN=i10003925x&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare C 84-000008" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10003926", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" - ], - "identifierV2": [ - { - "value": "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019684897" - } - ], - "physicalLocation": [ - "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" - ], - "identifier": [ - "urn:barcode:33433019684897" - ], - "idBarcode": [ - "33433019684897" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006816", - "_score": null, - "_source": { - "extent": [ - "[11], 144 p." - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Nella stamperia di Gennaro Muzio," - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "createdYear": [ - 1725 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "La somiglianza [microform] : commedia" - ], - "shelfMark": [ - "*Z-3500" - ], - "creatorLiteral": [ - "Amenta, Niccolò, 1659-1719." - ], - "createdString": [ - "1725" - ], - "dateStartYear": [ - 1725 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3500" - }, - { - "type": "nypl:Bnumber", - "value": "10006816" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00508052" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206802" - } - ], - "updatedAt": 1636111583127, - "publicationStatement": [ - "In Napoli : Nella stamperia di Gennaro Muzio, 1725." - ], - "identifier": [ - "urn:bnum:10006816", - "urn:undefined:NNSZ00508052", - "urn:undefined:(WaOLN)nyp0206802" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1725" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "La somiglianza [microform] : commedia / del dottor ... Niccolò Amenta ..." - ], - "uri": "b10006816", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "In Napoli :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ] - }, - "sort": [ - "b10006816" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433107660718" - ], - "physicalLocation": [ - "*Z-3500" - ], - "shelfMark_sort": "a*Z-003500", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003967", - "shelfMark": [ - "*Z-3500" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3500" - }, - { - "type": "bf:Barcode", - "value": "33433107660718" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433107660718" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10007423", - "_score": null, - "_source": { - "extent": [ - "184 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Muʼassisah-ʼi Khāvar" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1334" - ], - "createdYear": [ - 1333 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "ʻĀlam va Ādam" - ], - "shelfMark": [ - "*OMO 84-2676" - ], - "creatorLiteral": [ - "Vafā ʻAlī Shāh." - ], - "createdString": [ - "1333" - ], - "dateStartYear": [ - 1333 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMO 84-2676" - }, - { - "type": "nypl:Bnumber", - "value": "10007423" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00508668" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0207407" - } - ], - "dateEndYear": [ - 1334 - ], - "updatedAt": 1653404639396, - "publicationStatement": [ - "Tihrān : Muʼassisah-ʼi Khāvar, 1312 [1933 or 1934]" - ], - "identifier": [ - "urn:bnum:10007423", - "urn:undefined:NNSZ00508668", - "urn:undefined:(WaOLN)nyp0207407" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1333" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "ʻĀlam va Ādam / a̲sar-i khāmah-ʼi Mīrzā Hādī Mawlavī Rash̄tī ; bi-himmat-i Muḥammad Ramazānī." - ], - "uri": "b10007423", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10007423" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001898570" - ], - "physicalLocation": [ - "*OMO 84-2676" - ], - "shelfMark_sort": "a*OMO 84-002676", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004294", - "shelfMark": [ - "*OMO 84-2676" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMO 84-2676" - }, - { - "type": "bf:Barcode", - "value": "33433001898570" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "idBarcode": [ - "33433001898570" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10007812", - "_score": null, - "_source": { - "extent": [ - "176 p. : ill. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "French wit and humor", - "French wit and humor -- France" - ], - "publisherLiteral": [ - "A. Pierret," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sac à juifs [microform] : recueil de scènes et récits satiriques et humoristiques" - ], - "shelfMark": [ - "*ZP-687 no. 9" - ], - "creatorLiteral": [ - "La Badine, C. de." - ], - "createdString": [ - "1800" - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZP-687 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10007812" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00609209" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0207795" - } - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1637634877781, - "publicationStatement": [ - "Paris : A. Pierret, [18--?]" - ], - "identifier": [ - "urn:bnum:10007812", - "urn:undefined:NNSZ00609209", - "urn:undefined:(WaOLN)nyp0207795" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "French wit and humor -- France." - ], - "titleDisplay": [ - "Sac à juifs [microform] : recueil de scènes et récits satiriques et humoristiques / par C. de La Badine ; illus. de Bocardho." - ], - "uri": "b10007812", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Paris :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "12⁰." - ] - }, - "sort": [ - "b10007812" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008934", - "_score": null, - "_source": { - "extent": [ - "536 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Aristotle", - "Porphyry, approximately 234-approximately 305" - ], - "publisherLiteral": [ - "G. Olms," - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "dateEndString": [ - "1597" - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "In Porphyrii Isagogen et Aristotelis Organum : commentarius analyticus" - ], - "shelfMark": [ - "JFD 85-2807" - ], - "creatorLiteral": [ - "Pace, Giulio, 1550-1635." - ], - "createdString": [ - "1966" - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFD 85-2807" - }, - { - "type": "nypl:Bnumber", - "value": "10008934" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00810450" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208909" - } - ], - "dateEndYear": [ - 1597 - ], - "updatedAt": 1636105378000, - "publicationStatement": [ - "Hildesheim : G. Olms, 1966." - ], - "identifier": [ - "urn:bnum:10008934", - "urn:undefined:NNSZ00810450", - "urn:undefined:(WaOLN)nyp0208909" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Aristotle.", - "Porphyry, approximately 234-approximately 305." - ], - "titleDisplay": [ - "In Porphyrii Isagogen et Aristotelis Organum : commentarius analyticus / Julius Pacius." - ], - "uri": "b10008934", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Hildesheim :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10008934" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858678", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFD 85-2807" - ], - "identifierV2": [ - { - "value": "JFD 85-2807", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433038876987" - } - ], - "physicalLocation": [ - "JFD 85-2807" - ], - "identifier": [ - "urn:barcode:33433038876987" - ], - "idBarcode": [ - "33433038876987" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJFD 85-002807" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009127", - "_score": null, - "_source": { - "extent": [ - "84 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "God (Islam)", - "God (Islam) -- Attributes" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1268" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Fatwá al-Ḥamawīyah al-kubrá," - ], - "shelfMark": [ - "*OGM 85-1727" - ], - "creatorLiteral": [ - "Ibn Taymīyah, Aḥmad ibn ʻAbd al-Ḥalīm, 1263-1328." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "76961126" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 85-1727" - }, - { - "type": "nypl:Bnumber", - "value": "10009127" - }, - { - "type": "bf:Lccn", - "value": "76961126" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00810649" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209102" - } - ], - "dateEndYear": [ - 1268 - ], - "updatedAt": 1636072369613, - "publicationStatement": [ - "[al-Qāhirah, al-Maṭbaʻah al-Salafīyah wa-Maktabatuhā, 1967 or 8]" - ], - "identifier": [ - "urn:bnum:10009127", - "urn:lccn:76961126", - "urn:undefined:NNSZ00810649", - "urn:undefined:(WaOLN)nyp0209102" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "God (Islam) -- Attributes." - ], - "titleDisplay": [ - "al-Fatwá al-Ḥamawīyah al-kubrá, taʼlīf Taqī al-Dīn Aḥmad ibn Taymīyah. Nasharahā Quṣay Muḥibb al-Dīn al-Khaṭīb." - ], - "uri": "b10009127", - "lccClassification": [ - "BP166.2 .I24 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah, al-Maṭbaʻah al-Salafīyah wa-Maktabatuhā, 1967 or 8]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10009127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001945694" - ], - "physicalLocation": [ - "*OGM 85-1727" - ], - "shelfMark_sort": "a*OGM 85-001727", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004965", - "shelfMark": [ - "*OGM 85-1727" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 85-1727" - }, - { - "type": "bf:Barcode", - "value": "33433001945694" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001945694" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009912", - "_score": null, - "_source": { - "extent": [ - "[4] p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Alva, Juan de" - ], - "publisherLiteral": [ - "Imprenta de Alonso del Riego" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "dateEndString": [ - "1799" - ], - "createdYear": [ - 1700 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "Sc Rare+ F 82-61" - ], - "createdString": [ - "1700" - ], - "dateStartYear": [ - 1700 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare+ F 82-61" - }, - { - "type": "nypl:Bnumber", - "value": "10009912" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00911389" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209888" - } - ], - "dateEndYear": [ - 1799 - ], - "updatedAt": 1654777211068, - "publicationStatement": [ - "Valladolid : Imprenta de Alonso del Riego, [17--?]" - ], - "identifier": [ - "urn:bnum:10009912", - "urn:undefined:NNSZ00911389", - "urn:undefined:(WaOLN)nyp0209888" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1700" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Alva, Juan de." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10009912", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Valladolid" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10009912" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10009912-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-61&ItemPlace=Valladolid+:&ItemPublisher=Imprenta+de+Alonso+del+Riego,&Date=[17--?]&ItemInfo3=https://catalog.nypl.org/record=b10009912&ReferenceNumber=b100099129&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926867&ItemISxN=i11901001x&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10009912-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901001", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare+ F 82-61" - ], - "identifierV2": [ - { - "value": "Sc Rare+ F 82-61", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036926867" - } - ], - "physicalLocation": [ - "Sc Rare+ F 82-61" - ], - "identifier": [ - "urn:barcode:33433036926867" - ], - "idBarcode": [ - "33433036926867" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-61&ItemPlace=Valladolid+:&ItemPublisher=Imprenta+de+Alonso+del+Riego,&Date=[17--?]&ItemInfo3=https://catalog.nypl.org/record=b10009912&ReferenceNumber=b100099129&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926867&ItemISxN=i11901001x&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare+ F 82-000061" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10009988", - "_score": null, - "_source": { - "extent": [ - "5 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Coutilien Coutard, Philippe-Jérome", - "Haiti", - "Haiti -- History", - "Haiti -- History -- 1804-1844", - "Haiti -- History -- Revolution, 1791-1804" - ], - "publisherLiteral": [ - "Impr. du gouvernement," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1899" - ], - "createdYear": [ - 1800 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Discours aux Haïtiens, ou, Hommage au dévouement patriotique de Coutillien [microform]" - ], - "shelfMark": [ - "Sc Micro F-10834" - ], - "creatorLiteral": [ - "Marion, Ignace Despontreaux." - ], - "createdString": [ - "1800" - ], - "dateStartYear": [ - 1800 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro F-10834" - }, - { - "type": "nypl:Bnumber", - "value": "10009988" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0209965" - } - ], - "dateEndYear": [ - 1899 - ], - "updatedAt": 1643680852554, - "publicationStatement": [ - "Aux Cayes : Impr. du gouvernement, [185-?]" - ], - "identifier": [ - "urn:bnum:10009988", - "urn:undefined:(WaOLN)nyp0209965" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1800" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Coutilien Coutard, Philippe-Jérome.", - "Haiti -- History -- 1804-1844.", - "Haiti -- History -- Revolution, 1791-1804." - ], - "titleDisplay": [ - "Discours aux Haïtiens, ou, Hommage au dévouement patriotique de Coutillien [microform] / par A.J. Despontreau Marion." - ], - "uri": "b10009988", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Aux Cayes :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Hommage au dévouement patriotique de Coutillien" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10009988" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i13965122", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" - ], - "identifierV2": [ - { - "value": "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058298906" - } - ], - "physicalLocation": [ - "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" - ], - "identifier": [ - "urn:barcode:33433058298906" - ], - "idBarcode": [ - "33433058298906" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro F-10900 Library has: Vol. 3, no. 000005-v. 3, no. 7 (June-Aug. 1919)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13785539", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:26", - "label": "microfiche" - } - ], - "catalogItemType_packed": [ - "catalogItemType:26||microfiche" - ], - "holdingLocation": [ - { - "id": "loc:scff3", - "label": "Schomburg Center - Research & Reference - Desk" - } - ], - "holdingLocation_packed": [ - "loc:scff3||Schomburg Center - Research & Reference - Desk" - ], - "shelfMark": [ - "Sc Micro F-10834" - ], - "identifierV2": [ - { - "value": "Sc Micro F-10834", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058299276" - } - ], - "physicalLocation": [ - "Sc Micro F-10834" - ], - "identifier": [ - "urn:barcode:33433058299276" - ], - "idBarcode": [ - "33433058299276" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro F-010834" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010385", - "_score": null, - "_source": { - "extent": [ - "1 microfilm reel ;" - ], - "note": [ - { - "noteType": "Note", - "label": "On reel with: Jamaica 1871-1943 (except 1934), Panama Canal Zone 1912", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "United States Virgin Islands", - "United States Virgin Islands -- Census" - ], - "publisherLiteral": [ - "Research Publications," - ], - "language": [ - { - "id": "lang:und", - "label": "Undetermined" - } - ], - "createdYear": [ - 198 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "U.S. Virgin Islands--Census 1901, pt. 1, 1911, pt. 1 [microform]." - ], - "shelfMark": [ - "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" - ], - "createdString": [ - "198" - ], - "seriesStatement": [ - "International population census publications [pre-1945]. Latin America" - ], - "dateStartYear": [ - 198 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" - }, - { - "type": "nypl:Bnumber", - "value": "10010385" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01012026" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210361" - } - ], - "updatedAt": 1636140635056, - "publicationStatement": [ - "Woodbridge, Conn. : Research Publications, [1983]" - ], - "identifier": [ - "urn:bnum:10010385", - "urn:undefined:NNSZ01012026", - "urn:undefined:(WaOLN)nyp0210361" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "198" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "United States Virgin Islands -- Census." - ], - "titleDisplay": [ - "U.S. Virgin Islands--Census 1901, pt. 1, 1911, pt. 1 [microform]." - ], - "uri": "b10010385", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Woodbridge, Conn. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 mm." - ] - }, - "sort": [ - "b10010385" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i27849993", - "shelfMark": [ - "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" - }, - { - "type": "bf:Barcode", - "value": "33433094813171" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433094813171" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010607", - "_score": null, - "_source": { - "extent": [ - "1 broadside ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Facsimile reproduction (photoreproduction).", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Alembert, Jean Le Rond d', 1717-1783", - "Diderot, Denis, 1713-1784", - "Encyclopédie" - ], - "publisherLiteral": [ - "Ex Typographia Reverendae Camerae Apostolicae," - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "createdYear": [ - 1759 - ], - "type": [ - "nypl:Item" - ], - "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 [microform]" - ], - "shelfMark": [ - "*Z-3852 no. 26" - ], - "creatorLiteral": [ - "Catholic Church. Pope (1758-1769 : Clement XIII)" - ], - "createdString": [ - "1759" - ], - "dateStartYear": [ - 1759 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3852 no. 26" - }, - { - "type": "nypl:Bnumber", - "value": "10010607" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)13888170" - } - ], - "updatedAt": 1636086132775, - "publicationStatement": [ - "Romae : Ex Typographia Reverendae Camerae Apostolicae, 1759." - ], - "identifier": [ - "urn:bnum:10010607", - "urn:undefined:(OCoLC)13888170" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1759" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Alembert, Jean Le Rond d', 1717-1783.", - "Diderot, Denis, 1713-1784.", - "Encyclopédie." - ], - "titleDisplay": [ - "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 [microform] / Clemens Papa XIII ad futuram rei memoriam." - ], - "uri": "b10010607", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Romae :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "37 cm" - ] - }, - "sort": [ - "b10010607" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433107973277" - ], - "physicalLocation": [ - "*Z-3852" - ], - "shelfMark_sort": "a*Z-3852 no. 000001-27", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30458802", - "shelfMark": [ - "*Z-3852 no. 1-27" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*Z-3852 no. 1-27" - }, - { - "type": "bf:Barcode", - "value": "33433107973277" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "no. 1-27" - ], - "idBarcode": [ - "33433107973277" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10010675", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: No. 2 (1975).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English or Spanish.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "American literature", - "American literature -- Mexican American authors", - "American literature -- Mexican American authors -- Periodicals", - "American poetry", - "American poetry -- Mexican American authors", - "American poetry -- Mexican American authors -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Pajarito Publications." - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "19" - ], - "createdYear": [ - 19 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Flor y canto." - ], - "shelfMark": [ - "JFL 81-111" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "19" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 19 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 81-111" - }, - { - "type": "nypl:Bnumber", - "value": "10010675" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0110-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0210651" - } - ], - "idOclc": [ - "NYPG0110-S" - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1669925867950, - "publicationStatement": [ - "Albuquerque : Pajarito Publications." - ], - "identifier": [ - "urn:bnum:10010675", - "urn:oclc:NYPG0110-S", - "urn:undefined:(WaOLN)nyp0210651" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "19" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "American literature -- Mexican American authors -- Periodicals.", - "American poetry -- Mexican American authors -- Periodicals." - ], - "titleDisplay": [ - "Flor y canto." - ], - "uri": "b10010675", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Albuquerque" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10010675" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10005340", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JFL 81-111 v. 2-5 1975-78" - ], - "identifierV2": [ - { - "value": "JFL 81-111 v. 2-5 1975-78", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005304187" - } - ], - "enumerationChronology": [ - "v. 2-5 1975-78" - ], - "physicalLocation": [ - "JFL 81-111" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005304187" - ], - "idBarcode": [ - "33433005304187" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFL 81-111 v. 000002-5 1975-78" - }, - "sort": [ - " 2-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011031", - "_score": null, - "_source": { - "extent": [ - "v. ill." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "State universities and colleges", - "State universities and colleges -- United States", - "State universities and colleges -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "AASCU studies." - ], - "shelfMark": [ - "JLM 81-389" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "American Association of State Colleges and Universities." - ], - "createdString": [ - "999" - ], - "idLccn": [ - "72621307" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLM 81-389" - }, - { - "type": "nypl:Bnumber", - "value": "10011031" - }, - { - "type": "bf:Lccn", - "value": "72621307" - }, - { - "type": "nypl:Oclc", - "value": "7994181" - }, - { - "type": "nypl:Oclc", - "value": "7994181" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0111-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211007" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7994181" - } - ], - "idOclc": [ - "7994181", - "NYPG0111-S" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1669918566353, - "publicationStatement": [ - "[Washington]" - ], - "identifier": [ - "urn:bnum:10011031", - "urn:lccn:72621307", - "urn:oclc:7994181", - "urn:oclc:NYPG0111-S", - "urn:undefined:(WaOLN)nyp0211007", - "urn:undefined:(OCoLC)7994181" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "State universities and colleges -- United States -- Periodicals." - ], - "titleDisplay": [ - "AASCU studies." - ], - "uri": "b10011031", - "lccClassification": [ - "LB2329.5.A43" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Washington]" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "A. A. S. C. U. studies." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10011031" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540542", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-389 1970-1974" - ], - "identifierV2": [ - { - "value": "JLM 81-389 1970-1974", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017529995" - } - ], - "enumerationChronology": [ - "1970-1974" - ], - "physicalLocation": [ - "JLM 81-389" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433017529995" - ], - "idBarcode": [ - "33433017529995" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-389 1970-001974" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011036", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Numbering", - "label": "Vols. for 1980- called 1st- annual supplement.", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Continues: Equal employment opportunity court cases, ISSN 0272-278x, issued by: United States. Civil Service Commission. Bureau of Intergovernmental Personnel Programs. (Earlier title cataloged as monograph. See entry under: United States. Civil Service Commission. Bureau of Intergovernmental Personnel Programs).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Discrimination in employment", - "Discrimination in employment -- Digests", - "Discrimination in employment -- Digests -- United States", - "Discrimination in employment -- Digests -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "U.S. Office of Personnel Management, Office of Intergovernmental Programs : For sale by the Supt. of Docs., U.S. G.P.O." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Equal employment opportunity court cases." - ], - "shelfMark": [ - "JLM 81-385" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "999" - ], - "idLccn": [ - "80647817" - ], - "seriesStatement": [ - "OIPP" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "United States. Office of Intergovernmental Personnel Programs." - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLM 81-385" - }, - { - "type": "nypl:Bnumber", - "value": "10011036" - }, - { - "type": "bf:Lccn", - "value": "80647817" - }, - { - "type": "nypl:Oclc", - "value": "6784164" - }, - { - "type": "nypl:Oclc", - "value": "6784164" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0116-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0011050" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000038" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)6784164" - }, - { - "type": "bf:Identifier", - "value": "RCON-EPA" - } - ], - "idOclc": [ - "6784164", - "NYPG0116-S" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1670012393617, - "publicationStatement": [ - "Washington : U.S. Office of Personnel Management, Office of Intergovernmental Programs : For sale by the Supt. of Docs., U.S. G.P.O." - ], - "identifier": [ - "urn:bnum:10011036", - "urn:lccn:80647817", - "urn:oclc:6784164", - "urn:oclc:NYPG0116-S", - "urn:undefined:(WaOLN)nyp0011050", - "urn:undefined:(WaOLN)nyp0000038", - "urn:undefined:(OCoLC)6784164", - "urn:undefined:RCON-EPA" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Discrimination in employment -- Digests -- United States -- Periodicals." - ], - "titleDisplay": [ - "Equal employment opportunity court cases." - ], - "uri": "b10011036", - "lccClassification": [ - "PAR" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Washington" - ], - "titleAlt": [ - "Equal employment opportunity court cases" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10011036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540547", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-385 1980" - ], - "identifierV2": [ - { - "value": "JLM 81-385 1980", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017529912" - } - ], - "enumerationChronology": [ - "1980" - ], - "physicalLocation": [ - "JLM 81-385" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433017529912" - ], - "idBarcode": [ - "33433017529912" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-385 001980" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011041", - "_score": null, - "_source": { - "extent": [ - "v. ill., ports." - ], - "note": [ - { - "noteType": "Supplement", - "label": "Supplement accompany some issues.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Journalism", - "Journalism -- Periodicals" - ], - "numItemDatesParsed": [ - 9 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 9 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bulletin." - ], - "shelfMark": [ - "M-10 3102" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "American Society of Newspaper Editors." - ], - "createdString": [ - "999" - ], - "idLccn": [ - "59037860 //r82" - ], - "idIssn": [ - "0003-1178" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "M-10 3102" - }, - { - "type": "nypl:Bnumber", - "value": "10011041" - }, - { - "type": "bf:Issn", - "value": "0003-1178" - }, - { - "type": "bf:Lccn", - "value": "59037860 //r82" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0120-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0011055" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000039" - } - ], - "idOclc": [ - "NYPG0120-S" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675264982433, - "publicationStatement": [ - "Easton, Pa. [etc.]" - ], - "identifier": [ - "urn:bnum:10011041", - "urn:issn:0003-1178", - "urn:lccn:59037860 //r82", - "urn:oclc:NYPG0120-S", - "urn:undefined:(WaOLN)nyp0011055", - "urn:undefined:(WaOLN)nyp0000039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Journalism -- Periodicals." - ], - "titleDisplay": [ - "Bulletin." - ], - "uri": "b10011041", - "lccClassification": [ - "PN4700 .A58" - ], - "numItems": [ - 9 - ], - "numAvailable": [ - 9 - ], - "placeOfPublication": [ - "Easton, Pa. [etc.]" - ], - "titleAlt": [ - "The Bulletin of the American Society of Newspaper Editors" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10011041" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 9, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i11901117", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676884" - } - ], - "enumerationChronology": [ - "nos. 601-629 Jan. 1977-Jan. 1980" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676884" - ], - "idBarcode": [ - "33433010676884" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1977", - "lte": "1980" - } - ], - "enumerationChronology_sort": [ - " -1977" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 601-629 Jan. 1977-Jan. 001980" - }, - "sort": [ - " -1977" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i11901116", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 574-600 1974-76" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 574-600 1974-76", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676876" - } - ], - "enumerationChronology": [ - "nos. 574-600 1974-76" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676876" - ], - "idBarcode": [ - "33433010676876" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1974", - "lte": "1976" - } - ], - "enumerationChronology_sort": [ - " -1974" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 574-600 1974-000076" - }, - "sort": [ - " -1974" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i11901115", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 547-57 1971-73" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 547-57 1971-73", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676868" - } - ], - "enumerationChronology": [ - "nos. 547-57 1971-73" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676868" - ], - "idBarcode": [ - "33433010676868" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1971", - "lte": "1973" - } - ], - "enumerationChronology_sort": [ - " -1971" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 547-57 1971-000073" - }, - "sort": [ - " -1971" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i11901114", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 515-546 1968-70" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 515-546 1968-70", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676850" - } - ], - "enumerationChronology": [ - "nos. 515-546 1968-70" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676850" - ], - "idBarcode": [ - "33433010676850" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1968", - "lte": "1970" - } - ], - "enumerationChronology_sort": [ - " -1968" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 515-546 1968-000070" - }, - "sort": [ - " -1968" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i11901113", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 482-514 1965-67" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 482-514 1965-67", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676843" - } - ], - "enumerationChronology": [ - "nos. 482-514 1965-67" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676843" - ], - "idBarcode": [ - "33433010676843" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1965", - "lte": "1967" - } - ], - "enumerationChronology_sort": [ - " -1965" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 482-514 1965-000067" - }, - "sort": [ - " -1965" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i11901112", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 460-481 1963-64" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 460-481 1963-64", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676835" - } - ], - "enumerationChronology": [ - "nos. 460-481 1963-64" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676835" - ], - "idBarcode": [ - "33433010676835" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1963", - "lte": "1964" - } - ], - "enumerationChronology_sort": [ - " -1963" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 460-481 1963-000064" - }, - "sort": [ - " -1963" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i11901111", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 438-459 1961-62" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 438-459 1961-62", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676827" - } - ], - "enumerationChronology": [ - "nos. 438-459 1961-62" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676827" - ], - "idBarcode": [ - "33433010676827" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1961", - "lte": "1962" - } - ], - "enumerationChronology_sort": [ - " -1961" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 438-459 1961-000062" - }, - "sort": [ - " -1961" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11901110", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 416-437 1959-60" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 416-437 1959-60", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676819" - } - ], - "enumerationChronology": [ - "nos. 416-437 1959-60" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676819" - ], - "idBarcode": [ - "33433010676819" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1959", - "lte": "1960" - } - ], - "enumerationChronology_sort": [ - " -1959" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 416-437 1959-000060" - }, - "sort": [ - " -1959" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901109", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "M-10 3102 nos. 383-415 1956-58" - ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 383-415 1956-58", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433010676801" - } - ], - "enumerationChronology": [ - "nos. 383-415 1956-58" - ], - "physicalLocation": [ - "M-10 3102" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433010676801" - ], - "idBarcode": [ - "33433010676801" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1956", - "lte": "1958" - } - ], - "enumerationChronology_sort": [ - " -1956" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aM-10 3102 nos. 383-415 1956-000058" - }, - "sort": [ - " -1956" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011321", - "_score": null, - "_source": { - "extent": [ - "[6], 72 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "German and Hebrew.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrew language", - "Hebrew language -- Grammar", - "Aramaic language", - "Aramaic language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wittwe Vandenhöck" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1770 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Johann Ernst Fabers Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." - ], - "shelfMark": [ - "*PCQ 85-1669" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Faber, Johann Ernst, 1746-1774." - ], - "createdString": [ - "1770" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1770 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*PCQ 85-1669" - }, - { - "type": "nypl:Bnumber", - "value": "10011321" - }, - { - "type": "nypl:Oclc", - "value": "NYPG012000281-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213287" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211293" - } - ], - "idOclc": [ - "NYPG012000281-B" - ], - "updatedAt": 1680119777395, - "publicationStatement": [ - "Göttingen : Wittwe Vandenhöck, 1770." - ], - "identifier": [ - "urn:bnum:10011321", - "urn:oclc:NYPG012000281-B", - "urn:undefined:NNSZ01213287", - "urn:undefined:(WaOLN)nyp0211293" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1770" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrew language -- Grammar.", - "Aramaic language -- Grammar." - ], - "titleDisplay": [ - "Johann Ernst Fabers Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." - ], - "uri": "b10011321", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Göttingen" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." - ], - "dimensions": [ - "19cm." - ] - }, - "sort": [ - "b10011321" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14747226", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:maf98", - "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf98||Schwarzman Building M2 - Dorot Jewish Division Room 111" - ], - "shelfMark": [ - "**P-*PCQ 85-1669" - ], - "identifierV2": [ - { - "value": "**P-*PCQ 85-1669", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433089858876" - } - ], - "physicalLocation": [ - "**P-*PCQ 85-1669" - ], - "m2CustomerCode": [ - "XH" - ], - "identifier": [ - "urn:barcode:33433089858876" - ], - "idBarcode": [ - "33433089858876" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:a", - "label": "By appointment only" - } - ], - "accessMessage_packed": [ - "accessMessage:a||By appointment only" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a**P-*PCQ 85-001669" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011751", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Results of a survey of RMA member banks.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "-1987." - ], - "subjectLiteral_exploded": [ - "Robert Morris Associates", - "Robert Morris Associates -- Periodicals", - "Bank loans", - "Bank loans -- United States", - "Bank loans -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Robert Morris Associates." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 198 - ], - "dateEndString": [ - "1987" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Report on domestic and international loan charge-offs." - ], - "shelfMark": [ - "JLM 81-449" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Robert Morris Associates." - ], - "createdString": [ - "198" - ], - "idLccn": [ - "80640293" - ], - "idIssn": [ - "0196-724X" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 198 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLM 81-449" - }, - { - "type": "nypl:Bnumber", - "value": "10011751" - }, - { - "type": "bf:Issn", - "value": "0196-724X" - }, - { - "type": "bf:Lccn", - "value": "80640293" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0129-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211718" - } - ], - "idOclc": [ - "NYPG0129-S" - ], - "dateEndYear": [ - 1987 - ], - "updatedAt": 1670259686970, - "publicationStatement": [ - "Philadelphia, Robert Morris Associates." - ], - "identifier": [ - "urn:bnum:10011751", - "urn:issn:0196-724X", - "urn:lccn:80640293", - "urn:oclc:NYPG0129-S", - "urn:undefined:(WaOLN)nyp0211718" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "198" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Robert Morris Associates -- Periodicals.", - "Bank loans -- United States -- Periodicals." - ], - "titleDisplay": [ - "Report on domestic and international loan charge-offs." - ], - "uri": "b10011751", - "lccClassification": [ - "HG1642.U5 R58a" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Philadelphia" - ], - "titleAlt": [ - "Report on domestic and international loan charge-offs" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10011751" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540558", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-449 1978-1983, 1987." - ], - "identifierV2": [ - { - "value": "JLM 81-449 1978-1983, 1987.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019908379" - } - ], - "enumerationChronology": [ - "1978-1983, 1987." - ], - "physicalLocation": [ - "JLM 81-449" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433019908379" - ], - "idBarcode": [ - "33433019908379" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-449 1978-1983, 1987." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10012379", - "_score": null, - "_source": { - "extent": [ - "712 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "A service book of the Armenian church.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In classical Armenian (Grabar)", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Armenian Church", - "Armenian Church -- Liturgy" - ], - "publisherLiteral": [ - "Tpeal hramanaw Teaṛn Zakʻariay azgasēr ev barekarg Patriargi" - ], - "language": [ - { - "id": "lang:arm", - "label": "Armenian" - } - ], - "createdYear": [ - 1795 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kargavorutʻyun Hasarakatsʻ Aghotʻitsʻ Hayastaneaytsʻ Ekeghetsʻwoy." - ], - "shelfMark": [ - "*ONN 86-1887" - ], - "creatorLiteral": [ - "Armenian Church." - ], - "createdString": [ - "1795" - ], - "dateStartYear": [ - 1795 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONN 86-1887" - }, - { - "type": "nypl:Bnumber", - "value": "10012379" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01314364" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0212344" - } - ], - "updatedAt": 1654794066679, - "publicationStatement": [ - "Kostandnupolis : Tpeal hramanaw Teaṛn Zakʻariay azgasēr ev barekarg Patriargi, 1795." - ], - "identifier": [ - "urn:bnum:10012379", - "urn:undefined:NNSZ01314364", - "urn:undefined:(WaOLN)nyp0212344" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1795" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Armenian Church -- Liturgy." - ], - "titleDisplay": [ - "Kargavorutʻyun Hasarakatsʻ Aghotʻitsʻ Hayastaneaytsʻ Ekeghetsʻwoy." - ], - "uri": "b10012379", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kostandnupolis" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "17 cm." - ] - }, - "sort": [ - "b10012379" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10012379-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Kargavorutʻyun+Hasarakatsʻ+Aghotʻitsʻ+Hayastaneaytsʻ+Ekeghetsʻwoy.&Site=SASRB&CallNumber=*ONN+86-1887+(Locked+cage)&Author=Armenian+Church.&ItemPlace=Kostandnupolis+:&ItemPublisher=Tpeal+hramanaw+Teaṛn+Zakʻariay+azgasēr+ev+barekarg+Patriargi,&Date=1795.&ItemInfo3=https://catalog.nypl.org/record=b10012379&ReferenceNumber=b10012379x&ItemNumber=33433057787578&ItemISxN=i125405972&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", - "label": "Request access to this item in the Schwarzman Rare Books Collection" - } - ], - "shelfMark_sort": "bi10012379-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540597", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } - ], - "owner_packed": [ - "orgs:1108||Rare Book Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" - } - ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" - ], - "shelfMark": [ - "*ONN 86-1887" - ], - "identifierV2": [ - { - "value": "*ONN 86-1887", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057787578" - } - ], - "physicalLocation": [ - "*ONN 86-1887" - ], - "identifier": [ - "urn:barcode:33433057787578" - ], - "idBarcode": [ - "33433057787578" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], - "accessMessage_packed": [ - "accessMessage:4||Restricted use" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Kargavorutʻyun+Hasarakatsʻ+Aghotʻitsʻ+Hayastaneaytsʻ+Ekeghetsʻwoy.&Site=SASRB&CallNumber=*ONN+86-1887+(Locked+cage)&Author=Armenian+Church.&ItemPlace=Kostandnupolis+:&ItemPublisher=Tpeal+hramanaw+Teaṛn+Zakʻariay+azgasēr+ev+barekarg+Patriargi,&Date=1795.&ItemInfo3=https://catalog.nypl.org/record=b10012379&ReferenceNumber=b10012379x&ItemNumber=33433057787578&ItemISxN=i125405972&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" - ], - "shelfMark_sort": "a*ONN 86-001887" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10012504", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: Sept. 1, 1933.", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Issues for 1933-1957 called v. <16-39>.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Began in 1918" - ], - "subjectLiteral_exploded": [ - "Labor unions", - "Labor unions -- Miners", - "Labor unions -- Miners -- United States", - "Labor unions -- Miners -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 16 - ], - "publisherLiteral": [ - "Districts No. 1, 7, and 9, United Mine Workers of America" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 16 - ], - "dateEndString": [ - "19" - ], - "createdYear": [ - 1918 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Anthracite tri-district news : official organ for Districts No. 1, 7, and 9, United Mine Workers of America." - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "numItemVolumesParsed": [ - 16 - ], - "createdString": [ - "1918" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "United Mine Workers of America. District No. 1.", - "United Mine Workers of America. District No. 7.", - "United Mine Workers of America. District No. 9." - ], - "dateStartYear": [ - 1918 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "TDRA+++ (Anthracite tri-district news)" - }, - { - "type": "nypl:Bnumber", - "value": "10012504" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0131-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0212468" - } - ], - "idOclc": [ - "NYPG0131-S" - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1675267526996, - "publicationStatement": [ - "Hazelton, Pa. : Districts No. 1, 7, and 9, United Mine Workers of America" - ], - "identifier": [ - "urn:bnum:10012504", - "urn:oclc:NYPG0131-S", - "urn:undefined:(WaOLN)nyp0212468" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Labor unions -- Miners -- United States -- Periodicals." - ], - "titleDisplay": [ - "Anthracite tri-district news : official organ for Districts No. 1, 7, and 9, United Mine Workers of America." - ], - "uri": "b10012504", - "numItems": [ - 16 - ], - "numAvailable": [ - 16 - ], - "placeOfPublication": [ - "Hazelton, Pa." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "57 cm." - ] - }, - "sort": [ - "b10012504" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 16, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i12859081", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 33 (1950)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 33 (1950)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102232" - } - ], - "enumerationChronology": [ - "v. 33 (1950)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102232" - ], - "idBarcode": [ - "33433057102232" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "1950", - "lte": "1950" - } - ], - "enumerationChronology_sort": [ - " 33-1950" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000033 (1950)" - }, - "sort": [ - " 33-1950" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i12859080", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 32 (1949)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 32 (1949)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102224" - } - ], - "enumerationChronology": [ - "v. 32 (1949)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102224" - ], - "idBarcode": [ - "33433057102224" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "1949", - "lte": "1949" - } - ], - "enumerationChronology_sort": [ - " 32-1949" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000032 (1949)" - }, - "sort": [ - " 32-1949" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i12859079", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 30 (1947)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 30 (1947)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102216" - } - ], - "enumerationChronology": [ - "v. 30 (1947)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102216" - ], - "idBarcode": [ - "33433057102216" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "1947", - "lte": "1947" - } - ], - "enumerationChronology_sort": [ - " 30-1947" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000030 (1947)" - }, - "sort": [ - " 30-1947" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i12859078", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 29 (1946)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 29 (1946)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102208" - } - ], - "enumerationChronology": [ - "v. 29 (1946)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102208" - ], - "idBarcode": [ - "33433057102208" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "1946", - "lte": "1946" - } - ], - "enumerationChronology_sort": [ - " 29-1946" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000029 (1946)" - }, - "sort": [ - " 29-1946" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i12859077", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 28 (1945)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 28 (1945)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102190" - } - ], - "enumerationChronology": [ - "v. 28 (1945)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102190" - ], - "idBarcode": [ - "33433057102190" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "1945", - "lte": "1945" - } - ], - "enumerationChronology_sort": [ - " 28-1945" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000028 (1945)" - }, - "sort": [ - " 28-1945" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i12859076", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 27 (1944)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 27 (1944)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102182" - } - ], - "enumerationChronology": [ - "v. 27 (1944)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102182" - ], - "idBarcode": [ - "33433057102182" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "1944", - "lte": "1944" - } - ], - "enumerationChronology_sort": [ - " 27-1944" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000027 (1944)" - }, - "sort": [ - " 27-1944" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i12859075", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 26 (1943)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 26 (1943)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102174" - } - ], - "enumerationChronology": [ - "v. 26 (1943)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102174" - ], - "idBarcode": [ - "33433057102174" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 26, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "1943", - "lte": "1943" - } - ], - "enumerationChronology_sort": [ - " 26-1943" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000026 (1943)" - }, - "sort": [ - " 26-1943" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i12859074", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 25 (1942)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 25 (1942)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102166" - } - ], - "enumerationChronology": [ - "v. 25 (1942)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102166" - ], - "idBarcode": [ - "33433057102166" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 25 - } - ], - "dateRange": [ - { - "gte": "1942", - "lte": "1942" - } - ], - "enumerationChronology_sort": [ - " 25-1942" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000025 (1942)" - }, - "sort": [ - " 25-1942" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i12859073", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 24 (1941)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 24 (1941)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102158" - } - ], - "enumerationChronology": [ - "v. 24 (1941)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102158" - ], - "idBarcode": [ - "33433057102158" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 24, - "lte": 24 - } - ], - "dateRange": [ - { - "gte": "1941", - "lte": "1941" - } - ], - "enumerationChronology_sort": [ - " 24-1941" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000024 (1941)" - }, - "sort": [ - " 24-1941" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i12859072", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 23 (1940)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 23 (1940)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057102141" - } - ], - "enumerationChronology": [ - "v. 23 (1940)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057102141" - ], - "idBarcode": [ - "33433057102141" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 23, - "lte": 23 - } - ], - "dateRange": [ - { - "gte": "1940", - "lte": "1940" - } - ], - "enumerationChronology_sort": [ - " 23-1940" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000023 (1940)" - }, - "sort": [ - " 23-1940" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i12859071", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 22 (1939)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 22 (1939)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100301" - } - ], - "enumerationChronology": [ - "v. 22 (1939)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100301" - ], - "idBarcode": [ - "33433057100301" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 22, - "lte": 22 - } - ], - "dateRange": [ - { - "gte": "1939", - "lte": "1939" - } - ], - "enumerationChronology_sort": [ - " 22-1939" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000022 (1939)" - }, - "sort": [ - " 22-1939" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i12859070", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 21 (1938)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 21 (1938)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100293" - } - ], - "enumerationChronology": [ - "v. 21 (1938)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100293" - ], - "idBarcode": [ - "33433057100293" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 21, - "lte": 21 - } - ], - "dateRange": [ - { - "gte": "1938", - "lte": "1938" - } - ], - "enumerationChronology_sort": [ - " 21-1938" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000021 (1938)" - }, - "sort": [ - " 21-1938" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i12859069", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 20 (1937)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 20 (1937)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100285" - } - ], - "enumerationChronology": [ - "v. 20 (1937)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100285" - ], - "idBarcode": [ - "33433057100285" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 20, - "lte": 20 - } - ], - "dateRange": [ - { - "gte": "1937", - "lte": "1937" - } - ], - "enumerationChronology_sort": [ - " 20-1937" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000020 (1937)" - }, - "sort": [ - " 20-1937" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i12859068", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 19 (1936)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 19 (1936)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100277" - } - ], - "enumerationChronology": [ - "v. 19 (1936)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100277" - ], - "idBarcode": [ - "33433057100277" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 19, - "lte": 19 - } - ], - "dateRange": [ - { - "gte": "1936", - "lte": "1936" - } - ], - "enumerationChronology_sort": [ - " 19-1936" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000019 (1936)" - }, - "sort": [ - " 19-1936" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i12859067", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 18 (1935)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 18 (1935)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100269" - } - ], - "enumerationChronology": [ - "v. 18 (1935)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100269" - ], - "idBarcode": [ - "33433057100269" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 18, - "lte": 18 - } - ], - "dateRange": [ - { - "gte": "1935", - "lte": "1935" - } - ], - "enumerationChronology_sort": [ - " 18-1935" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000018 (1935)" - }, - "sort": [ - " 18-1935" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12859066", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 17 (Jan. 5-Dec. 28, 1934)" - ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 17 (Jan. 5-Dec. 28, 1934)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057100251" - } - ], - "enumerationChronology": [ - "v. 17 (Jan. 5-Dec. 28, 1934)" - ], - "physicalLocation": [ - "TDRA+++ (Anthracite tri-district news)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433057100251" - ], - "idBarcode": [ - "33433057100251" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], - "accessMessage_packed": [ - "accessMessage:o||Oversize" - ], - "volumeRange": [ - { - "gte": 17, - "lte": 17 - } - ], - "dateRange": [ - { - "gte": "1934", - "lte": "1934" - } - ], - "enumerationChronology_sort": [ - " 17-1934" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000017 (Jan. 5-Dec. 28, 1934)" - }, - "sort": [ - " 17-1934" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10012514", - "_score": null, - "_source": { - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Genealogy", - "Clark County (Wash.)", - "Clark County (Wash.) -- Genealogy", - "Clark County (Wash.) -- Genealogy -- Periodicals", - "Washington (State)", - "Washington (State) -- Clark County", - "United States, Washington", - "United States, Washington -- Periodicals" - ], - "numItemDatesParsed": [ - 25 - ], - "publisherLiteral": [ - "Clark County Genealogical Society." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 25 - ], - "createdYear": [ - 999 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Trail breakers." - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "numItemVolumesParsed": [ - 25 - ], - "createdString": [ - "999" - ], - "idLccn": [ - " 76641407" - ], - "idIssn": [ - "0362-0344" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Clark County Genealogical Society (Clark County, Wash.)" - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APR (Clark Co., Wash.) 81-297" - }, - { - "type": "nypl:Bnumber", - "value": "10012514" - }, - { - "type": "bf:Issn", - "value": "0362-0344" - }, - { - "type": "bf:Lccn", - "value": " 76641407" - }, - { - "type": "nypl:Oclc", - "value": "2441280" - }, - { - "type": "nypl:Oclc", - "value": "2441280" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)2441280" - } - ], - "idOclc": [ - "2441280" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "2:1(Sep 1975)-33(Jun. 2006-Jun. 2007).", - "Directory (of society's officers and other sources) 1984/1985 bound with v.10 & v.11" - ], - "checkInBoxes": [ - { - "coverage": "Vol. 27 No. 1 (Fall 2000)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 27 No. 2 (Winter 2001)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 27 No. 3 (Spring 2001)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 27 No. 4 (Summer 2001)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 28 No. 1-3 (Fall 2001)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 29 No. 1 (Fall 2002)", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 29 No. 2 (Winter 2003)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 29 No. 3/4 (Spring 2003)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 30 No. 1 (Fall 2003)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Unavailable" - }, - { - "coverage": "Vol. 30 No. 2 (Winter 2004)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 30 No. 3/4 (Spring 2004)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - }, - { - "coverage": "Vol. 31-32 No. 1 (2004)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Out of Print" - }, - { - "coverage": "No. 33 (Jul. 2006 - Jun. 2007)", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "status": "Bind Prep" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "APR (Clark Co., Wash.) 81-297" - } - ], - "notes": [ - "QUARTERLY", - "\"Directory\" of same society collected and bound separately under : APR (Clark Co., Wash.) 83-333.", - "ISSN number: 0362-0344" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "format": [ - "CURRENT IN U.S. HISTORY & GENEALOGY + HOLDINGS" - ], - "location": [ - { - "code": "loc:mag", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "uri": "h1031662", - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ] - } - ], - "updatedAt": 1675271833667, - "publicationStatement": [ - "Vancouver, Wash., Clark County Genealogical Society." - ], - "identifier": [ - "urn:bnum:10012514", - "urn:issn:0362-0344", - "urn:lccn: 76641407", - "urn:oclc:2441280", - "urn:undefined:(OCoLC)2441280" - ], - "genreForm": [ - "Periodicals." - ], - "numCheckinCardItems": [ - 13 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Genealogy.", - "Clark County (Wash.) -- Genealogy -- Periodicals.", - "Washington (State) -- Clark County.", - "United States, Washington -- Periodicals." - ], - "titleDisplay": [ - "Trail breakers." - ], - "uri": "b10012514", - "lccClassification": [ - "F897.C6 T7" - ], - "numItems": [ - 12 - ], - "numAvailable": [ - 12 - ], - "placeOfPublication": [ - "Vancouver, Wash." - ], - "titleAlt": [ - "Trail breakers" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28 cm" - ] - }, - "sort": [ - "b10012514" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 25, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-10", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 33 (Jul. 2006 - Jun. 2007)" - ], - "volumeRaw": [ - "No. 33" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "2006-07-01", - "lte": "2007-06-01" - } - ], - "enumerationChronology_sort": [ - " 33-2006-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 33-2006-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-12", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 31-32 No. 1 (2004)" - ], - "volumeRaw": [ - "Vol. 31-32 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 31, - "lte": 32 - } - ], - "dateRange": [ - { - "gte": "2004-01-01", - "lte": "2004-01-01" - } - ], - "enumerationChronology_sort": [ - " 31-2004-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 31-2004-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-9", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 30 No. 3/4 (Spring 2004)" - ], - "volumeRaw": [ - "Vol. 30 No. 3/4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2004-04-01", - "lte": "2004-04-01" - } - ], - "enumerationChronology_sort": [ - " 30-2004-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 30-2004-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-8", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 30 No. 2 (Winter 2004)" - ], - "volumeRaw": [ - "Vol. 30 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2004-01-01", - "lte": "2004-01-01" - } - ], - "enumerationChronology_sort": [ - " 30-2004-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 30-2004-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-11", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 30 No. 1 (Fall 2003)" - ], - "volumeRaw": [ - "Vol. 30 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "dateRange": [ - { - "gte": "2003-10-01", - "lte": "2003-10-01" - } - ], - "enumerationChronology_sort": [ - " 30-2003-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 30-2003-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-7", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 29 No. 3/4 (Spring 2003)" - ], - "volumeRaw": [ - "Vol. 29 No. 3/4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "2003-04-01", - "lte": "2003-04-01" - } - ], - "enumerationChronology_sort": [ - " 29-2003-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 29-2003-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-6", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 29 No. 2 (Winter 2003)" - ], - "volumeRaw": [ - "Vol. 29 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "2003-01-01", - "lte": "2003-01-01" - } - ], - "enumerationChronology_sort": [ - " 29-2003-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 29-2003-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-5", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 29 No. 1 (Fall 2002)" - ], - "volumeRaw": [ - "Vol. 29 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 29, - "lte": 29 - } - ], - "dateRange": [ - { - "gte": "2002-10-01", - "lte": "2002-10-01" - } - ], - "enumerationChronology_sort": [ - " 29-2002-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 29-2002-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-4", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 28 No. 1-3 (Fall 2001)" - ], - "volumeRaw": [ - "Vol. 28 No. 1-3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 28, - "lte": 28 - } - ], - "dateRange": [ - { - "gte": "2001-10-01", - "lte": "2001-10-01" - } - ], - "enumerationChronology_sort": [ - " 28-2001-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 28-2001-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-3", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 27 No. 4 (Summer 2001)" - ], - "volumeRaw": [ - "Vol. 27 No. 4" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2001-07-01", - "lte": "2001-07-01" - } - ], - "enumerationChronology_sort": [ - " 27-2001-07-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 27-2001-07-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-2", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 27 No. 3 (Spring 2001)" - ], - "volumeRaw": [ - "Vol. 27 No. 3" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2001-04-01", - "lte": "2001-04-01" - } - ], - "enumerationChronology_sort": [ - " 27-2001-04-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 27-2001-04-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-1", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 27 No. 2 (Winter 2001)" - ], - "volumeRaw": [ - "Vol. 27 No. 2" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2001-01-01" - } - ], - "enumerationChronology_sort": [ - " 27-2001-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 27-2001-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1031662-0", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "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" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 27 No. 1 (Fall 2000)" - ], - "volumeRaw": [ - "Vol. 27 No. 1" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 27 - } - ], - "dateRange": [ - { - "gte": "2000-10-01", - "lte": "2000-10-01" - } - ], - "enumerationChronology_sort": [ - " 27-2000-10-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297" - }, - "sort": [ - " 27-2000-10-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i34246372", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 27-33, inc. (Fall 2000 - July 2006-June 2007)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 27-33, inc. (Fall 2000 - July 2006-June 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433089464600" - } - ], - "enumerationChronology": [ - "v. 27-33, inc. (Fall 2000 - July 2006-June 2007)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433089464600" - ], - "idBarcode": [ - "33433089464600" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 27, - "lte": 33 - } - ], - "dateRange": [ - { - "gte": "2000", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 27-2000" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000027-33, inc. (Fall 2000 - July 2006-June 2007)" - }, - "sort": [ - " 27-2000" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i11901144", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 25-26 (Fall. 1998-Sum. 2000)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 25-26 (Fall. 1998-Sum. 2000)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031851227" - } - ], - "enumerationChronology": [ - "v. 25-26 (Fall. 1998-Sum. 2000)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433031851227" - ], - "idBarcode": [ - "33433031851227" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 25, - "lte": 26 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "2000" - } - ], - "enumerationChronology_sort": [ - " 25-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000025-26 (Fall. 1998-Sum. 2000)" - }, - "sort": [ - " 25-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i11901143", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 23-24 (Fall. 1996-Sum. 1998)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 23-24 (Fall. 1996-Sum. 1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031851219" - } - ], - "enumerationChronology": [ - "v. 23-24 (Fall. 1996-Sum. 1998)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433031851219" - ], - "idBarcode": [ - "33433031851219" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 23, - "lte": 24 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ - " 23-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000023-24 (Fall. 1996-Sum. 1998)" - }, - "sort": [ - " 23-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i14747357", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 21-22 (Fall. 1994-Sum. 1996)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 21-22 (Fall. 1994-Sum. 1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480177" - } - ], - "enumerationChronology": [ - "v. 21-22 (Fall. 1994-Sum. 1996)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480177" - ], - "idBarcode": [ - "33433062480177" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 21, - "lte": 22 - } - ], - "dateRange": [ - { - "gte": "1994", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ - " 21-1994" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000021-22 (Fall. 1994-Sum. 1996)" - }, - "sort": [ - " 21-1994" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i14747356", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 18-20 (Fall. 1991-Sum. 1994)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 18-20 (Fall. 1991-Sum. 1994)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480169" - } - ], - "enumerationChronology": [ - "v. 18-20 (Fall. 1991-Sum. 1994)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480169" - ], - "idBarcode": [ - "33433062480169" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 18, - "lte": 20 - } - ], - "dateRange": [ - { - "gte": "1991", - "lte": "1994" - } - ], - "enumerationChronology_sort": [ - " 18-1991" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000018-20 (Fall. 1991-Sum. 1994)" - }, - "sort": [ - " 18-1991" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i14747355", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 16-17 (1989-1991)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 16-17 (1989-1991)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480151" - } - ], - "enumerationChronology": [ - "v. 16-17 (1989-1991)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480151" - ], - "idBarcode": [ - "33433062480151" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 16, - "lte": 17 - } - ], - "dateRange": [ - { - "gte": "1989", - "lte": "1991" - } - ], - "enumerationChronology_sort": [ - " 16-1989" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000016-17 (1989-1991)" - }, - "sort": [ - " 16-1989" - ] - }, - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i14747354", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 14-15 (1987-1989)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 14-15 (1987-1989)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480144" - } - ], - "enumerationChronology": [ - "v. 14-15 (1987-1989)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480144" - ], - "idBarcode": [ - "33433062480144" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 15 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " 14-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000014-15 (1987-1989)" - }, - "sort": [ - " 14-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i14747353", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 12-13 (Fall. 1985-Sum. 1987)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 12-13 (Fall. 1985-Sum. 1987)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480136" - } - ], - "enumerationChronology": [ - "v. 12-13 (Fall. 1985-Sum. 1987)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480136" - ], - "idBarcode": [ - "33433062480136" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1987" - } - ], - "enumerationChronology_sort": [ - " 12-1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000012-13 (Fall. 1985-Sum. 1987)" - }, - "sort": [ - " 12-1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i14747352", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 10-11 (1983-1985)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 10-11 (1983-1985)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480128" - } - ], - "enumerationChronology": [ - "v. 10-11 (1983-1985)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480128" - ], - "idBarcode": [ - "33433062480128" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 11 - } - ], - "dateRange": [ - { - "gte": "1983", - "lte": "1985" - } - ], - "enumerationChronology_sort": [ - " 10-1983" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000010-11 (1983-1985)" - }, - "sort": [ - " 10-1983" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i14747351", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 8-9 (1981-1983)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 8-9 (1981-1983)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480110" - } - ], - "enumerationChronology": [ - "v. 8-9 (1981-1983)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480110" - ], - "idBarcode": [ - "33433062480110" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 9 - } - ], - "dateRange": [ - { - "gte": "1981", - "lte": "1983" - } - ], - "enumerationChronology_sort": [ - " 8-1981" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000008-9 (1981-1983)" - }, - "sort": [ - " 8-1981" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i14747350", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 5-7 (Sep. 1978-Sum. 1981)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 5-7 (Sep. 1978-Sum. 1981)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480102" - } - ], - "enumerationChronology": [ - "v. 5-7 (Sep. 1978-Sum. 1981)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480102" - ], - "idBarcode": [ - "33433062480102" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 7 - } - ], - "dateRange": [ - { - "gte": "1978", - "lte": "1981" - } - ], - "enumerationChronology_sort": [ - " 5-1978" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000005-7 (Sep. 1978-Sum. 1981)" - }, - "sort": [ - " 5-1978" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i14747349", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" - } - ], - "holdingLocation_packed": [ - "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" - ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297 v. 2-4 (1975-1978)" - ], - "identifierV2": [ - { - "value": "APR (Clark Co., Wash.) 81-297 v. 2-4 (1975-1978)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062480094" - } - ], - "enumerationChronology": [ - "v. 2-4 (1975-1978)" - ], - "physicalLocation": [ - "APR (Clark Co., Wash.) 81-297" - ], - "identifier": [ - "urn:barcode:33433062480094" - ], - "idBarcode": [ - "33433062480094" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 4 - } - ], - "dateRange": [ - { - "gte": "1975", - "lte": "1978" - } - ], - "enumerationChronology_sort": [ - " 2-1975" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000002-4 (1975-1978)" - }, - "sort": [ - " 2-1975" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10012515", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Numbering", - "label": "Feb.-June 1928 also called year 3.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "no. -123; -June 22, 1928" - ], - "subjectLiteral_exploded": [ - "Jews", - "Jews -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jewish Graphic, Ltd." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1928" - ], - "createdYear": [ - 192 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The Jewish graphic." - ], - "shelfMark": [ - "*ZAN-*P519" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "192" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 192 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-*P519" - }, - { - "type": "nypl:Bnumber", - "value": "10012515" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0140-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0212479" - } - ], - "idOclc": [ - "NYPG0140-S" - ], - "dateEndYear": [ - 1928 - ], - "updatedAt": 1670010190628, - "publicationStatement": [ - "London : Jewish Graphic, Ltd." - ], - "identifier": [ - "urn:bnum:10012515", - "urn:oclc:NYPG0140-S", - "urn:undefined:(WaOLN)nyp0212479" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "192" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jews -- Periodicals." - ], - "titleDisplay": [ - "The Jewish graphic." - ], - "uri": "b10012515", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "42 cm." - ] - }, - "sort": [ - "b10012515" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10006287", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:maf82", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" - ], - "shelfMark": [ - "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)" - ], - "identifierV2": [ - { - "value": "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433092672512" - } - ], - "enumerationChronology": [ - "Sept. 23, 1927-Jun 22, 1928 (Inc.)" - ], - "physicalLocation": [ - "*ZAN-*P519" - ], - "identifier": [ - "urn:barcode:33433092672512" - ], - "idBarcode": [ - "33433092672512" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013199", - "_score": null, - "_source": { - "extent": [ - "1 v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Volume 1 only. No more published.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Administrative agencies", - "Administrative agencies -- Argentina", - "Argentina", - "Argentina -- Politics and government", - "Argentina -- Politics and government -- 1983-" - ], - "publisherLiteral": [ - "Asociación Argentina de Egresados en Ciencias Políticas," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "dateEndString": [ - "999" - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "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]" - ], - "shelfMark": [ - "JLK 86-206" - ], - "creatorLiteral": [ - "Fardeso, José Horacio." - ], - "createdString": [ - "1985" - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLK 86-206" - }, - { - "type": "nypl:Bnumber", - "value": "10013199" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415604" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213163" - } - ], - "dateEndYear": [ - 999 - ], - "updatedAt": 1636094229907, - "publicationStatement": [ - "Buenos Aires : Asociación Argentina de Egresados en Ciencias Políticas, 1985." - ], - "identifier": [ - "urn:bnum:10013199", - "urn:undefined:NNSZ01415604", - "urn:undefined:(WaOLN)nyp0213163" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Administrative agencies -- Argentina.", - "Argentina -- Politics and government -- 1983-" - ], - "titleDisplay": [ - "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] / José Horacio Fardeso." - ], - "uri": "b10013199", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Buenos Aires :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10013199" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433063254944" - ], - "physicalLocation": [ - "JLK 86-206" - ], - "shelfMark_sort": "aJLK 86-206 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14747397", - "shelfMark": [ - "JLK 86-206 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLK 86-206 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433063254944" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433063254944" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013321", - "_score": null, - "_source": { - "extent": [ - "5 v. in 1." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Logic", - "Logic -- Early works to 1800" - ], - "publisherLiteral": [ - "Minerva," - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "dateEndString": [ - "1597" - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Problemata logica. Marburg 1597." - ], - "shelfMark": [ - "JFB 86-112" - ], - "creatorLiteral": [ - "Goclenius, Rudolph, 1547-1628." - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "68110653" - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 86-112" - }, - { - "type": "nypl:Bnumber", - "value": "10013321" - }, - { - "type": "bf:Lccn", - "value": "68110653" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415735" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213284" - } - ], - "dateEndYear": [ - 1597 - ], - "updatedAt": 1636123523500, - "publicationStatement": [ - "Frankfurt, Minerva, 1967." - ], - "identifier": [ - "urn:bnum:10013321", - "urn:lccn:68110653", - "urn:undefined:NNSZ01415735", - "urn:undefined:(WaOLN)nyp0213284" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Logic -- Early works to 1800." - ], - "titleDisplay": [ - "Problemata logica. Marburg 1597." - ], - "uri": "b10013321", - "lccClassification": [ - "BC60 .G62" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Frankfurt," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "15 cm." - ] - }, - "sort": [ - "b10013321" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005151620" - ], - "physicalLocation": [ - "JFB 86-112" - ], - "shelfMark_sort": "aJFB 86-000112", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10006744", - "shelfMark": [ - "JFB 86-112" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFB 86-112" - }, - { - "type": "bf:Barcode", - "value": "33433005151620" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005151620" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013473", - "_score": null, - "_source": { - "extent": [ - "155 p. : ill. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Perspective" - ], - "publisherLiteral": [ - "M. Tavernier," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1643 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "La perspective speculative, et pratique [microform] : ou sont demonstrez les fondemens de cet art, & de tout ce qui en a esté enseigné jusqu'ā present ..." - ], - "shelfMark": [ - "*ZM-189" - ], - "creatorLiteral": [ - "Aleaume, Jacques, -approximately 1627." - ], - "createdString": [ - "1643" - ], - "dateStartYear": [ - 1643 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZM-189" - }, - { - "type": "nypl:Bnumber", - "value": "10013473" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415893" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213436" - } - ], - "updatedAt": 1644357878029, - "publicationStatement": [ - "Paris : M. Tavernier, 1643." - ], - "identifier": [ - "urn:bnum:10013473", - "urn:undefined:NNSZ01415893", - "urn:undefined:(WaOLN)nyp0213436" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1643" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Perspective." - ], - "titleDisplay": [ - "La perspective speculative, et pratique [microform] : ou sont demonstrez les fondemens de cet art, & de tout ce qui en a esté enseigné jusqu'ā present ... / de l'invention du feu sieur Aleaume ..." - ], - "uri": "b10013473", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Paris :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10013473" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10006752", - "shelfMark": [ - "3-MBF (Aleaume, J. Perspective speculative, et pratique)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MBF (Aleaume, J. Perspective speculative, et pratique)" - }, - { - "type": "bf:Barcode", - "value": "33433090700216" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "idBarcode": [ - "33433090700216" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433110386137" - ], - "physicalLocation": [ - "*ZM-189" - ], - "shelfMark_sort": "a*ZM-000189", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10006750", - "shelfMark": [ - "*ZM-189" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZM-189" - }, - { - "type": "bf:Barcode", - "value": "33433110386137" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433110386137" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013537", - "_score": null, - "_source": { - "extent": [ - "12 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Colonies. No. 10.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signatures: A⁶.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Bibliothèque nationale (France). Catalogue de l’histoire de la Révolution française", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Racially mixed people", - "Racially mixed people -- Haiti", - "Racially mixed people -- Haiti -- Early works to 1800", - "Slavery", - "Slavery -- Haiti", - "Slavery -- Haiti -- Early works to 1800", - "Haiti", - "Haiti -- History", - "Haiti -- History -- Revolution, 1791-1804", - "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800", - "Haiti -- Politics and government", - "Haiti -- Politics and government -- Early works to 1800", - "France", - "France -- Administration", - "France -- Administration -- Early works to 1800" - ], - "publisherLiteral": [ - "De l'Imprimerie nationale" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1791 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Opinion de Jean-François Ducos sur l'exécution provisoire du concordat, & des arrêtés de l'Assemblée coloniale confirmatifs de cet accord : imprimée par ordre de l'Assemblée nationale." - ], - "shelfMark": [ - "Sc Rare C 86-7" - ], - "creatorLiteral": [ - "Ducos, Jean François, 1765-1793." - ], - "createdString": [ - "1791" - ], - "contributorLiteral": [ - "France. Assemblée nationale constituante (1789-1791)", - "Imprimerie nationale (France), publisher." - ], - "dateStartYear": [ - 1791 - ], - "donor": [ - "Home to Harlem Project funded by the Andrew W. Mellon Foundation." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare C 86-7" - }, - { - "type": "nypl:Bnumber", - "value": "10013537" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415958" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213499" - } - ], - "updatedAt": 1654777211240, - "publicationStatement": [ - "A Paris : De l'Imprimerie nationale, 1791." - ], - "identifier": [ - "urn:bnum:10013537", - "urn:undefined:NNSZ01415958", - "urn:undefined:(WaOLN)nyp0213499" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1791" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Racially mixed people -- Haiti -- Early works to 1800.", - "Slavery -- Haiti -- Early works to 1800.", - "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800.", - "Haiti -- Politics and government -- Early works to 1800.", - "France -- Administration -- Early works to 1800." - ], - "titleDisplay": [ - "Opinion de Jean-François Ducos sur l'exécution provisoire du concordat, & des arrêtés de l'Assemblée coloniale confirmatifs de cet accord : imprimée par ordre de l'Assemblée nationale." - ], - "uri": "b10013537", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "A Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10013537" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013537-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Opinion+de+Jean-François+Ducos+sur+l'exécution+provisoire+du+concordat,+and+des+arrêtés+de+l'Assemblée+coloniale+confirmatifs+de+cet+accord+:+imprimée+par+ordre+de+l'Assemblée+nationale.&Site=SCHRB&CallNumber=Sc+Rare+C+86-7&Author=Ducos,+Jean+François,&ItemPlace=A+Paris+:&ItemPublisher=De+l'Imprimerie+nationale,&Date=1791.&ItemInfo3=https://catalog.nypl.org/record=b10013537&ReferenceNumber=b100135377&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927121&ItemISxN=i11901189x&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10013537-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901189", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-7" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927121" - } - ], - "physicalLocation": [ - "Sc Rare C 86-7" - ], - "identifier": [ - "urn:barcode:33433036927121" - ], - "idBarcode": [ - "33433036927121" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Opinion+de+Jean-François+Ducos+sur+l'exécution+provisoire+du+concordat,+and+des+arrêtés+de+l'Assemblée+coloniale+confirmatifs+de+cet+accord+:+imprimée+par+ordre+de+l'Assemblée+nationale.&Site=SCHRB&CallNumber=Sc+Rare+C+86-7&Author=Ducos,+Jean+François,&ItemPlace=A+Paris+:&ItemPublisher=De+l'Imprimerie+nationale,&Date=1791.&ItemInfo3=https://catalog.nypl.org/record=b10013537&ReferenceNumber=b100135377&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927121&ItemISxN=i11901189x&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare C 86-000007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013539", - "_score": null, - "_source": { - "extent": [ - "48 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "With a half-title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Avertissement. Quoique le titre de cet ouvrage semble announcer qu'on présentera la situation actuelle de toutes les colonies, je dois cependant prévenir le lecteur que, n'ayant en que des matériaux incomplets, j'ai été forcé pour le moment, de ne parler que de Saint-Domingue.\"--p. [2] (verso of half-title page). ", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signatures: A-C⁸.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Bibliothèque nationale (France). Catalogue de l’histoire de la Révolution française", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "France. Marine", - "France. Marine -- Early works to 1800", - "Racially mixed people", - "Racially mixed people -- Haiti", - "Racially mixed people -- Haiti -- Early works to 1800", - "Haiti", - "Haiti -- History", - "Haiti -- History -- Revolution, 1791-1804", - "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800", - "Haiti -- Politics and government", - "Haiti -- Politics and government -- Early works to 1800" - ], - "publisherLiteral": [ - "de le Imprimerie de L.-P. Couret, rue Christine, no. 2" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1792 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "De l'état actuel de la marine et des colonies" - ], - "shelfMark": [ - "Sc Rare C 86-4" - ], - "creatorLiteral": [ - "Brasseur." - ], - "createdString": [ - "1792" - ], - "contributorLiteral": [ - "Couret de Villeneuve, Louis-Pierre, 1749-1806" - ], - "dateStartYear": [ - 1792 - ], - "donor": [ - "Home to Harlem Project funded by the Andrew W. Mellon Foundation." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare C 86-4" - }, - { - "type": "nypl:Bnumber", - "value": "10013539" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415960" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213501" - } - ], - "updatedAt": 1654777211068, - "publicationStatement": [ - "A Paris : de le Imprimerie de L.-P. Couret, rue Christine, no. 2, 1792." - ], - "identifier": [ - "urn:bnum:10013539", - "urn:undefined:NNSZ01415960", - "urn:undefined:(WaOLN)nyp0213501" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1792" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "France. Marine -- Early works to 1800.", - "Racially mixed people -- Haiti -- Early works to 1800.", - "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800.", - "Haiti -- Politics and government -- Early works to 1800." - ], - "titleDisplay": [ - "De l'état actuel de la marine et des colonies / par M. Le Brasseur, ci-devant intendant-général de la Marine." - ], - "uri": "b10013539", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "A Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10013539" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013539-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+l'état+actuel+de+la+marine+et+des+colonies+/&Site=SCHRB&CallNumber=Sc+Rare+C+86-4&Author=Brasseur.&ItemPlace=A+Paris+:&ItemPublisher=de+le+Imprimerie+de+L.-P.+Couret,+rue+Christine,+no.+2,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013539&ReferenceNumber=b100135390&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927147&ItemISxN=i119011918&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10013539-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901191", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-4" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927147" - } - ], - "physicalLocation": [ - "Sc Rare C 86-4" - ], - "identifier": [ - "urn:barcode:33433036927147" - ], - "idBarcode": [ - "33433036927147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+l'état+actuel+de+la+marine+et+des+colonies+/&Site=SCHRB&CallNumber=Sc+Rare+C+86-4&Author=Brasseur.&ItemPlace=A+Paris+:&ItemPublisher=de+le+Imprimerie+de+L.-P.+Couret,+rue+Christine,+no.+2,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013539&ReferenceNumber=b100135390&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927147&ItemISxN=i119011918&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare C 86-000004" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013540", - "_score": null, - "_source": { - "extent": [ - "7 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Haiti", - "Haiti -- History", - "Haiti -- History -- Revolution, 1791-1804", - "Haiti -- History -- Revolution, 1791-1804 -- Sources" - ], - "publisherLiteral": [ - "De l'Impr. de P.F. Didot le jeune" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1791 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "Sc Rare C 86-3" - ], - "creatorLiteral": [ - "Saint-Domingue. Assemblée générale Commissaires." - ], - "createdString": [ - "1791" - ], - "contributorLiteral": [ - "France. Assemblée nationale législative (1791-1792)" - ], - "dateStartYear": [ - 1791 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare C 86-3" - }, - { - "type": "nypl:Bnumber", - "value": "10013540" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415961" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213502" - } - ], - "updatedAt": 1654777211240, - "publicationStatement": [ - "[Paris?] : De l'Impr. de P.F. Didot le jeune, [1791?]" - ], - "identifier": [ - "urn:bnum:10013540", - "urn:undefined:NNSZ01415961", - "urn:undefined:(WaOLN)nyp0213502" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1791" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Haiti -- History -- Revolution, 1791-1804 -- Sources." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10013540", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Paris?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10013540" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013540-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare+C+86-3&Author=Saint-Domingue.&ItemPlace=[Paris?]+:&ItemPublisher=De+l'Impr.+de+P.F.+Didot+le+jeune,&Date=[1791?]&ItemInfo3=https://catalog.nypl.org/record=b10013540&ReferenceNumber=b100135407&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927154&ItemISxN=i11901192x&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10013540-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901192", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-3" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927154" - } - ], - "physicalLocation": [ - "Sc Rare C 86-3" - ], - "identifier": [ - "urn:barcode:33433036927154" - ], - "idBarcode": [ - "33433036927154" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare+C+86-3&Author=Saint-Domingue.&ItemPlace=[Paris?]+:&ItemPublisher=De+l'Impr.+de+P.F.+Didot+le+jeune,&Date=[1791?]&ItemInfo3=https://catalog.nypl.org/record=b10013540&ReferenceNumber=b100135407&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927154&ItemISxN=i11901192x&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare C 86-000003" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013541", - "_score": null, - "_source": { - "extent": [ - "6, [2] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Imprint from colophon.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"No. 1606\" printed to right of head-piece above caption title. ", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Decree of the National Assembly.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signed on p. 6: Louis. Et plus bas, Roland.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Last [2] p. blank.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signatures: [A]⁴ ([A]4 blank)", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Suffrage", - "Suffrage -- Haiti", - "Suffrage -- Haiti -- Early works to 1800", - "Racially mixed people", - "Racially mixed people -- Civil rights", - "Racially mixed people -- Civil rights -- Haiti", - "Racially mixed people -- Civil rights -- Haiti -- Early works to 1800", - "Black people", - "Black people -- Civil rights", - "Black people -- Civil rights -- Haiti", - "Black people -- Civil rights -- Haiti -- Early works to 1800", - "France", - "France -- Administration", - "France -- Administration -- Early works to 1800", - "Haiti", - "Haiti -- Politics and government", - "Haiti -- Politics and government -- 1791-1804", - "Haiti -- Politics and government -- 1791-1804 -- Early works to 1800", - "France -- Politics and government", - "France -- Politics and government -- 1789-1799", - "France -- Politics and government -- 1789-1799 -- Early works to 1800", - "Haiti -- History", - "Haiti -- History -- Revolution, 1791-1804", - "Haiti -- History -- Revolution, 1791-1804 -- Sources" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Chez Jean-Baptiste Lefranc-Elies, imprimeur de Dép. des Deux Sèvres" - ], - "description": [ - "Concerns suffrage rights given to men of color and free Blacks in all parish assemblies in all of the French West Indian colonies, specifically Saint-Domingue." - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1792 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Loi relative aux colonies, & aux moyens d'y appaiser les troubles : Donnée à Paris, le 4 avril 1792. " - ], - "shelfMark": [ - "Sc Rare+ F 82-68" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "France." - ], - "createdString": [ - "1792" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Roland de La Platière, Jean-Marie, 1734-1793.", - "Lefranc-Elies, Jean-Baptiste, 1764-", - "France. Sovereign (1774-1792 : Louis XVI)", - "France. Assemblée nationale législative (1791-1792)" - ], - "dateStartYear": [ - 1792 - ], - "donor": [ - "Home to Harlem Project funded by the Andrew W. Mellon Foundation." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare+ F 82-68" - }, - { - "type": "nypl:Bnumber", - "value": "10013541" - }, - { - "type": "nypl:Oclc", - "value": "NYPG014000991-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415962" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213503" - } - ], - "idOclc": [ - "NYPG014000991-B" - ], - "updatedAt": 1671650997886, - "publicationStatement": [ - "A Niort : Chez Jean-Baptiste Lefranc-Elies, imprimeur de Dép. des Deux Sèvres, 1792." - ], - "identifier": [ - "urn:bnum:10013541", - "urn:oclc:NYPG014000991-B", - "urn:undefined:NNSZ01415962", - "urn:undefined:(WaOLN)nyp0213503" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1792" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Suffrage -- Haiti -- Early works to 1800.", - "Racially mixed people -- Civil rights -- Haiti -- Early works to 1800.", - "Black people -- Civil rights -- Haiti -- Early works to 1800.", - "France -- Administration -- Early works to 1800.", - "Haiti -- Politics and government -- 1791-1804 -- Early works to 1800.", - "France -- Politics and government -- 1789-1799 -- Early works to 1800.", - "Haiti -- History -- Revolution, 1791-1804 -- Sources." - ], - "titleDisplay": [ - "Loi relative aux colonies, & aux moyens d'y appaiser les troubles : Donnée à Paris, le 4 avril 1792. " - ], - "uri": "b10013541", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "A Niort" - ], - "titleAlt": [ - "Loi relative aux colonies, et aux moyens d'y appaiser les troubles" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10013541" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013541-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Loi+relative+aux+colonies,+and+aux+moyens+d'y+appaiser+les+troubles+:+Donnée+à+Paris,+le+4+avril+1792.+&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-68&Author=France.&ItemPlace=A+Niort+:&ItemPublisher=Chez+Jean-Baptiste+Lefranc-Elies,+imprimeur+de+Dép.+des+Deux+Sèvres,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013541&ReferenceNumber=b100135419&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927162&ItemISxN=i119011931&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10013541-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901193", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare+ F 82-68" - ], - "identifierV2": [ - { - "value": "Sc Rare+ F 82-68", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927162" - } - ], - "physicalLocation": [ - "Sc Rare+ F 82-68" - ], - "identifier": [ - "urn:barcode:33433036927162" - ], - "idBarcode": [ - "33433036927162" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Loi+relative+aux+colonies,+and+aux+moyens+d'y+appaiser+les+troubles+:+Donnée+à+Paris,+le+4+avril+1792.+&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-68&Author=France.&ItemPlace=A+Niort+:&ItemPublisher=Chez+Jean-Baptiste+Lefranc-Elies,+imprimeur+de+Dép.+des+Deux+Sèvres,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013541&ReferenceNumber=b100135419&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927162&ItemISxN=i119011931&Genre=Book-text&Location=Schomburg+Center" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare+ F 82-000068" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013542", - "_score": null, - "_source": { - "extent": [ - "3, [1] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signed at end: Fait à Laon, le 6 Floréal, seconde année républicaine. Signé Lefevre, Président; Lelarge, Regnault, Partis, Caignart, Tranchant, Duchateau, Clouard, administrateurs. Contresigné M. J. J. P. Leleu, Secrétaire-Général du Département.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Pour copie conforme à l'Exemplaire qui nous a été adressé, certifié par l'Administration du Département de l'Aisne.\"--p. [3].", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Imprint from colophon.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At side of title: No. 3443.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Last page blank.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Signatures: [A]²", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Enslaved persons", - "Enslaved persons -- Colonies", - "Enslaved persons -- Colonies -- France", - "Enslaved persons -- Colonies -- France -- Early works to 1800", - "Slavery", - "Slavery -- France", - "Slavery -- France -- Colonies", - "Slavery -- France -- Colonies -- Early works to 1800", - "France", - "France -- Administration", - "France -- Administration -- Early works to 1800", - "France -- Politics and government", - "France -- Politics and government -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "De l'Imprimerie de Veuve Melleville & fils, imprimeurs du Dép. de l'Aisne" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1794 - ], - "dateEndString": [ - "1795" - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "Sc Rare+ F 82-67" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "France. Convention nationale." - ], - "createdString": [ - "1794" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Veuve Melleville & fils, printer." - ], - "dateStartYear": [ - 1794 - ], - "donor": [ - "Home to Harlem Project funded by the Andrew W. Mellon Foundation." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare+ F 82-67" - }, - { - "type": "nypl:Bnumber", - "value": "10013542" - }, - { - "type": "nypl:Oclc", - "value": "NYPG014000992-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415963" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213504" - } - ], - "idOclc": [ - "NYPG014000992-B" - ], - "dateEndYear": [ - 1795 - ], - "updatedAt": 1679123316618, - "publicationStatement": [ - "A Laon : De l'Imprimerie de Veuve Melleville & fils, imprimeurs du Dép. de l'Aisne, An 3 de la Républ. [1794 or 1795]" - ], - "identifier": [ - "urn:bnum:10013542", - "urn:oclc:NYPG014000992-B", - "urn:undefined:NNSZ01415963", - "urn:undefined:(WaOLN)nyp0213504" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1794" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Enslaved persons -- Colonies -- France -- Early works to 1800.", - "Slavery -- France -- Colonies -- Early works to 1800.", - "France -- Administration -- Early works to 1800.", - "France -- Politics and government -- Early works to 1800." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10013542", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "A Laon" - ], - "titleAlt": [ - "Abolit l'esclavage des Nègres dans les colonies." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10013542" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013542-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Decret+de+la+Convention+nationale,+du+16.e+jour+de+pluviôse,+an+2.e+de+la+République+françoise,+une+and+indivisible,+qui+abolit+l'esclavage+des+Nègres+dans+les+colonies.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-67&Author=France.&ItemPlace=A+Laon+:&ItemPublisher=De+l'Imprimerie+de+Veuve+Melleville+and+fils,+imprimeurs+du+Dép.+de+l'Aisne,&Date=An+3+de+la+Républ.+[1794+or+1795]&ItemInfo3=https://catalog.nypl.org/record=b10013542&ReferenceNumber=b100135420&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927170&ItemISxN=i119011943&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10013542-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901194", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare+ F 82-67" - ], - "identifierV2": [ - { - "value": "Sc Rare+ F 82-67", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927170" - } - ], - "physicalLocation": [ - "Sc Rare+ F 82-67" - ], - "identifier": [ - "urn:barcode:33433036927170" - ], - "idBarcode": [ - "33433036927170" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Decret+de+la+Convention+nationale,+du+16.e+jour+de+pluviôse,+an+2.e+de+la+République+françoise,+une+and+indivisible,+qui+abolit+l'esclavage+des+Nègres+dans+les+colonies.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-67&Author=France.&ItemPlace=A+Laon+:&ItemPublisher=De+l'Imprimerie+de+Veuve+Melleville+and+fils,+imprimeurs+du+Dép.+de+l'Aisne,&Date=An+3+de+la+Républ.+[1794+or+1795]&ItemInfo3=https://catalog.nypl.org/record=b10013542&ReferenceNumber=b100135420&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927170&ItemISxN=i119011943&Genre=Book-text&Location=Schomburg+Center" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare+ F 82-000067" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013544", - "_score": null, - "_source": { - "extent": [ - "[23], 334 p., 81 leaves ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Suma del privilegio\" refers to the book under title: De instauranda aethiopum salute. Running title: Tract[atus] de inst[auranda] ethiop[um] sal[ute]", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jesuits", - "Jesuits -- Missions", - "Catholic Church", - "Catholic Church -- Missions", - "Black people", - "Black people -- Missions", - "Black people -- South America", - "Slave-trade", - "Slave-trade -- Africa", - "Africa", - "Africa -- Social life and customs" - ], - "publisherLiteral": [ - "Por Francisco de Lira, impresor" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "createdYear": [ - 1627 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Naturaleza, policia sagrada i profana, costumbres i ritos, disciplina i catechismo evangelico de todos etiopes" - ], - "shelfMark": [ - "Sc Rare F 82-70" - ], - "creatorLiteral": [ - "Sandoval, Alonso de, 1576-1652." - ], - "createdString": [ - "1627" - ], - "dateStartYear": [ - 1627 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare F 82-70" - }, - { - "type": "nypl:Bnumber", - "value": "10013544" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01415965" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213506" - } - ], - "updatedAt": 1654777211068, - "publicationStatement": [ - "En Sevilla : Por Francisco de Lira, impresor, 1627." - ], - "identifier": [ - "urn:bnum:10013544", - "urn:undefined:NNSZ01415965", - "urn:undefined:(WaOLN)nyp0213506" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1627" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jesuits -- Missions.", - "Catholic Church -- Missions.", - "Black people -- Missions.", - "Black people -- South America.", - "Slave-trade -- Africa.", - "Africa -- Social life and customs." - ], - "titleDisplay": [ - "Naturaleza, policia sagrada i profana, costumbres i ritos, disciplina i catechismo evangelico de todos etiopes / por el p. Alonso, de Sandoval ..." - ], - "uri": "b10013544", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "En Sevilla" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "De instauranda aethiopum salute.", - "Tractatus de instauranda ethiopum salute." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10013544" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013544-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Naturaleza,+policia+sagrada+i+profana,+costumbres+i+ritos,+disciplina+i+catechismo+evangelico+de+todos+etiopes+/&Site=SCHRB&CallNumber=Sc+Rare+F+82-70&Author=Sandoval,+Alonso+de,&ItemPlace=En+Sevilla+:&ItemPublisher=Por+Francisco+de+Lira,+impresor,&Date=1627.&ItemInfo3=https://catalog.nypl.org/record=b10013544&ReferenceNumber=b100135444&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927188&ItemISxN=i119011955&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10013544-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901195", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare F 82-70" - ], - "identifierV2": [ - { - "value": "Sc Rare F 82-70", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927188" - } - ], - "physicalLocation": [ - "Sc Rare F 82-70" - ], - "identifier": [ - "urn:barcode:33433036927188" - ], - "idBarcode": [ - "33433036927188" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Naturaleza,+policia+sagrada+i+profana,+costumbres+i+ritos,+disciplina+i+catechismo+evangelico+de+todos+etiopes+/&Site=SCHRB&CallNumber=Sc+Rare+F+82-70&Author=Sandoval,+Alonso+de,&ItemPlace=En+Sevilla+:&ItemPublisher=Por+Francisco+de+Lira,+impresor,&Date=1627.&ItemInfo3=https://catalog.nypl.org/record=b10013544&ReferenceNumber=b100135444&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927188&ItemISxN=i119011955&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare F 82-000070" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013584", - "_score": null, - "_source": { - "extent": [ - "6 v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Seventeen \"books\" in six vols.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Colonization", - "Colonization -- History", - "Commerce", - "Commerce -- History", - "East Indies", - "America", - "America -- Discovery and exploration" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[s.n.]" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "numItemsTotal": [ - 3 - ], - "createdYear": [ - 1770 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Histoire philosophique et politique des établissemens & du commerce des Européens dans les deux Indes." - ], - "shelfMark": [ - "Sc Rare C 86-2" - ], - "numItemVolumesParsed": [ - 3 - ], - "creatorLiteral": [ - "Raynal, abbé (Guillaume-Thomas-François), 1713-1796." - ], - "createdString": [ - "1770" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1770 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare C 86-2" - }, - { - "type": "nypl:Bnumber", - "value": "10013584" - }, - { - "type": "nypl:Oclc", - "value": "NYPG014001035-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01416007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213546" - } - ], - "idOclc": [ - "NYPG014001035-B" - ], - "updatedAt": 1679335512910, - "publicationStatement": [ - "A Amsterdam : [s.n.], 1770." - ], - "identifier": [ - "urn:bnum:10013584", - "urn:oclc:NYPG014001035-B", - "urn:undefined:NNSZ01416007", - "urn:undefined:(WaOLN)nyp0213546" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1770" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Colonization -- History.", - "Commerce -- History.", - "East Indies.", - "America -- Discovery and exploration." - ], - "titleDisplay": [ - "Histoire philosophique et politique des établissemens & du commerce des Européens dans les deux Indes." - ], - "uri": "b10013584", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "A Amsterdam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10013584" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": 1, - "_source": { - "uri": "i10013584-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10013584-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i32196084", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-2 v. 6" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076137243" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], - "identifier": [ - "urn:barcode:33433076137243" - ], - "idBarcode": [ - "33433076137243" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i32196083", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-2 v. 2" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076137235" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], - "identifier": [ - "urn:barcode:33433076137235" - ], - "idBarcode": [ - "33433076137235" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901467", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare C 86-2 v. 1" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927279" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], - "identifier": [ - "urn:barcode:33433036927279" - ], - "idBarcode": [ - "33433036927279" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013594", - "_score": null, - "_source": { - "extent": [ - "20 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Slavery", - "Slavery -- West Indies, British", - "Sugar trade", - "Sugar trade -- West Indies, British" - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1792 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "An Address to Her Royal Highness the Dutchess of York, against the use of sugar." - ], - "shelfMark": [ - "Sc Rare+ G 86-31" - ], - "createdString": [ - "1792" - ], - "contributorLiteral": [ - "Frederica Charlotte Ulrica Catherina, Duchess of York, 1767-1820." - ], - "dateStartYear": [ - 1792 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Rare+ G 86-31" - }, - { - "type": "nypl:Bnumber", - "value": "10013594" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01416017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213556" - } - ], - "updatedAt": 1654777212731, - "publicationStatement": [ - "[London? : s.n.], 1792." - ], - "identifier": [ - "urn:bnum:10013594", - "urn:undefined:NNSZ01416017", - "urn:undefined:(WaOLN)nyp0213556" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1792" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Slavery -- West Indies, British.", - "Sugar trade -- West Indies, British." - ], - "titleDisplay": [ - "An Address to Her Royal Highness the Dutchess of York, against the use of sugar." - ], - "uri": "b10013594", - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[London?" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10013594" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10013594-e", - "electronicLocator": [ - { - "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York,+against+the+use+of+sugar.&Site=SCHRB&CallNumber=Sc+Rare%2b+G+86-31&ItemPlace=[London?+:&ItemPublisher=s.n.],&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013594&ReferenceNumber=b100135948&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927360&ItemISxN=i119014762&Genre=Book-text&Location=Schomburg+Center", - "label": "Request Access to Special Collections Material" - } - ], - "shelfMark_sort": "bi10013594-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11901476", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" - } - ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" - ], - "shelfMark": [ - "Sc Rare+ G 86-31" - ], - "identifierV2": [ - { - "value": "Sc Rare+ G 86-31", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036927360" - } - ], - "physicalLocation": [ - "Sc Rare+ G 86-31" - ], - "identifier": [ - "urn:barcode:33433036927360" - ], - "idBarcode": [ - "33433036927360" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York,+against+the+use+of+sugar.&Site=SCHRB&CallNumber=Sc+Rare%2b+G+86-31&ItemPlace=[London?+:&ItemPublisher=s.n.],&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013594&ReferenceNumber=b100135948&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927360&ItemISxN=i119014762&Genre=Book-text&Location=Schomburg+Center" - ], - "shelfMark_sort": "aSc Rare+ G 86-000031" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013625", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Magazine for Filipinos.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Vol. 8, no. 1 (Oct. 1978)-" - ], - "subjectLiteral_exploded": [ - "Filipino Americans", - "Filipino Americans -- Periodicals", - "Philippines", - "Philippines -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ningas Corp." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "19" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ningas." - ], - "shelfMark": [ - "JFM 85-295" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "1978" - ], - "idIssn": [ - "0164-6966" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFM 85-295" - }, - { - "type": "nypl:Bnumber", - "value": "10013625" - }, - { - "type": "bf:Issn", - "value": "0164-6966" - }, - { - "type": "nypl:Oclc", - "value": "4417290" - }, - { - "type": "nypl:Oclc", - "value": "4417290" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0144-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213587" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)4417290" - } - ], - "idOclc": [ - "4417290", - "NYPG0144-S" - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1669926832642, - "publicationStatement": [ - "New York : Ningas Corp., 1978-" - ], - "identifier": [ - "urn:bnum:10013625", - "urn:issn:0164-6966", - "urn:oclc:4417290", - "urn:oclc:NYPG0144-S", - "urn:undefined:(WaOLN)nyp0213587", - "urn:undefined:(OCoLC)4417290" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Filipino Americans -- Periodicals.", - "Philippines -- Periodicals." - ], - "titleDisplay": [ - "Ningas." - ], - "uri": "b10013625", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10013625" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10006769", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JFM 85-295 v. 8 oct 1978- ma y1979" - ], - "identifierV2": [ - { - "value": "JFM 85-295 v. 8 oct 1978- ma y1979", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005091180" - } - ], - "enumerationChronology": [ - "v. 8 oct 1978- ma y1979" - ], - "physicalLocation": [ - "JFM 85-295" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005091180" - ], - "idBarcode": [ - "33433005091180" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "enumerationChronology_sort": [ - " 8-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFM 85-295 v. 000008 oct 1978- ma y1979" - }, - "sort": [ - " 8-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013626", - "_score": null, - "_source": { - "extent": [ - "v. : ill., plans ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Edited by M. Bontempelli and P.M. Bardi.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "3 (luglio [1933])-" - ], - "subjectLiteral_exploded": [ - "Architecture", - "Architecture -- Italy", - "Architecture -- Italy -- Periodicals", - "Fascism and architecture", - "Fascism and architecture -- Italy", - "Fascism and architecture -- Italy -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[s.n.]" - ], - "language": [ - { - "id": "lang:ita", - "label": "Italian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1933 - ], - "dateEndString": [ - "19" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Quadrante" - ], - "shelfMark": [ - "*ZAN-M114" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1933" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Bontempelli, Massimo, 1878-1960.", - "Bardi, P. M. (Pietro Maria), 1900-" - ], - "dateStartYear": [ - 1933 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-M114" - }, - { - "type": "nypl:Bnumber", - "value": "10013626" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0145-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213588" - } - ], - "idOclc": [ - "NYPG0145-S" - ], - "uniformTitle": [ - "Quadrante (Milan, Italy)" - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1669925121957, - "publicationStatement": [ - "Milano : [s.n.], 1933-" - ], - "identifier": [ - "urn:bnum:10013626", - "urn:oclc:NYPG0145-S", - "urn:undefined:(WaOLN)nyp0213588" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1933" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Architecture -- Italy -- Periodicals.", - "Fascism and architecture -- Italy -- Periodicals." - ], - "titleDisplay": [ - "Quadrante [microform]." - ], - "uri": "b10013626", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Milano" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10013626" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30719650", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-M114 July 1933-July/Aug. 1935, inc." - ], - "identifierV2": [ - { - "value": "*ZAN-M114 July 1933-July/Aug. 1935, inc.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110459025" - } - ], - "enumerationChronology": [ - "July 1933-July/Aug. 1935, inc." - ], - "physicalLocation": [ - "*ZAN-M114" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110459025" - ], - "idBarcode": [ - "33433110459025" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-M114 July 1933-July/Aug. 1935, inc." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013628", - "_score": null, - "_source": { - "extent": [ - "13 v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Description based on: Vol. 1, no. 22 (July 21, 1977).", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Vol. 4, no. 24 repeated in numbering.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "-v. 13, no. 27 (May 22, 1989)." - ], - "subjectLiteral_exploded": [ - "Savings and loan associations", - "Savings and loan associations -- United States", - "Savings and loan associations -- United States -- Periodicals" - ], - "numItemDatesParsed": [ - 17 - ], - "publisherLiteral": [ - "National Thrift News" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 17 - ], - "createdYear": [ - 198 - ], - "dateEndString": [ - "1989" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "National thrift news" - ], - "shelfMark": [ - "*ZAN-T5363" - ], - "numItemVolumesParsed": [ - 15 - ], - "createdString": [ - "198" - ], - "idLccn": [ - "79005118 /sn" - ], - "idIssn": [ - "0193-287X" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 198 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-T5363" - }, - { - "type": "nypl:Bnumber", - "value": "10013628" - }, - { - "type": "bf:Issn", - "value": "0193-287X" - }, - { - "type": "bf:Lccn", - "value": "79005118 /sn" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0147-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213589" - } - ], - "idOclc": [ - "NYPG0147-S" - ], - "dateEndYear": [ - 1989 - ], - "updatedAt": 1675269962602, - "publicationStatement": [ - "New York : National Thrift News, -1989." - ], - "identifier": [ - "urn:bnum:10013628", - "urn:issn:0193-287X", - "urn:lccn:79005118 /sn", - "urn:oclc:NYPG0147-S", - "urn:undefined:(WaOLN)nyp0213589" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "198" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Savings and loan associations -- United States -- Periodicals." - ], - "titleDisplay": [ - "National thrift news [microform]." - ], - "uri": "b10013628", - "numItems": [ - 17 - ], - "numAvailable": [ - 17 - ], - "placeOfPublication": [ - "New York" - ], - "titleAlt": [ - "National thrift news" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "43 cm." - ] - }, - "sort": [ - "b10013628" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 17, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i14747442", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "shelfMark": [ - "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062614056" - } - ], - "enumerationChronology": [ - "v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "identifier": [ - "urn:barcode:33433062614056" - ], - "idBarcode": [ - "33433062614056" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " 13-1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013, no. 1-27 (Oct. 1988-May 22, 1989)" - }, - "sort": [ - " 13-1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i27646161", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588832" - } - ], - "enumerationChronology": [ - "v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588832" - ], - "idBarcode": [ - "33433093588832" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " 13-1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013, Issue 1-27, Oct. (1988) - May 22 (1989)" - }, - "sort": [ - " 13-1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i14747445", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "shelfMark": [ - "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062614098" - } - ], - "enumerationChronology": [ - "v. 13 (Oct. 3, 1988-May 22, 1989)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "identifier": [ - "urn:barcode:33433062614098" - ], - "idBarcode": [ - "33433062614098" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " 13-1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013 (Oct. 3, 1988-May 22, 1989)" - }, - "sort": [ - " 13-1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i27646727", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588709" - } - ], - "enumerationChronology": [ - "v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588709" - ], - "idBarcode": [ - "33433093588709" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 12-1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000012 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" - }, - "sort": [ - " 12-1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i14747444", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "shelfMark": [ - "*ZAN-T5363 v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062614080" - } - ], - "enumerationChronology": [ - "v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "identifier": [ - "urn:barcode:33433062614080" - ], - "idBarcode": [ - "33433062614080" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 12, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 12-1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000012 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" - }, - "sort": [ - " 12-1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i27646717", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588717" - } - ], - "enumerationChronology": [ - "v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588717" - ], - "idBarcode": [ - "33433093588717" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 11-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000011-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" - }, - "sort": [ - " 11-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i14747443", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mai82||Schwarzman Building M1 - Microforms Room 315" - ], - "shelfMark": [ - "*ZAN-T5363 v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433062614072" - } - ], - "enumerationChronology": [ - "v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "identifier": [ - "urn:barcode:33433062614072" - ], - "idBarcode": [ - "33433062614072" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 12 - } - ], - "dateRange": [ - { - "gte": "1987", - "lte": "1988" - } - ], - "enumerationChronology_sort": [ - " 11-1987" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000011-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" - }, - "sort": [ - " 11-1987" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i27646742", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588667" - } - ], - "enumerationChronology": [ - "v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588667" - ], - "idBarcode": [ - "33433093588667" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1986" - } - ], - "enumerationChronology_sort": [ - " 10-1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000010, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" - }, - "sort": [ - " 10-1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i27646739", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 9-10, Mar. 4 - Dec. 9 (1985)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 9-10, Mar. 4 - Dec. 9 (1985)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588675" - } - ], - "enumerationChronology": [ - "v. 9-10, Mar. 4 - Dec. 9 (1985)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588675" - ], - "idBarcode": [ - "33433093588675" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 10 - } - ], - "dateRange": [ - { - "gte": "1985", - "lte": "1985" - } - ], - "enumerationChronology_sort": [ - " 9-1985" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000009-10, Mar. 4 - Dec. 9 (1985)" - }, - "sort": [ - " 9-1985" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i27646735", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588683" - } - ], - "enumerationChronology": [ - "v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588683" - ], - "idBarcode": [ - "33433093588683" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 9 - } - ], - "dateRange": [ - { - "gte": "1984", - "lte": "1985" - } - ], - "enumerationChronology_sort": [ - " 8-1984" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000008-9, July 9 (1984) - Feb. 25 (1985) Incomplete" - }, - "sort": [ - " 8-1984" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i27646705", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588915" - } - ], - "enumerationChronology": [ - "v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588915" - ], - "idBarcode": [ - "33433093588915" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "dateRange": [ - { - "gte": "1983", - "lte": "1984" - } - ], - "enumerationChronology_sort": [ - " 8-1983" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000008, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" - }, - "sort": [ - " 8-1983" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i27646653", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 6, Feb. 1 - Sep. 20 (1982)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 6, Feb. 1 - Sep. 20 (1982)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588956" - } - ], - "enumerationChronology": [ - "v. 6, Feb. 1 - Sep. 20 (1982)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588956" - ], - "idBarcode": [ - "33433093588956" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "dateRange": [ - { - "gte": "1982", - "lte": "1982" - } - ], - "enumerationChronology_sort": [ - " 6-1982" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000006, Feb. 1 - Sep. 20 (1982)" - }, - "sort": [ - " 6-1982" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i27646643", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588824" - } - ], - "enumerationChronology": [ - "v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588824" - ], - "idBarcode": [ - "33433093588824" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 6 - } - ], - "dateRange": [ - { - "gte": "1980", - "lte": "1982" - } - ], - "enumerationChronology_sort": [ - " 5-1980" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000005-6, Sep. 25 (1980) - Jan. 25 (1982)" - }, - "sort": [ - " 5-1980" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i27646682", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 3-4, July 5 (1979) - Sep. 22 (1980)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 3-4, July 5 (1979) - Sep. 22 (1980)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588931" - } - ], - "enumerationChronology": [ - "v. 3-4, July 5 (1979) - Sep. 22 (1980)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588931" - ], - "idBarcode": [ - "33433093588931" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 4 - } - ], - "dateRange": [ - { - "gte": "1979", - "lte": "1980" - } - ], - "enumerationChronology_sort": [ - " 3-1979" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000003-4, July 5 (1979) - Sep. 22 (1980)" - }, - "sort": [ - " 3-1979" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i27646662", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 v. 1-3, July 21 (1977) - June 21 (1979)" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 1-3, July 21 (1977) - June 21 (1979)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588949" - } - ], - "enumerationChronology": [ - "v. 1-3, July 21 (1977) - June 21 (1979)" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588949" - ], - "idBarcode": [ - "33433093588949" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 3 - } - ], - "dateRange": [ - { - "gte": "1977", - "lte": "1979" - } - ], - "enumerationChronology_sort": [ - " 1-1977" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000001-3, July 21 (1977) - June 21 (1979)" - }, - "sort": [ - " 1-1977" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i27646732", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588691" - } - ], - "enumerationChronology": [ - "Oct. 3 (1988) - May 22 (1989) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588691" - ], - "idBarcode": [ - "33433093588691" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1988", - "lte": "1989" - } - ], - "enumerationChronology_sort": [ - " -1988" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete" - }, - "sort": [ - " -1988" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i27646689", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433093588923" - } - ], - "enumerationChronology": [ - "Sep. 27 (1982) - Sep. 26 (1983) Incomplete" - ], - "physicalLocation": [ - "*ZAN-T5363" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433093588923" - ], - "idBarcode": [ - "33433093588923" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dateRange": [ - { - "gte": "1982", - "lte": "1983" - } - ], - "enumerationChronology_sort": [ - " -1982" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete" - }, - "sort": [ - " -1982" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013630", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Music", - "Music -- Periodicals", - "Music, Latvian", - "Music, Latvian -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Latvijas muziku biedrība" - ], - "language": [ - { - "id": "lang:lav", - "label": "Latvian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "19" - ], - "createdYear": [ - 19 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Latvijas muzikis" - ], - "shelfMark": [ - "*ZAN-*Q1241" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "19" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Latvijas muziku biedrība." - ], - "dateStartYear": [ - 19 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZAN-*Q1241" - }, - { - "type": "nypl:Bnumber", - "value": "10013630" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0149-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213591" - } - ], - "idOclc": [ - "NYPG0149-S" - ], - "dateEndYear": [ - 19 - ], - "updatedAt": 1670258371750, - "publicationStatement": [ - "Riga : Latvijas muziku biedrība" - ], - "identifier": [ - "urn:bnum:10013630", - "urn:oclc:NYPG0149-S", - "urn:undefined:(WaOLN)nyp0213591" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "19" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Music -- Periodicals.", - "Music, Latvian -- Periodicals." - ], - "titleDisplay": [ - "Latvijas muzikis [microform]." - ], - "uri": "b10013630", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Riga" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10013630" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i30780148", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "shelfMark": [ - "*ZAN-*Q1241 1929-May 1934" - ], - "identifierV2": [ - { - "value": "*ZAN-*Q1241 1929-May 1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433110389370" - } - ], - "enumerationChronology": [ - "1929-May 1934" - ], - "physicalLocation": [ - "*ZAN-*Q1241" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433110389370" - ], - "idBarcode": [ - "33433110389370" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ZAN-*Q1241 1929-May 001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013632", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1-" - ], - "subjectLiteral_exploded": [ - "American poetry", - "American poetry -- Women authors", - "American poetry -- Women authors -- Periodicals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Brainchild Collective" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brainchild." - ], - "shelfMark": [ - "JFK 81-88" - ], - "numItemVolumesParsed": [ - 1 - ], - "createdString": [ - "999" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brainchild Collective (Springfield, Ill.)" - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 81-88" - }, - { - "type": "nypl:Bnumber", - "value": "10013632" - }, - { - "type": "nypl:Oclc", - "value": "NYPG015-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213593" - } - ], - "idOclc": [ - "NYPG015-S" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1670011705835, - "publicationStatement": [ - "[Springfield, Ill. : Brainchild Collective, 197?- ]" - ], - "identifier": [ - "urn:bnum:10013632", - "urn:oclc:NYPG015-S", - "urn:undefined:(WaOLN)nyp0213593" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "American poetry -- Women authors -- Periodicals." - ], - "titleDisplay": [ - "Brainchild." - ], - "uri": "b10013632", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Springfield, Ill." - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10013632" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10006770", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JFK 81-88 v. 2-4" - ], - "identifierV2": [ - { - "value": "JFK 81-88 v. 2-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005347897" - } - ], - "enumerationChronology": [ - "v. 2-4" - ], - "physicalLocation": [ - "JFK 81-88" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005347897" - ], - "idBarcode": [ - "33433005347897" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFK 81-88 v. 000002-4" - }, - "sort": [ - " 2-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10013633", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "1981-" - ], - "subjectLiteral_exploded": [ - "Statesmen", - "Statesmen -- Directories", - "International agencies", - "International agencies -- Directories" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lambert Publications" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 3 - ], - "dateEndString": [ - "198" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Lambert's worldwide government directory with inter-governmental organizations." - ], - "shelfMark": [ - "JLM 81-504" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1981" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JLM 81-504" - }, - { - "type": "nypl:Bnumber", - "value": "10013633" - }, - { - "type": "nypl:Oclc", - "value": "7426456" - }, - { - "type": "nypl:Oclc", - "value": "7426456" - }, - { - "type": "nypl:Oclc", - "value": "NYPG0150-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0213594" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)7426456" - }, - { - "type": "bf:Identifier", - "value": "RCON-EPA" - } - ], - "idOclc": [ - "7426456", - "NYPG0150-S" - ], - "dateEndYear": [ - 198 - ], - "updatedAt": 1669918511723, - "publicationStatement": [ - "Washington : Lambert Publications, 1981-" - ], - "identifier": [ - "urn:bnum:10013633", - "urn:oclc:7426456", - "urn:oclc:NYPG0150-S", - "urn:undefined:(WaOLN)nyp0213594", - "urn:undefined:(OCoLC)7426456", - "urn:undefined:RCON-EPA" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Statesmen -- Directories.", - "International agencies -- Directories." - ], - "titleDisplay": [ - "Lambert's worldwide government directory with inter-governmental organizations." - ], - "uri": "b10013633", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Washington" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "titleAlt": [ - "Worldwide government directory with inter-governmental organizations" - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10013633" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i12540645", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-504 1984" - ], - "identifierV2": [ - { - "value": "JLM 81-504 1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019909617" - } - ], - "enumerationChronology": [ - "1984" - ], - "physicalLocation": [ - "JLM 81-504" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433019909617" - ], - "idBarcode": [ - "33433019909617" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-504 001984" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i12540644", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-504 1982" - ], - "identifierV2": [ - { - "value": "JLM 81-504 1982", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019909609" - } - ], - "enumerationChronology": [ - "1982" - ], - "physicalLocation": [ - "JLM 81-504" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433019909609" - ], - "idBarcode": [ - "33433019909609" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-504 001982" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540643", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "JLM 81-504 1981" - ], - "identifierV2": [ - { - "value": "JLM 81-504 1981", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433019909591" - } - ], - "enumerationChronology": [ - "1981" - ], - "physicalLocation": [ - "JLM 81-504" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433019909591" - ], - "idBarcode": [ - "33433019909591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJLM 81-504 001981" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-b7376b6a73076f225ec5c02b314cb34d.json b/test/fixtures/query-b7376b6a73076f225ec5c02b314cb34d.json new file mode 100644 index 00000000..f220cf85 --- /dev/null +++ b/test/fixtures/query-b7376b6a73076f225ec5c02b314cb34d.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 60, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.442222, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 15.442222, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:10 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"44455533322211\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"44455533322211\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\",\"items.idBarcode\"],\"query\":\"44455533322211\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1066" + }, + "timeout": 30000 + }, + "options": {}, + "id": 60 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-b7681fefd657539ea771ca2ce9ee66f3.json b/test/fixtures/query-b7681fefd657539ea771ca2ce9ee66f3.json new file mode 100644 index 00000000..dfcc831c --- /dev/null +++ b/test/fixtures/query-b7681fefd657539ea771ca2ce9ee66f3.json @@ -0,0 +1,62 @@ +{ + "body": { + "took": 51, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:54 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "123", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"query_string\":{\"fields\":[\"title^5\",\"title.folded^2\",\"description.folded\",\"subjectLiteral^2\",\"subjectLiteral.folded\",\"creatorLiteral^2\",\"creatorLiteral.folded\",\"contributorLiteral.folded\",\"note.label.folded\",\"publisherLiteral.folded\",\"seriesStatement.folded\",\"titleAlt.folded\",\"titleDisplay.folded\",\"contentsTitle.folded\",\"donor.folded\",\"parallelTitle.folded^5\",\"parallelTitleDisplay.folded\",\"parallelTitleAlt.folded\",\"parallelSeriesStatement.folded\",\"parallelCreatorLiteral.folded\",\"parallelPublisher\"],\"query\":\"fladeedle\",\"default_operator\":\"AND\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1146" + }, + "timeout": 30000 + }, + "options": {}, + "id": 12 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-b85578028da1324e5ebd99def98866e7.json b/test/fixtures/query-b85578028da1324e5ebd99def98866e7.json deleted file mode 100644 index 8586454d..00000000 --- a/test/fixtures/query-b85578028da1324e5ebd99def98866e7.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "took": 115, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 121.44818, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b13627363", - "_score": 121.44818, - "_source": { - "extent": [ - "128 p. illus." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cats", - "Cats -- Pictorial works" - ], - "publisherLiteral": [ - "Creative age press, inc." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1947 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cats, cats, & cats" - ], - "shelfMark": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "creatorLiteral": [ - "Rice, Edward, 1917-" - ], - "createdString": [ - "1947" - ], - "idLccn": [ - "agr47000211" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gleason, Jean, 1917-" - ], - "dateStartYear": [ - 1947 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VPS (Rice, E. Cats, cats, & cats)" - }, - { - "type": "nypl:Bnumber", - "value": "13627363" - }, - { - "type": "bf:Lccn", - "value": "agr47000211" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3600714" - } - ], - "updatedAt": 1659488510917, - "publicationStatement": [ - "New York, Creative age press, inc. [c1947]" - ], - "identifier": [ - "urn:bnum:13627363", - "urn:lccn:agr47000211", - "urn:undefined:(WaOLN)nyp3600714" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1947" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cats.", - "Cats -- Pictorial works." - ], - "titleDisplay": [ - "Cats, cats, & cats, by Edward Rice and Jean Gleason." - ], - "uri": "b13627363", - "lccClassification": [ - "SF447 .R5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10754478", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "identifierV2": [ - { - "value": "VPS (Rice, E. Cats, cats, & cats)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433006598316" - } - ], - "physicalLocation": [ - "VPS (Rice, E. Cats, cats, & cats)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433006598316" - ], - "idBarcode": [ - "33433006598316" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aVPS (Rice, E. Cats, cats, & cats)" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json b/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json index bbbb46db..50b00064 100644 --- a/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json +++ b/test/fixtures/query-b8e8618ef319b1bd53783dcd19ee846b.json @@ -1,32 +1,80 @@ { - "took": 4, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 0, - "hits": [] - }, - "aggregations": { - "statuses": { - "doc_count": 5, - "nonrecap_statuses": { - "doc_count": 2, - "nonrecap_status_buckets": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] + "body": { + "took": 1, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 0, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 5, + "nonrecap_statuses": { + "doc_count": 2, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 1 + } + ] + } } } } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "341", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":0,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b14937001\"}}]}},\"_source\":{\"includes\":[\"uri\"]},\"aggs\":{\"statuses\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"nonrecap_statuses\":{\"filter\":{\"bool\":{\"must_not\":{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}}}},\"aggs\":{\"nonrecap_status_buckets\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "347" + }, + "timeout": 30000 + }, + "options": {}, + "id": 22 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json b/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json index 7feb9f5b..b428b8ba 100644 --- a/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json +++ b/test/fixtures/query-bc4f4f8e4e3a1348da83546b2b0806ec.json @@ -1,569 +1,612 @@ { - "took": 19, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.492526, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b13966759", - "_score": 15.492526, - "_source": { - "extent": [ - "418 p. : ill., facsims., ports. ;" - ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "‏תל אביב : ועד ארגון יוצאי חורוסטוב בישראל, 8691." - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "‏תל אביב" - } - ], - "note": [ - { - "noteType": "Language", - "label": "Hebrew orYiddish.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jews", - "Jews -- Khorostkov", - "Jews -- Khorostkov -- History", - "Holocaust, Jewish (1939-1945)", - "Holocaust, Jewish (1939-1945) -- Khorostkov", - "Khorostkov (Ukraine)", - "Khorostkov (Ukraine) -- Ethnic relations" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel" - ], - "parallelPublisherLiteral": [ - "‏ועד ארגון יוצאי חורוסטוב בישראל" - ], - "language": [ - { - "id": "lang:heb", - "label": "Hebrew" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏ספר חורוסטוב = Chrostkow book" - ], - "title": [ - "Sefer Ḥorosṭḳov = Chorostkow book" - ], - "shelfMark": [ - "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "he 68003086" - ], - "numElectronicResources": [ - 2 - ], - "contributorLiteral": [ - "Sztokfisz, David." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" - }, - { - "type": "nypl:Bnumber", - "value": "13966759" - }, - { - "type": "bf:Lccn", - "value": "he 68003086" - }, - { - "type": "nypl:Oclc", - "value": "19207169" - }, - { - "type": "nypl:Oclc", - "value": "19207169" + "body": { + "took": 14, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.044935, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b13966759", + "_score": 15.044935, + "_source": { + "extent": [ + "418 p. : ill., facsims., ports. ;" + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "‏תל אביב : ועד ארגון יוצאי חורוסטוב בישראל, 8691." + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "‏תל אביב" + }, + { + "fieldName": "note", + "index": 0, + "value": "\"הערות ומקורות\": p.19-20." + } + ], + "note": [ + { + "noteType": "Note", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Hebrew orYiddish.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jews", + "Jews -- Ukraine", + "Jews -- Ukraine -- Khorostkov", + "Jews -- Ukraine -- Khorostkov -- History", + "Holocaust, Jewish (1939-1945)", + "Holocaust, Jewish (1939-1945) -- Ukraine", + "Holocaust, Jewish (1939-1945) -- Ukraine -- Khorostkov", + "Khorostkov (Ukraine)", + "Khorostkov (Ukraine) -- Ethnic relations" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel" + ], + "parallelPublisherLiteral": [ + "‏ועד ארגון יוצאי חורוסטוב בישראל" + ], + "language": [ + { + "id": "lang:heb", + "label": "Hebrew" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1968 + ], + "parallelTitle": [ + "‏ספר חורוסטוב = Chrostkow book" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sefer Ḥorosṭḳov = Chorostkow book" + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "he 68003086" + ], + "numElectronicResources": [ + 2 + ], + "contributorLiteral": [ + "Sztokfisz, David." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)" + }, + { + "type": "nypl:Bnumber", + "value": "13966759" + }, + { + "type": "nypl:Oclc", + "value": "19207169" + }, + { + "type": "nypl:Oclc", + "value": "NYPH98-B4722" + }, + { + "type": "bf:Lccn", + "value": "he 68003086" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0553876" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)19207169" + } + ], + "idOclc": [ + "19207169", + "NYPH98-B4722" + ], + "updatedAt": 1706899940670, + "parallelTitleAlt": [ + "‏חורוסטקוב; ספר-זכרון" + ], + "publicationStatement": [ + "Tel Aviv : Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel, 1968." + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Ḥorosṭḳov. 1968)", + "urn:bnum:13966759", + "urn:oclc:19207169", + "urn:oclc:NYPH98-B4722", + "urn:lccn:he 68003086", + "urn:identifier:(WaOLN)nyp0553876", + "urn:identifier:(OCoLC)19207169" + ], + "genreForm": [ + "Memorial books (Holocaust)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews -- Ukraine -- Khorostkov -- History.", + "Holocaust, Jewish (1939-1945) -- Ukraine -- Khorostkov.", + "Khorostkov (Ukraine) -- Ethnic relations." + ], + "titleDisplay": [ + "Sefer Ḥorosṭḳov = Chorostkow book / ha-ʻorekh, Daṿid Shṭoḳfish." + ], + "uri": "b13966759", + "lccClassification": [ + "DS135.R93 K42 1968" + ], + "parallelContributorLiteral": [ + "‏שטאקפיש, דוד." + ], + "electronicResources": [ + { + "label": "NYPL Digital Collections", + "url": "https://digitalcollections.nypl.org/items/f9706f90-64a7-0133-547d-00505686a51c" + }, + { + "label": "Yiddish Book Center", + "url": "https://www.yiddishbookcenter.org/collections/yizkor-books/yzk-nybc313724" + } + ], + "parallelTitleDisplay": [ + "‏ספר חורוסטוב = Chrostkow book / העורך, דוד שטאקפיש." + ], + "placeOfPublication": [ + "Tel Aviv" + ], + "titleAlt": [ + "Horosṭḳov; sefer zikaron" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "nypl:Oclc", - "value": "NYPH98-B4722" + "allItems": { + "hits": { + "total": 2, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + } + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maff3", + "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" + ], + "idBarcode": [ + "33433084745110" + ], + "identifier": [ + "urn:shelfmark:Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "urn:barcode:33433084745110" + ], + "identifierV2": [ + { + "value": "Desk-JWS (Yizkor books. Reprint. Khorostkov)", + "type": "bf:ShelfMark" + }, + { + "value": "33433084745110", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "requestable": [ + false + ], + "shelfMark": [ + "Desk-JWS (Yizkor books. Reprint. Khorostkov)" + ], + "shelfMark_sort": "aDesk-JWS (Yizkor books. Reprint. Khorostkov)", + "status": [ + { + "id": "status:o", + "label": "Use in library" + } + ], + "status_packed": [ + "status:o||Use in library" + ], + "type": [ + "bf:Item" + ], + "uri": "i25791623" + } + } + ] + } }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:65||book, good condition, non-MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "identifier": [ + "urn:shelfmark:*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "identifierV2": [ + { + "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "type": "bf:ShelfMark" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PXW (Khorostkov) (Sefer Horostkov. 1968)" + ], + "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16894049" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0553876" + "key": "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111", + "doc_count": 1 }, { - "type": "bf:Identifier", - "value": "(OCoLC)19207169" + "key": "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111", + "doc_count": 1 } - ], - "idOclc": [ - "19207169", - "NYPH98-B4722" - ], - "updatedAt": 1678659577819, - "parallelTitleAlt": [ - "‏חורוסטקוב; ספר-זכרון" - ], - "publicationStatement": [ - "Tel Aviv : Ṿaʻad irgun yotsʼe Ḥorosṭḳov be-Yiśraʼel, 1968." - ], - "identifier": [ - "urn:bnum:13966759", - "urn:lccn:he 68003086", - "urn:oclc:19207169", - "urn:oclc:NYPH98-B4722", - "urn:undefined:(WaOLN)nyp0553876", - "urn:undefined:(OCoLC)19207169" - ], - "genreForm": [ - "Memorial books (Holocaust)" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "carriertypes:nc", - "label": "volume" + "key": "Text", + "doc_count": 2 } - ], - "dateString": [ - "1968" - ], - "mediaType": [ + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jews -- Khorostkov -- History.", - "Holocaust, Jewish (1939-1945) -- Khorostkov.", - "Khorostkov (Ukraine) -- Ethnic relations." - ], - "titleDisplay": [ - "Sefer Ḥorosṭḳov = Chorostkow book / ha-ʻorekh, Daṿid Shṭoḳfish." - ], - "uri": "b13966759", - "lccClassification": [ - "DS135.R93 K42 1968" - ], - "parallelContributorLiteral": [ - "‏שטאקפיש, דוד." - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "parallelTitleDisplay": [ - "‏ספר חורוסטוב = Chrostkow book / העורך, דוד שטאקפיש." - ], - "placeOfPublication": [ - "Tel Aviv" - ], - "titleAlt": [ - "Horosṭḳov; sefer zikaron" - ], - "issuance": [ + "key": "status:a||Available", + "doc_count": 1 + }, { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:o||Use in library", + "doc_count": 1 } - ], - "dimensions": [ - "25 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i13966759-e", - "electronicLocator": [ - { - "url": "https://digitalcollections.nypl.org/items/f9706f90-64a7-0133-547d-00505686a51c", - "label": "NYPL Digital Collections" - }, - { - "url": "https://www.yiddishbookcenter.org/collections/yizkor-books/yzk-nybc313724", - "label": "Yiddish Book Center" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi13966759-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i16894049", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:maf82", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" - ], - "shelfMark": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" - ], - "identifierV2": [ - { - "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)" - }, - "sort": [ - null - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": 2, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i16894049", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:maf82", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" - ], - "shelfMark": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" - ], - "identifierV2": [ - { - "value": "*PXW (Khorostkov) (Sefer Horostkov. 1968)", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*PXW (Khorostkov) (Sefer Horostkov. 1968)" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*PXW (Khorostkov) (Sefer Horostkov. 1968)" - } - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": 1, - "_source": { - "uri": "i25791623", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:maff3", - "label": "Schwarzman Building - Dorot Jewish Division Desk Room 111" - } - ], - "holdingLocation_packed": [ - "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111" - ], - "shelfMark": [ - "*P (Yizkor books. Reprint. Khorostkov)" - ], - "identifierV2": [ - { - "value": "*P (Yizkor books. Reprint. Khorostkov)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433084745110" - } - ], - "physicalLocation": [ - "*P (Yizkor books. Reprint. Khorostkov)" - ], - "identifier": [ - "urn:barcode:33433084745110" - ], - "idBarcode": [ - "33433084745110" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*P (Yizkor books. Reprint. Khorostkov)" - } - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111", - "doc_count": 1 - }, - { - "key": "loc:maff3||Schwarzman Building - Dorot Jewish Division Desk Room 111", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "8325", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b13966759\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"term\":{\"items.uri\":\"i16894049\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1103" + }, + "timeout": 30000 + }, + "options": {}, + "id": 25 }, - "item_format": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 3 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 3, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 2 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json b/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json index 3aa2e475..a86e2114 100644 --- a/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json +++ b/test/fixtures/query-be679a41ee3d347dc7dab8d9ac734ce1.json @@ -1,362 +1,410 @@ { - "took": 8, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 15.430383, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001936", - "_score": 15.430383, - "_source": { - "extent": [ - "400 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Publication date from cover.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Also available on microform;", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Armenian.", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Microfilmed;", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Armenians", - "Armenians -- Iran", - "Armenians -- Iran -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tparan Hovhannu Tēr-Abrahamian" - ], - "language": [ - { - "id": "lang:arm", - "label": "Armenian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1891 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" - ], - "shelfMark": [ - "*ONR 84-743" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Shermazanian, Galust." - ], - "createdString": [ - "1891" - ], - "numElectronicResources": [ - 1 - ], - "dateStartYear": [ - 1891 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONR 84-743" - }, - { - "type": "nypl:Bnumber", - "value": "10001936" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002001377-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201976" + "body": { + "took": 6, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.522671, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001936", + "_score": 15.522671, + "_source": { + "extent": [ + "400 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Publication date from cover.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Also available on microform;", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Microfilmed;", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Armenians", + "Armenians -- Iran", + "Armenians -- Iran -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tparan Hovhannu Tēr-Abrahamian" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Shermazanian, Galust." + ], + "createdString": [ + "1891" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1891 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONR 84-743" + }, + { + "type": "nypl:Bnumber", + "value": "10001936" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002001377-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201976" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201934" + } + ], + "idOclc": [ + "NYPG002001377-B" + ], + "updatedAt": 1671714296499, + "publicationStatement": [ + "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" + ], + "identifier": [ + "urn:bnum:10001936", + "urn:oclc:NYPG002001377-B", + "urn:undefined:NNSZ00201976", + "urn:undefined:(WaOLN)nyp0201934" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Armenians -- Iran -- History." + ], + "titleDisplay": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." + ], + "uri": "b10001936", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ṛostov (Doni Vra)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10001936-e", + "electronicLocator": [ + { + "url": "http://hdl.handle.net/2027/nyp.33433001892276", + "label": "Full text available via HathiTrust" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10001936-e" + } + } + ] + } }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201934" - } - ], - "idOclc": [ - "NYPG002001377-B" - ], - "updatedAt": 1671714296499, - "publicationStatement": [ - "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" - ], - "identifier": [ - "urn:bnum:10001936", - "urn:oclc:NYPG002001377-B", - "urn:undefined:NNSZ00201976", - "urn:undefined:(WaOLN)nyp0201934" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10001320", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "identifierV2": [ + { + "value": "*ONR 84-743", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001892276" + } + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001892276" + ], + "idBarcode": [ + "33433001892276" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ONR 84-000743" + }, + "sort": [ + null + ] + } + ] + } } - ], - "carrierType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "carriertypes:nc", - "label": "volume" + "key": "loc:rc2ma||Offsite", + "doc_count": 1 } - ], - "dateString": [ - "1891" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 2 } - ], - "subjectLiteral": [ - "Armenians -- Iran -- History." - ], - "titleDisplay": [ - "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." - ], - "uri": "b10001936", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ṛostov (Doni Vra)" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 1 } - ], - "dimensions": [ - "21 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i10001936-e", - "electronicLocator": [ - { - "url": "http://hdl.handle.net/2027/nyp.33433001892276", - "label": "Full text available via HathiTrust" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi10001936-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10001320", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*ONR 84-743" - ], - "identifierV2": [ - { - "value": "*ONR 84-743", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001892276" - } - ], - "physicalLocation": [ - "*ONR 84-743" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001892276" - ], - "idBarcode": [ - "33433001892276" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONR 84-000743" - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 1 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:56 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "4314", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10001936\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 34 }, - "item_format": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 2 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 1 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-c18c145cf2a213e7a77d1172888575fd.json b/test/fixtures/query-c18c145cf2a213e7a77d1172888575fd.json new file mode 100644 index 00000000..0ef250ce --- /dev/null +++ b/test/fixtures/query-c18c145cf2a213e7a77d1172888575fd.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 6, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 30.0923, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 30.0923, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:10 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19772", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"b22144813\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"b22144813\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\",\"items.idBarcode\"],\"query\":\"b22144813\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1051" + }, + "timeout": 30000 + }, + "options": {}, + "id": 61 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-c48428f4ada00371fbaba874d3852095.json b/test/fixtures/query-c48428f4ada00371fbaba874d3852095.json deleted file mode 100644 index 78133580..00000000 --- a/test/fixtures/query-c48428f4ada00371fbaba874d3852095.json +++ /dev/null @@ -1,222 +0,0 @@ -{ - "took": 235, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 123.01503, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b12423567", - "_score": 123.01503, - "_source": { - "extent": [ - "202 p." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Campanella, Tommaso, 1568-1639" - ], - "publisherLiteral": [ - "S. Neaulme" - ], - "language": [ - { - "id": "lang:lat", - "label": "Latin" - } - ], - "createdYear": [ - 1741 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vita Th. Campanellae." - ], - "shelfMark": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "creatorLiteral": [ - "Cyprian, Ernst Salomon, 1673-1745." - ], - "createdString": [ - "1741" - ], - "dateStartYear": [ - 1741 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - }, - { - "type": "nypl:Bnumber", - "value": "12423567" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp2408048" - } - ], - "updatedAt": 1657655482511, - "publicationStatement": [ - "Trajecti ad Rhenum, S. Neaulme, 1741." - ], - "identifier": [ - "urn:bnum:12423567", - "urn:undefined:(WaOLN)nyp2408048" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1741" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Campanella, Tommaso, 1568-1639." - ], - "titleDisplay": [ - "Vita Th. Campanellae. Autore Ern. Sal. Cypriano. Accedunt hac secunda editione appendices IV. doctorum virorum de Campanellae vita, philosophia & libris schediasmata complectentes." - ], - "uri": "b12423567", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Trajecti ad Rhenum" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i16020288", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "identifierV2": [ - { - "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433104031624" - } - ], - "physicalLocation": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - ], - "identifier": [ - "urn:barcode:33433104031624" - ], - "idBarcode": [ - "33433104031624" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "shelfMark_sort": "aAN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-c6b123ef4b18a3c4774ea9b10bb59478.json b/test/fixtures/query-c6b123ef4b18a3c4774ea9b10bb59478.json new file mode 100644 index 00000000..93bcfe9a --- /dev/null +++ b/test/fixtures/query-c6b123ef4b18a3c4774ea9b10bb59478.json @@ -0,0 +1,13972 @@ +{ + "body": { + "took": 1756, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 17891335, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000005", + "_score": null, + "_source": { + "extent": [ + "1 score (43 p.) + 1 part (12 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Acc. arr. for piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Soch. 22\"--Caption.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: 11049.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Concertos (Violin)", + "Concertos (Violin) -- Solo with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muzyka" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" + ], + "shelfMark": [ + "JMF 83-336" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wieniawski, Henri, 1835-1880." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-336" + }, + { + "type": "nypl:Bnumber", + "value": "10000005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-C" + }, + { + "type": "bf:Identifier", + "value": "11049. Muzyka" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100551" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200004" + } + ], + "idOclc": [ + "NYPG001000001-C" + ], + "uniformTitle": [ + "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Moskva : Muzyka, 1980." + ], + "identifier": [ + "urn:bnum:10000005", + "urn:oclc:NYPG001000001-C", + "urn:undefined:11049. Muzyka", + "urn:undefined:NNSZ00100551", + "urn:undefined:(WaOLN)nyp0200004" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Concertos (Violin) -- Solo with piano." + ], + "titleDisplay": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." + ], + "uri": "b10000005", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Moskva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Concertos, no. 2, op. 22" + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10000005" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-336" + ], + "identifierV2": [ + { + "value": "JMF 83-336", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032711909" + } + ], + "physicalLocation": [ + "JMF 83-336" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032711909" + ], + "idBarcode": [ + "33433032711909" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000336" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000007", + "_score": null, + "_source": { + "extent": [ + "14 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 7:35.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: Z.8917.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Guitar music", + "Guitar", + "Guitar -- Studies and exercises" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editio Musica" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Due studi per chitarra" + ], + "shelfMark": [ + "JMG 83-276" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Patachich, Iván." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-276" + }, + { + "type": "nypl:Bnumber", + "value": "10000007" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-C" + }, + { + "type": "bf:Identifier", + "value": "Z.8917. Editio Musica" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100552" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200006" + } + ], + "idOclc": [ + "NYPG001000002-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Budapest : Editio Musica, c1981." + ], + "identifier": [ + "urn:bnum:10000007", + "urn:oclc:NYPG001000002-C", + "urn:undefined:Z.8917. Editio Musica", + "urn:undefined:NNSZ00100552", + "urn:undefined:(WaOLN)nyp0200006" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Guitar music.", + "Guitar -- Studies and exercises." + ], + "titleDisplay": [ + "Due studi per chitarra / Patachich Iván." + ], + "uri": "b10000007", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Budapest" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-276" + ], + "identifierV2": [ + { + "value": "JMG 83-276", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883591" + } + ], + "physicalLocation": [ + "JMG 83-276" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883591" + ], + "idBarcode": [ + "33433032883591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000276" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000009", + "_score": null, + "_source": { + "extent": [ + "30 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Edition Peters Nr. 5489.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: E.P. 13028.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Edition Peters ; C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miniaturen II : 13 kleine Klavierstücke" + ], + "shelfMark": [ + "JMG 83-278" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Golle, Jürgen, 1942-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-278" + }, + { + "type": "nypl:Bnumber", + "value": "10000009" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters Nr. 5489 Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "E.P. 13028. Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100553" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200008" + } + ], + "idOclc": [ + "NYPG001000003-C" + ], + "uniformTitle": [ + "Miniaturen, no. 2" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000009", + "urn:oclc:NYPG001000003-C", + "urn:undefined:Edition Peters Nr. 5489 Edition Peters", + "urn:undefined:E.P. 13028. Edition Peters", + "urn:undefined:NNSZ00100553", + "urn:undefined:(WaOLN)nyp0200008" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." + ], + "uri": "b10000009", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig : New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen, no. 2" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000009" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-278" + ], + "identifierV2": [ + { + "value": "JMG 83-278", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883617" + } + ], + "physicalLocation": [ + "JMG 83-278" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883617" + ], + "idBarcode": [ + "33433032883617" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000278" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000011", + "_score": null, + "_source": { + "extent": [ + "46 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Boeijenga" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1982" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Passie en pasen : suite voor orgel, opus 50" + ], + "shelfMark": [ + "JMG 83-279" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Berg, Jan J. van den." + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-279" + }, + { + "type": "nypl:Bnumber", + "value": "10000011" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-C" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200010" + } + ], + "idOclc": [ + "NYPG001000004-C" + ], + "dateEndYear": [ + 1982 + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." + ], + "identifier": [ + "urn:bnum:10000011", + "urn:oclc:NYPG001000004-C", + "urn:undefined:(WaOLN)nyp0200010" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music." + ], + "titleDisplay": [ + "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." + ], + "uri": "b10000011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Sneek [Netherlands]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-279" + ], + "identifierV2": [ + { + "value": "JMG 83-279", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883625" + } + ], + "physicalLocation": [ + "JMG 83-279" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883625" + ], + "idBarcode": [ + "33433032883625" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000279" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000013", + "_score": null, + "_source": { + "extent": [ + "32 p. of music : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Popular music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Arr. for piano with chord symbols; superlinear German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- Germany (East)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harth Musik Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Disko Treff 1 : Klavier." + ], + "shelfMark": [ + "JMF 83-366" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-366" + }, + { + "type": "nypl:Bnumber", + "value": "10000013" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100555" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200012" + } + ], + "idOclc": [ + "NYPG001000005-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Leipzig : Harth Musik Verlag, c1980." + ], + "identifier": [ + "urn:bnum:10000013", + "urn:oclc:NYPG001000005-C", + "urn:undefined:NNSZ00100555", + "urn:undefined:(WaOLN)nyp0200012" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- Germany (East)" + ], + "titleDisplay": [ + "Disko Treff 1 : Klavier." + ], + "uri": "b10000013", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Disko Treff eins." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000013" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-366" + ], + "identifierV2": [ + { + "value": "JMF 83-366", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032712204" + } + ], + "physicalLocation": [ + "JMF 83-366" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032712204" + ], + "idBarcode": [ + "33433032712204" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000366" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000015", + "_score": null, + "_source": { + "extent": [ + "25 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For organ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"A McAfee Music Publication.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: DM 220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Belwin-Mills" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suite no. 1 : 1977" + ], + "shelfMark": [ + "JNG 83-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hampton, Calvin." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JNG 83-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-C" + }, + { + "type": "bf:Identifier", + "value": "DM 220. Belwin-Mills" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100556" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200014" + } + ], + "idOclc": [ + "NYPG001000006-C" + ], + "uniformTitle": [ + "Suite, organ, no. 1" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Melville, NY : Belwin-Mills, [1980?]" + ], + "identifier": [ + "urn:bnum:10000015", + "urn:oclc:NYPG001000006-C", + "urn:undefined:DM 220. Belwin-Mills", + "urn:undefined:NNSZ00100556", + "urn:undefined:(WaOLN)nyp0200014" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)" + ], + "titleDisplay": [ + "Suite no. 1 : 1977 / Calvin Hampton." + ], + "uri": "b10000015", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Melville, NY" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Suite, no. 1" + ], + "tableOfContents": [ + "Fanfares -- Antiphon -- Toccata." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000015" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000017", + "_score": null, + "_source": { + "extent": [ + "1 score (17 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For baritone and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Words printed also as text.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 3:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbière, Tristan, 1845-1875", + "Corbière, Tristan, 1845-1875 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lettre du Mexique : pour baryton et piano, 1942" + ], + "shelfMark": [ + "JMG 83-395" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Escher, Rudolf." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Corbière, Tristan, 1845-1875." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-395" + }, + { + "type": "nypl:Bnumber", + "value": "10000017" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100557" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200016" + } + ], + "idOclc": [ + "NYPG001000007-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Amsterdam : Donemus, c1981." + ], + "identifier": [ + "urn:bnum:10000017", + "urn:oclc:NYPG001000007-C", + "urn:undefined:NNSZ00100557", + "urn:undefined:(WaOLN)nyp0200016" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbière, Tristan, 1845-1875 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." + ], + "uri": "b10000017", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000017" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-395" + ], + "identifierV2": [ + { + "value": "JMG 83-395", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032735007" + } + ], + "physicalLocation": [ + "JMG 83-395" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032735007" + ], + "idBarcode": [ + "33433032735007" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000395" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000019", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: M 18.487.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Waltzes (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zwölf Walzer und ein Epilog : für Klavier" + ], + "shelfMark": [ + "JMG 83-111" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Benary, Peter." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-111" + }, + { + "type": "nypl:Bnumber", + "value": "10000019" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-C" + }, + { + "type": "bf:Identifier", + "value": "Möseler M 18.487." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200018" + } + ], + "idOclc": [ + "NYPG001000008-C" + ], + "uniformTitle": [ + "Walzer und ein Epilog" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000019", + "urn:oclc:NYPG001000008-C", + "urn:undefined:Möseler M 18.487.", + "urn:undefined:NNSZ00100558", + "urn:undefined:(WaOLN)nyp0200018" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Waltzes (Piano)" + ], + "titleDisplay": [ + "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." + ], + "uri": "b10000019", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Walzer und ein Epilog", + "Walzer und ein Epilog." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000019" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-111" + ], + "identifierV2": [ + { + "value": "JMG 83-111", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845053" + } + ], + "physicalLocation": [ + "JMG 83-111" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845053" + ], + "idBarcode": [ + "33433032845053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000111" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000021", + "_score": null, + "_source": { + "extent": [ + "1 score (51 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: NM 384.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Orchestral music", + "Orchestral music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Neue Musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aurora : sinfonischer Prolog : Partitur" + ], + "shelfMark": [ + "JMG 83-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Weitzendorf, Heinz." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000021" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-C" + }, + { + "type": "bf:Identifier", + "value": "NM 384. Verlag Neue Musik" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100559" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200020" + } + ], + "idOclc": [ + "NYPG001000009-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Berlin : Verlag Neue Musik, c1978." + ], + "identifier": [ + "urn:bnum:10000021", + "urn:oclc:NYPG001000009-C", + "urn:undefined:NM 384. Verlag Neue Musik", + "urn:undefined:NNSZ00100559", + "urn:undefined:(WaOLN)nyp0200020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Orchestral music -- Scores." + ], + "titleDisplay": [ + "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." + ], + "uri": "b10000021", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000021" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-113" + ], + "identifierV2": [ + { + "value": "JMG 83-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845079" + } + ], + "physicalLocation": [ + "JMG 83-113" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845079" + ], + "idBarcode": [ + "33433032845079" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000023", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (18 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For band or wind ensemble.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Based on the composer's Veni creator spiritus.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: KC913.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Band music", + "Band music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shawnee Press" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Musica sacra" + ], + "shelfMark": [ + "JMF 83-38" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zaninelli, Luigi." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-38" + }, + { + "type": "nypl:Bnumber", + "value": "10000023" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-C" + }, + { + "type": "bf:Identifier", + "value": "KC913 Shawnee Press" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100560" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200022" + } + ], + "idOclc": [ + "NYPG001000010-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Delaware Water Gap, Pa. : Shawnee Press, c1979." + ], + "identifier": [ + "urn:bnum:10000023", + "urn:oclc:NYPG001000010-C", + "urn:undefined:KC913 Shawnee Press", + "urn:undefined:NNSZ00100560", + "urn:undefined:(WaOLN)nyp0200022" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Band music -- Scores." + ], + "titleDisplay": [ + "Musica sacra / Luigi Zaninelli." + ], + "uri": "b10000023", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delaware Water Gap, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000023" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-38" + ], + "identifierV2": [ + { + "value": "JMF 83-38", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709028" + } + ], + "physicalLocation": [ + "JMF 83-38" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709028" + ], + "idBarcode": [ + "33433032709028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000038" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000025", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei Sonatinen für Klavier" + ], + "shelfMark": [ + "JMF 83-107" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stockmeier, Wolfgang." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-107" + }, + { + "type": "nypl:Bnumber", + "value": "10000025" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100561" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200024" + } + ], + "idOclc": [ + "NYPG001000011-C" + ], + "uniformTitle": [ + "Sonatinas, piano" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000025", + "urn:oclc:NYPG001000011-C", + "urn:undefined:NNSZ00100561", + "urn:undefined:(WaOLN)nyp0200024" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Drei Sonatinen für Klavier / Wolfgang Stockmeier." + ], + "uri": "b10000025", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatinas" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000025" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-107" + ], + "identifierV2": [ + { + "value": "JMF 83-107", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709697" + } + ], + "physicalLocation": [ + "JMF 83-107" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709697" + ], + "idBarcode": [ + "33433032709697" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000107" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000027", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Violin)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei kleine Sonaten : für Violine solo" + ], + "shelfMark": [ + "JMF 83-95" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Köhler, Friedemann." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 172" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-95" + }, + { + "type": "nypl:Bnumber", + "value": "10000027" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100562" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200026" + } + ], + "idOclc": [ + "NYPG001000012-C" + ], + "uniformTitle": [ + "Kleine Sonaten, violin" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Wolfenbüttel : Möseler Verlag, c1979." + ], + "identifier": [ + "urn:bnum:10000027", + "urn:oclc:NYPG001000012-C", + "urn:undefined:NNSZ00100562", + "urn:undefined:(WaOLN)nyp0200026" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Violin)" + ], + "titleDisplay": [ + "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." + ], + "uri": "b10000027", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kleine Sonaten" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000027" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-95" + ], + "identifierV2": [ + { + "value": "JMF 83-95", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709572" + } + ], + "physicalLocation": [ + "JMF 83-95" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709572" + ], + "idBarcode": [ + "33433032709572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000095" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000029", + "_score": null, + "_source": { + "extent": [ + "16 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: 29589.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Organ music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Hansen ; Distribution, Magnamusic-Baton" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cruor : for organ solo, 1977" + ], + "shelfMark": [ + "JMF 83-93" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lorentzen, Bent." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82771131" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "nypl:Bnumber", + "value": "10000029" + }, + { + "type": "bf:Lccn", + "value": "82771131" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-C" + }, + { + "type": "bf:Identifier", + "value": "Wilhelm Hansen edition no. 4372." + }, + { + "type": "bf:Identifier", + "value": "29589." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100563" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200028" + } + ], + "idOclc": [ + "NYPG001000013-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." + ], + "identifier": [ + "urn:bnum:10000029", + "urn:lccn:82771131", + "urn:oclc:NYPG001000013-C", + "urn:undefined:Wilhelm Hansen edition no. 4372.", + "urn:undefined:29589.", + "urn:undefined:NNSZ00100563", + "urn:undefined:(WaOLN)nyp0200028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Organ music." + ], + "titleDisplay": [ + "Cruor : for organ solo, 1977 / B. Lorentzen." + ], + "uri": "b10000029", + "lccClassification": [ + "M11 .L" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Copenhagen ; New York : [s.l.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-93" + ], + "identifierV2": [ + { + "value": "JMF 83-93", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" + } + ], + "physicalLocation": [ + "JMF 83-93" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709556" + ], + "idBarcode": [ + "33433032709556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000093" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000031", + "_score": null, + "_source": { + "extent": [ + "21 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Müller" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Neun Miniaturen : für Klavier : op. 52" + ], + "shelfMark": [ + "JMG 83-17" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Petersen, Wilhelm, 1890-1957." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-17" + }, + { + "type": "nypl:Bnumber", + "value": "10000031" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-C" + }, + { + "type": "bf:Identifier", + "value": "W. Müller WM 1713 SM." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100564" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200030" + } + ], + "idOclc": [ + "NYPG001000014-C" + ], + "uniformTitle": [ + "Miniaturen" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Heidelberg : W. Müller, c1979." + ], + "identifier": [ + "urn:bnum:10000031", + "urn:oclc:NYPG001000014-C", + "urn:undefined:W. Müller WM 1713 SM.", + "urn:undefined:NNSZ00100564", + "urn:undefined:(WaOLN)nyp0200030" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." + ], + "uri": "b10000031", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Heidelberg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen", + "Miniaturen." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-17" + ], + "identifierV2": [ + { + "value": "JMG 83-17", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841631" + } + ], + "physicalLocation": [ + "JMG 83-17" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841631" + ], + "idBarcode": [ + "33433032841631" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000033", + "_score": null, + "_source": { + "extent": [ + "1 score (20 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For voice and organ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs (Medium voice) with organ", + "Psalms (Music)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Agápe" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Psalm settings" + ], + "shelfMark": [ + "JMG 83-59" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nelhybel, Vaclav." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-59" + }, + { + "type": "nypl:Bnumber", + "value": "10000033" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100565" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200032" + } + ], + "idOclc": [ + "NYPG001000015-C" + ], + "updatedAt": 1689901710981, + "publicationStatement": [ + "Carol Stream, Ill. : Agápe, c1981." + ], + "identifier": [ + "urn:bnum:10000033", + "urn:oclc:NYPG001000015-C", + "urn:undefined:NNSZ00100565", + "urn:undefined:(WaOLN)nyp0200032" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs (Medium voice) with organ.", + "Psalms (Music)" + ], + "titleDisplay": [ + "Psalm settings / Vaclav Nelhybel." + ], + "uri": "b10000033", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Carol Stream, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000033" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-59" + ], + "identifierV2": [ + { + "value": "JMG 83-59", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842035" + } + ], + "physicalLocation": [ + "JMG 83-59" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842035" + ], + "idBarcode": [ + "33433032842035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000059" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000035", + "_score": null, + "_source": { + "extent": [ + "22 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Suite.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 12:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Serenade voor piano : 1980" + ], + "shelfMark": [ + "JMG 83-6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kasbergen, Marinus, 1936-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-6" + }, + { + "type": "nypl:Bnumber", + "value": "10000035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100566" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200034" + } + ], + "idOclc": [ + "NYPG001000016-C" + ], + "uniformTitle": [ + "Serenade, piano" + ], + "updatedAt": 1689901710976, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000035", + "urn:oclc:NYPG001000016-C", + "urn:undefined:NNSZ00100566", + "urn:undefined:(WaOLN)nyp0200034" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Piano)" + ], + "titleDisplay": [ + "Serenade voor piano : 1980 / Marinus Kasbergen." + ], + "uri": "b10000035", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Serenade" + ], + "tableOfContents": [ + "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000035" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-6" + ], + "identifierV2": [ + { + "value": "JMG 83-6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841490" + } + ], + "physicalLocation": [ + "JMG 83-6" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841490" + ], + "idBarcode": [ + "33433032841490" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000037", + "_score": null, + "_source": { + "extent": [ + "13a p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 15:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Guitar)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Eight studies for guitar : in form of a suite : 1979" + ], + "shelfMark": [ + "JMG 83-5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hekster, Walter." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-5" + }, + { + "type": "nypl:Bnumber", + "value": "10000037" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200036" + } + ], + "idOclc": [ + "NYPG001000017-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000037", + "urn:oclc:NYPG001000017-C", + "urn:undefined:NNSZ00100567", + "urn:undefined:(WaOLN)nyp0200036" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Guitar)" + ], + "titleDisplay": [ + "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." + ], + "uri": "b10000037", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000037" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-5" + ], + "identifierV2": [ + { + "value": "JMG 83-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841482" + } + ], + "physicalLocation": [ + "JMG 83-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841482" + ], + "idBarcode": [ + "33433032841482" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000005" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000039", + "_score": null, + "_source": { + "extent": [ + "49 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five sonatas for pianoforte" + ], + "shelfMark": [ + "JMG 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hässler, Johann Wilhelm, 1747-1822." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Oberdoerffer, Fritz." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000039" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters no. 66799. C.F. Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200038" + } + ], + "idOclc": [ + "NYPG001000018-C" + ], + "uniformTitle": [ + "Sonatas, piano. Selections" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000039", + "urn:oclc:NYPG001000018-C", + "urn:undefined:Edition Peters no. 66799. C.F. Peters", + "urn:undefined:NNSZ00100568", + "urn:undefined:(WaOLN)nyp0200038" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." + ], + "uri": "b10000039", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatas" + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-66" + ], + "identifierV2": [ + { + "value": "JMG 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842100" + } + ], + "physicalLocation": [ + "JMG 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842100" + ], + "idBarcode": [ + "33433032842100" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000041", + "_score": null, + "_source": { + "extent": [ + "1 score (23 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 5 clarinets.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Woodwind quintets (Clarinets (5))", + "Woodwind quintets (Clarinets (5)) -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Primavera" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Encounter" + ], + "shelfMark": [ + "JMF 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Usher, Julia." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "81770739" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000041" + }, + { + "type": "bf:Lccn", + "value": "81770739" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100569" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200040" + } + ], + "idOclc": [ + "NYPG001000019-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "London : Primavera, c1980." + ], + "identifier": [ + "urn:bnum:10000041", + "urn:lccn:81770739", + "urn:oclc:NYPG001000019-C", + "urn:undefined:NNSZ00100569", + "urn:undefined:(WaOLN)nyp0200040" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwind quintets (Clarinets (5)) -- Scores." + ], + "titleDisplay": [ + "Encounter / Julia Usher." + ], + "uri": "b10000041", + "lccClassification": [ + "M557.2.U8 E5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Greeting -- Circular argument -- Escape." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942042", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-66" + ], + "identifierV2": [ + { + "value": "JMF 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" + } + ], + "physicalLocation": [ + "JMF 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709291" + ], + "idBarcode": [ + "33433032709291" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000043", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (28 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 5:00-6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: D.15 579.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Wind ensembles", + "Wind ensembles -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Doblinger" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Capriccio : für 10 Blasinstrumente" + ], + "shelfMark": [ + "JMC 83-9" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Eröd, Iván." + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Doblingers Studienpartituren ; Stp. 410" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 83-9" + }, + { + "type": "nypl:Bnumber", + "value": "10000043" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-C" + }, + { + "type": "bf:Identifier", + "value": "Stp. 410 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "D.15 579 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200042" + } + ], + "idOclc": [ + "NYPG001000020-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wien : Verlag Doblinger, c1980." + ], + "identifier": [ + "urn:bnum:10000043", + "urn:oclc:NYPG001000020-C", + "urn:undefined:Stp. 410 Verlag Doblinger", + "urn:undefined:D.15 579 Verlag Doblinger", + "urn:undefined:NNSZ00100570", + "urn:undefined:(WaOLN)nyp0200042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Wind ensembles -- Scores." + ], + "titleDisplay": [ + "Capriccio : für 10 Blasinstrumente / Iván Eröd." + ], + "uri": "b10000043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wien" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMC 83-9" + ], + "identifierV2": [ + { + "value": "JMC 83-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004744128" + } + ], + "physicalLocation": [ + "JMC 83-9" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433004744128" + ], + "idBarcode": [ + "33433004744128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMC 83-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000044", + "_score": null, + "_source": { + "extent": [ + "[99] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", + "Lamas", + "Lamas -- Tibet", + "Lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ngawang Sopa" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77901316" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" + }, + { + "type": "nypl:Bnumber", + "value": "10000044" + }, + { + "type": "bf:Lccn", + "value": "77901316" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100021" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200043" + } + ], + "idOclc": [ + "NYPG001000021-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Ngawang Sopa, 1976." + ], + "identifier": [ + "urn:bnum:10000044", + "urn:lccn:77901316", + "urn:oclc:NYPG001000021-B", + "urn:undefined:NNSZ00100021", + "urn:undefined:(WaOLN)nyp0200043" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", + "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", + "Lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." + ], + "uri": "b10000044", + "lccClassification": [ + "BQ942.Y367 R47 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000044" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000011", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2361" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2361", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080645" + } + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080645" + ], + "idBarcode": [ + "33433015080645" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002361" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000045", + "_score": null, + "_source": { + "extent": [ + "12 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Violin music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sole selling agents, Or-Tav" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Thoughts & feelings : for violin solo" + ], + "shelfMark": [ + "JMG 82-688" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stutschewsky, Joachim, 1891-1982." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "80770813" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 82-688" + }, + { + "type": "nypl:Bnumber", + "value": "10000045" + }, + { + "type": "bf:Lccn", + "value": "80770813" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000021-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100571" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200044" + } + ], + "idOclc": [ + "NYPG001000021-C" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Tel-Aviv : Sole selling agents, Or-Tav, c1979." + ], + "identifier": [ + "urn:bnum:10000045", + "urn:lccn:80770813", + "urn:oclc:NYPG001000021-C", + "urn:undefined:NNSZ00100571", + "urn:undefined:(WaOLN)nyp0200044" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Violin music." + ], + "titleDisplay": [ + "Thoughts & feelings : for violin solo / Joachim Stutschewsky." + ], + "uri": "b10000045", + "lccClassification": [ + "M42 .S" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tel-Aviv" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000045" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942043", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 82-688" + ], + "identifierV2": [ + { + "value": "JMG 82-688", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032707568" + } + ], + "physicalLocation": [ + "JMG 82-688" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032707568" + ], + "idBarcode": [ + "33433032707568" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 82-000688" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000046", + "_score": null, + "_source": { + "extent": [ + "[83] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Kye rdor rnam bśad.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", + "Tripiṭaka.", + "Tripiṭaka. -- Commentaries", + "Sa-skya-pa lamas", + "Sa-skya-pa lamas -- Tibet", + "Sa-skya-pa lamas -- Tibet -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trayang and Jamyang Samten" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "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" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "77900893" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, + { + "type": "nypl:Bnumber", + "value": "10000046" + }, + { + "type": "bf:Lccn", + "value": "77900893" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100022" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200045" + } + ], + "idOclc": [ + "NYPG001000022-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "New Delhi : Trayang and Jamyang Samten, 1976." + ], + "identifier": [ + "urn:bnum:10000046", + "urn:lccn:77900893", + "urn:oclc:NYPG001000022-B", + "urn:undefined:NNSZ00100022", + "urn:undefined:(WaOLN)nyp0200045" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", + "Tripiṭaka. -- Commentaries.", + "Sa-skya-pa lamas -- Tibet -- Biography." + ], + "titleDisplay": [ + "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." + ], + "uri": "b10000046", + "lccClassification": [ + "BG974.0727 T75" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "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" + } + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000046" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000012", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2362", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080413" + } + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080413" + ], + "idBarcode": [ + "33433015080413" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002362" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000047", + "_score": null, + "_source": { + "extent": [ + "1 score (30 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"This work was written between 14 March and 1 May, 1979\"--verso t.p.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 15 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vocalises (High voice) with instrumental ensemble", + "Vocalises (High voice) with instrumental ensemble -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" + ], + "shelfMark": [ + "JMG 83-79" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1979" + ], + "idLccn": [ + "81770634" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-79" + }, + { + "type": "nypl:Bnumber", + "value": "10000047" + }, + { + "type": "bf:Lccn", + "value": "81770634" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000022-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200046" + } + ], + "idOclc": [ + "NYPG001000022-C" + ], + "uniformTitle": [ + "Vocalise, soprano, instrumental ensemble, op. 38" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "London, England (Arlington Park House, London W4) : Redcliffe Edition, c1979." + ], + "identifier": [ + "urn:bnum:10000047", + "urn:lccn:81770634", + "urn:oclc:NYPG001000022-C", + "urn:undefined:NNSZ00100572", + "urn:undefined:(WaOLN)nyp0200046" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vocalises (High voice) with instrumental ensemble -- Scores." + ], + "titleDisplay": [ + "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello / Francis Routh." + ], + "uri": "b10000047", + "lccClassification": [ + "M1613.3 .R8 op.38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London, England (Arlington Park House, London W4)" + ], + "titleAlt": [ + "Vocalise, op. 38" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "38 cm." + ] + }, + "sort": [ + "b10000047" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942044", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-79" + ], + "identifierV2": [ + { + "value": "JMG 83-79", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842233" + } + ], + "physicalLocation": [ + "JMG 83-79" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842233" + ], + "idBarcode": [ + "33433032842233" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000079" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000048", + "_score": null, + "_source": { + "extent": [ + "[150] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Buddhism", + "Buddhism -- Rituals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kunzang Topgey" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901012" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" + }, + { + "type": "nypl:Bnumber", + "value": "10000048" + }, + { + "type": "bf:Lccn", + "value": "76901012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100023" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200047" + } + ], + "idOclc": [ + "NYPG001000023-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Thimphu : Kunzang Topgey, 1976." + ], + "identifier": [ + "urn:bnum:10000048", + "urn:lccn:76901012", + "urn:oclc:NYPG001000023-B", + "urn:undefined:NNSZ00100023", + "urn:undefined:(WaOLN)nyp0200047" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Buddhism -- Rituals." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000048", + "lccClassification": [ + "BQ7695 .B55" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Thimphu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 x 38 cm." + ] + }, + "sort": [ + "b10000048" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000013", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2382" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2382", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080439" + } + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080439" + ], + "idBarcode": [ + "33433015080439" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002382" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000049", + "_score": null, + "_source": { + "extent": [ + "1 score (105 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 25 min.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Redcliffe Edition" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Symphony, op. 26 : full score" + ], + "shelfMark": [ + "JMG 83-80" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Routh, Francis." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "81770641" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "nypl:Bnumber", + "value": "10000049" + }, + { + "type": "bf:Lccn", + "value": "81770641" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000023-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100573" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200048" + } + ], + "idOclc": [ + "NYPG001000023-C" + ], + "uniformTitle": [ + "Symphony, op. 26" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "London (Arlington Park House, London W4 4HD) : Redcliffe Edition, c1976." + ], + "identifier": [ + "urn:bnum:10000049", + "urn:lccn:81770641", + "urn:oclc:NYPG001000023-C", + "urn:undefined:NNSZ00100573", + "urn:undefined:(WaOLN)nyp0200048" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "Symphony, op. 26 : full score / Francis Routh." + ], + "uri": "b10000049", + "lccClassification": [ + "M1001 .R8615 op.26" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London (Arlington Park House, London W4 4HD)" + ], + "titleAlt": [ + "Symphony, op. 26" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "33 cm." + ] + }, + "sort": [ + "b10000049" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942045", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-80" + ], + "identifierV2": [ + { + "value": "JMG 83-80", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" + } + ], + "physicalLocation": [ + "JMG 83-80" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842241" + ], + "idBarcode": [ + "33433032842241" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000080" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000050", + "_score": null, + "_source": { + "extent": [ + "[188] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Tibetan; pref. in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas", + "Bkaʼ-brgyud-pa lamas -- Tibet", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", + "Spiritual life", + "Spiritual life -- Buddhism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Urgyan Dorje" + ], + "language": [ + { + "id": "lang:tib", + "label": "Tibetan" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "76901747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" + }, + { + "type": "nypl:Bnumber", + "value": "10000050" + }, + { + "type": "bf:Lccn", + "value": "76901747" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100024" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200049" + } + ], + "idOclc": [ + "NYPG001000024-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "New Delhi : Urgyan Dorje, 1976." + ], + "identifier": [ + "urn:bnum:10000050", + "urn:lccn:76901747", + "urn:oclc:NYPG001000024-B", + "urn:undefined:NNSZ00100024", + "urn:undefined:(WaOLN)nyp0200049" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", + "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", + "Spiritual life -- Buddhism." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10000050", + "lccClassification": [ + "BQ942.A187 A35 1976" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." + ], + "dimensions": [ + "28 x 37 cm." + ] + }, + "sort": [ + "b10000050" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000014", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OZ+ 82-2381" + ], + "identifierV2": [ + { + "value": "*OZ+ 82-2381", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015080421" + } + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015080421" + ], + "idBarcode": [ + "33433015080421" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OZ+ 82-002381" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000051", + "_score": null, + "_source": { + "extent": [ + "score (64 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Symphonies", + "Symphonies -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Samfundet til udgivelse af dansk musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" + ], + "shelfMark": [ + "JMG 83-75" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Christiansen, Henning." + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78770955" + ], + "seriesStatement": [ + "[Publikation] - Samfundet til udgivelse af dansk musik : 3. serie, nr. 264" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-75" + }, + { + "type": "nypl:Bnumber", + "value": "10000051" + }, + { + "type": "bf:Lccn", + "value": "78770955" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000024-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100574" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200050" + } + ], + "idOclc": [ + "NYPG001000024-C" + ], + "uniformTitle": [ + "Symphony, no. 2, op. 69c", + "Samfundet til udgivelse af dansk musik (Series) ; 3. ser., nr. 264." + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "København : Samfundet til udgivelse af dansk musik, 1977." + ], + "identifier": [ + "urn:bnum:10000051", + "urn:lccn:78770955", + "urn:oclc:NYPG001000024-C", + "urn:undefined:NNSZ00100574", + "urn:undefined:(WaOLN)nyp0200050" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Symphonies -- Scores." + ], + "titleDisplay": [ + "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972 / Henning Christiansen." + ], + "uri": "b10000051", + "lccClassification": [ + "M1001 .C533 op.69c" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "København" + ], + "titleAlt": [ + "Symphony, no. 2, op. 69c", + "Den forsvundne." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "37 cm." + ] + }, + "sort": [ + "b10000051" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942046", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-75" + ], + "identifierV2": [ + { + "value": "JMG 83-75", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842191" + } + ], + "physicalLocation": [ + "JMG 83-75" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842191" + ], + "idBarcode": [ + "33433032842191" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000075" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:05 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "170288", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":1900}}},{\"range\":{\"dateEndYear\":{\"gte\":1900}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 47 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 1, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-c7c98a9fcb6da17b0db0c005f5d43c93.json b/test/fixtures/query-c7c98a9fcb6da17b0db0c005f5d43c93.json deleted file mode 100644 index 96313f7e..00000000 --- a/test/fixtures/query-c7c98a9fcb6da17b0db0c005f5d43c93.json +++ /dev/null @@ -1,319 +0,0 @@ -{ - "took": 256, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 94.2775, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b13565153", - "_score": 94.2775, - "_source": { - "extent": [ - "430 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on spine: Ladies companion to the flower garden.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Ladies' companion to the flower-garden (p. [97]-340), has half- title page.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Monthly calendar of work to be done in the flower-garden: p. [425]-430.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Gardening", - "Flower gardening" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "John Wiley" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1854 - ], - "dateEndString": [ - "1853" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Gardening for ladies : and, Companion to the flower-garden" - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Loudon, Mrs. (Jane), 1807-1858." - ], - "createdString": [ - "1854" - ], - "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Downing, A. J. (Andrew Jackson), 1815-1852." - ], - "dateStartYear": [ - 1854 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)" - }, - { - "type": "nypl:Bnumber", - "value": "13565153" - }, - { - "type": "nypl:Oclc", - "value": "31237346" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3539974" - } - ], - "idOclc": [ - "31237346" - ], - "dateEndYear": [ - 1853 - ], - "updatedAt": 1671727849446, - "publicationStatement": [ - "New York : John Wiley, 1854, c1853." - ], - "identifier": [ - "urn:bnum:13565153", - "urn:oclc:31237346", - "urn:undefined:(WaOLN)nyp3539974" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1854" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Gardening.", - "Flower gardening." - ], - "titleDisplay": [ - "Gardening for ladies : and, Companion to the flower-garden / by Mrs. Loudon." - ], - "uri": "b13565153", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New York" - ], - "titleAlt": [ - "Companion to the flower-garden.", - "Ladies' companion to the flower garden." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": 1, - "_source": { - "uri": "i13565153-e", - "electronicLocator": [ - { - "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433006564110", - "label": "Full text available via HathiTrust" - } - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "bi13565153-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10708577", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "identifierV2": [ - { - "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433006564110" - } - ], - "physicalLocation": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "recapCustomerCode": [ - "NL" - ], - "identifier": [ - "urn:barcode:33433006564110" - ], - "idBarcode": [ - "33433006564110" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1854)" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-ce843ff20c8c4b43375099b360db01c5.json b/test/fixtures/query-ce843ff20c8c4b43375099b360db01c5.json new file mode 100644 index 00000000..88538ae2 --- /dev/null +++ b/test/fixtures/query-ce843ff20c8c4b43375099b360db01c5.json @@ -0,0 +1,16027 @@ +{ + "body": { + "took": 568, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1051220, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000432", + "_score": null, + "_source": { + "extent": [ + "94 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Amīr Kabīr" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah" + ], + "shelfMark": [ + "*OMO 84-1527" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Yūshīj, Nīmā." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMO 84-1527" + }, + { + "type": "nypl:Bnumber", + "value": "10000432" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000386-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100386" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200431" + } + ], + "idOclc": [ + "NYPG001000386-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10000432", + "urn:oclc:NYPG001000386-B", + "urn:undefined:NNSZ00100386", + "urn:undefined:(WaOLN)nyp0200431" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah / az Nīmā yūshīj." + ], + "uri": "b10000432", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Khānah-ʼi Sarīvaylī." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000432" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000245", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMO 84-1527" + ], + "identifierV2": [ + { + "value": "*OMO 84-1527", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001898497" + } + ], + "physicalLocation": [ + "*OMO 84-1527" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001898497" + ], + "idBarcode": [ + "33433001898497" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMO 84-001527" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001333", + "_score": null, + "_source": { + "extent": [ + "v. : ill., folded maps ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Geomorphology", + "Geomorphology -- Libya" + ], + "publisherLiteral": [ + "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" + ], + "shelfMark": [ + "*OFO 82-5116" + ], + "creatorLiteral": [ + "Jawdah, Jawdah Ḥasanayn." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75960642" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFO 82-5116" + }, + { + "type": "nypl:Bnumber", + "value": "10001333" + }, + { + "type": "bf:Lccn", + "value": "75960642" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201348" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201331" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636070536203, + "publicationStatement": [ + "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" + ], + "identifier": [ + "urn:bnum:10001333", + "urn:lccn:75960642", + "urn:undefined:NNSZ00201348", + "urn:undefined:(WaOLN)nyp0201331" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Geomorphology -- Libya." + ], + "titleDisplay": [ + "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." + ], + "uri": "b10001333", + "lccClassification": [ + "GB440.L5 J38" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Binghāzī] :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24cm." + ] + }, + "sort": [ + "b10001333" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000872", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode: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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000871", + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001657", + "_score": null, + "_source": { + "extent": [ + "v. : ill., maps ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on p. [4] of cover: Village gazetteer.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "English and Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Gazetteers", + "Villages", + "Villages -- Iran", + "Villages -- Iran -- Statistics" + ], + "publisherLiteral": [ + "Markaz-i Āmār-i Īrān," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "shelfMark": [ + "Map Div. 84-146" + ], + "creatorLiteral": [ + "Markaz-i Āmār-i Īrān." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "81464564" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146" + }, + { + "type": "nypl:Bnumber", + "value": "10001657" + }, + { + "type": "bf:Lccn", + "value": "81464564" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201692" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201655" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636095534719, + "publicationStatement": [ + "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" + ], + "identifier": [ + "urn:bnum:10001657", + "urn:lccn:81464564", + "urn:undefined:NNSZ00201692", + "urn:undefined:(WaOLN)nyp0201655" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Gazetteers.", + "Villages -- Iran -- Statistics." + ], + "titleDisplay": [ + "Farhang-i ābādīhā-yi kishvar." + ], + "uri": "b10001657", + "lccClassification": [ + "DS253 .M37" + ], + "numItems": [ + 11 + ], + "numAvailable": [ + 11 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Village gazetteer." + ], + "tableOfContents": [ + "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." + ], + "dimensions": [ + "42x54 cm." + ] + }, + "sort": [ + "b10001657" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 11, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030870" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000017", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784147", + "shelfMark": [ + "Map Div. 84-146 v. 17" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030862" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000015", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784146", + "shelfMark": [ + "Map Div. 84-146 v. 15" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030854" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000014", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784145", + "shelfMark": [ + "Map Div. 84-146 v. 14" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030847" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000010", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784144", + "shelfMark": [ + "Map Div. 84-146 v. 10" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 10" + }, + { + "type": "bf:Barcode", + "value": "33433057030847" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 10" + ], + "idBarcode": [ + "33433057030847" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030839" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000009", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784143", + "shelfMark": [ + "Map Div. 84-146 v. 9" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 9" + }, + { + "type": "bf:Barcode", + "value": "33433057030839" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 9" + ], + "idBarcode": [ + "33433057030839" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030821" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000006", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784142", + "shelfMark": [ + "Map Div. 84-146 v. 6" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433057030821" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 6" + ], + "idBarcode": [ + "33433057030821" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030813" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784141", + "shelfMark": [ + "Map Div. 84-146 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433057030813" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433057030813" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030805" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784140", + "shelfMark": [ + "Map Div. 84-146 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433057030805" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433057030805" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030797" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784139", + "shelfMark": [ + "Map Div. 84-146 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057030797" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057030797" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030789" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784138", + "shelfMark": [ + "Map Div. 84-146 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433057030789" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433057030789" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057030771" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:25||atlas" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784137", + "shelfMark": [ + "Map Div. 84-146 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433057030771" + } + ], + "holdingLocation_packed": [ + "loc:rcmp2||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433057030771" + ], + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:25", + "label": "atlas" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001844", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu philosophy", + "Vedanta" + ], + "publisherLiteral": [ + "Chaukhambā Vidyābhavana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." + ], + "shelfMark": [ + "*OKN 82-2276" + ], + "creatorLiteral": [ + "Bādarāyaṇa." + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 65007118" + ], + "seriesStatement": [ + "Vidyābhavara Saṃskrta granthamālā, 124" + ], + "contributorLiteral": [ + "Sastri, Hanumanadas, Swami.", + "Śaṅkarācārya." + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "nypl:Bnumber", + "value": "10001844" + }, + { + "type": "bf:Lccn", + "value": "sa 65007118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201882" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201842" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636079011965, + "publicationStatement": [ + "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" + ], + "identifier": [ + "urn:bnum:10001844", + "urn:lccn:sa 65007118", + "urn:undefined:NNSZ00201882", + "urn:undefined:(WaOLN)nyp0201842" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu philosophy.", + "Vedanta." + ], + "titleDisplay": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." + ], + "uri": "b10001844", + "lccClassification": [ + "B132.V3 B22" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasī," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Brahmasūtra Śaṅkarbhāṣya." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10001844" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058617816" + ], + "physicalLocation": [ + "*OKN 82-2276" + ], + "shelfMark_sort": "a*OKN 82-002276", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784177", + "shelfMark": [ + "*OKN 82-2276" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" + }, + { + "type": "bf:Barcode", + "value": "33433058617816" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058617816" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002118", + "_score": null, + "_source": { + "extent": [ + "204 p. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Wakālat Nāy," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1999" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Awlād bi-al-jumlah" + ], + "shelfMark": [ + "*OFD 82-4488" + ], + "creatorLiteral": [ + "Gilbreth, Frank B. (Frank Bunker), 1911-2001." + ], + "createdString": [ + "1900" + ], + "contributorLiteral": [ + "Carey, Ernestine Moller, 1908-", + "Ṭāhā, Aḥmad." + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "nypl:Bnumber", + "value": "10002118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202160" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202114" + } + ], + "uniformTitle": [ + "Cheaper by the dozen. Arabic" + ], + "dateEndYear": [ + 1999 + ], + "updatedAt": 1636076222810, + "publicationStatement": [ + "Dimashq : Wakālat Nāy, 19--." + ], + "identifier": [ + "urn:bnum:10002118", + "urn:undefined:NNSZ00202160", + "urn:undefined:(WaOLN)nyp0202114" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." + ], + "uri": "b10002118", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Cheaper by the dozen." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10002118" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001997497" + ], + "physicalLocation": [ + "*OFD 82-4488" + ], + "shelfMark_sort": "a*OFD 82-004488", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001459", + "shelfMark": [ + "*OFD 82-4488" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "bf:Barcode", + "value": "33433001997497" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001997497" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002297", + "_score": null, + "_source": { + "extent": [ + "199 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Politics and government", + "Iran -- Politics and government -- 20th century" + ], + "publisherLiteral": [ + "Intishārāt-i Firdawsī," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." + ], + "shelfMark": [ + "*OMZ 84-1529" + ], + "creatorLiteral": [ + "Dawlatābādī, Àlī Muḥammad." + ], + "createdString": [ + "1983" + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1529" + }, + { + "type": "nypl:Bnumber", + "value": "10002297" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202345" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202293" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636109324448, + "publicationStatement": [ + "Tihrān : Intishārāt-i Firdawsī, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10002297", + "urn:undefined:NNSZ00202345", + "urn:undefined:(WaOLN)nyp0202293" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Politics and government -- 20th century." + ], + "titleDisplay": [ + "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." + ], + "uri": "b10002297", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10002297" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539872" + ], + "physicalLocation": [ + "*OMZ 84-1529" + ], + "shelfMark_sort": "a*OMZ 84-001529", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942128", + "shelfMark": [ + "*OMZ 84-1529" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1529" + }, + { + "type": "bf:Barcode", + "value": "33433014539872" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539872" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002303", + "_score": null, + "_source": { + "extent": [ + "280 p. : facsim. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Politics and government", + "Iran -- Politics and government -- 20th century", + "Political prisoners", + "Political prisoners -- Iran", + "Political prisoners -- Iran -- Biography" + ], + "publisherLiteral": [ + "Intishārāt-i Haftah," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad" + ], + "shelfMark": [ + "*OMZ 84-1538" + ], + "creatorLiteral": [ + "Khāmahʼī, Anvar." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1538" + }, + { + "type": "nypl:Bnumber", + "value": "10002303" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202351" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202299" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636121044994, + "publicationStatement": [ + "Tihrān : Intishārāt-i Haftah, [198-?]" + ], + "identifier": [ + "urn:bnum:10002303", + "urn:undefined:NNSZ00202351", + "urn:undefined:(WaOLN)nyp0202299" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Politics and government -- 20th century.", + "Political prisoners -- Iran -- Biography." + ], + "titleDisplay": [ + "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad / khāṭirāt-i Anvar Khāmah'ī." + ], + "uri": "b10002303", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10002303" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539880" + ], + "physicalLocation": [ + "*OMZ 84-1538" + ], + "shelfMark_sort": "a*OMZ 84-001538", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942130", + "shelfMark": [ + "*OMZ 84-1538" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1538" + }, + { + "type": "bf:Barcode", + "value": "33433014539880" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539880" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003134", + "_score": null, + "_source": { + "extent": [ + "397 p. : ill., port., facsim. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- History", + "Iran -- History -- Qajar dynasty, 1794-1925", + "Statesmen", + "Statesmen -- Iran", + "Statesmen -- Iran -- Biography" + ], + "publisherLiteral": [ + "Intishārāt-i Amīr Kabīr," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī" + ], + "shelfMark": [ + "*OMZ 84-1427" + ], + "creatorLiteral": [ + "Mumtaḥin al-Dawlah Shaqāqī, Mahdī Khān." + ], + "createdString": [ + "1983" + ], + "seriesStatement": [ + "Majmūʻah-ʼi guzashtah-ʼi Īrān dar nivishtah-ʼi pīshīnīyān, 1" + ], + "contributorLiteral": [ + "Khānshaqāqī, Ḥusaynqulī." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1427" + }, + { + "type": "nypl:Bnumber", + "value": "10003134" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303485" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203127" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636109324448, + "publicationStatement": [ + "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003134", + "urn:undefined:NNSZ00303485", + "urn:undefined:(WaOLN)nyp0203127" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- History -- Qajar dynasty, 1794-1925.", + "Statesmen -- Iran -- Biography." + ], + "titleDisplay": [ + "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī / bi-kūshish-i Ḥusaynqulī Khānshaqāqī." + ], + "uri": "b10003134", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24cm." + ] + }, + "sort": [ + "b10003134" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539856" + ], + "physicalLocation": [ + "*OMZ 84-1427" + ], + "shelfMark_sort": "a*OMZ 84-001427", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942159", + "shelfMark": [ + "*OMZ 84-1427" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-1427" + }, + { + "type": "bf:Barcode", + "value": "33433014539856" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539856" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003171", + "_score": null, + "_source": { + "extent": [ + "412 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Naw" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āvāz-i kushtigān" + ], + "shelfMark": [ + "*OMP 84-2030" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Baraheni, Reza, 1935-2022." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2030" + }, + { + "type": "nypl:Bnumber", + "value": "10003171" + }, + { + "type": "nypl:Oclc", + "value": "NYPG003000626-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303522" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203164" + } + ], + "idOclc": [ + "NYPG003000626-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1675110792889, + "publicationStatement": [ + "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003171", + "urn:oclc:NYPG003000626-B", + "urn:undefined:NNSZ00303522", + "urn:undefined:(WaOLN)nyp0203164" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Āvāz-i kushtigān / Rizā Barāhinī." + ], + "uri": "b10003171", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm." + ] + }, + "sort": [ + "b10003171" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10002196", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2030" + ], + "identifierV2": [ + { + "value": "*OMP 84-2030", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173038" + } + ], + "physicalLocation": [ + "*OMP 84-2030" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173038" + ], + "idBarcode": [ + "33433013173038" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002030" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003179", + "_score": null, + "_source": { + "extent": [ + "101 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Naw" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Chāh bih chāh" + ], + "shelfMark": [ + "*OMP 84-2039" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Baraheni, Reza, 1935-2022." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2039" + }, + { + "type": "nypl:Bnumber", + "value": "10003179" + }, + { + "type": "nypl:Oclc", + "value": "NYPG003000634-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303530" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203172" + } + ], + "idOclc": [ + "NYPG003000634-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1675110792235, + "publicationStatement": [ + "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" + ], + "identifier": [ + "urn:bnum:10003179", + "urn:oclc:NYPG003000634-B", + "urn:undefined:NNSZ00303530", + "urn:undefined:(WaOLN)nyp0203172" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Chāh bih chāh / Rizā Barāhinī." + ], + "uri": "b10003179", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003179" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10002203", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2039" + ], + "identifierV2": [ + { + "value": "*OMP 84-2039", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173053" + } + ], + "physicalLocation": [ + "*OMP 84-2039" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173053" + ], + "idBarcode": [ + "33433013173053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002039" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003180", + "_score": null, + "_source": { + "extent": [ + "235 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam and state", + "Islam and state -- Iran", + "Khomeini, Ruhollah" + ], + "publisherLiteral": [ + "Org. of Act. Constitutionalist Iranians," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1989" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Qizāvat" + ], + "shelfMark": [ + "*OMZ 84-965" + ], + "creatorLiteral": [ + "ʻAbd al-Raḥmān." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-965" + }, + { + "type": "nypl:Bnumber", + "value": "10003180" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303531" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203173" + } + ], + "dateEndYear": [ + 1989 + ], + "updatedAt": 1636124389229, + "publicationStatement": [ + "Los Angeles : Org. of Act. Constitutionalist Iranians, [198-?]" + ], + "identifier": [ + "urn:bnum:10003180", + "urn:undefined:NNSZ00303531", + "urn:undefined:(WaOLN)nyp0203173" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam and state -- Iran.", + "Khomeini, Ruhollah." + ], + "titleDisplay": [ + "Qizāvat / ʻAbd al-Raḥmān..." + ], + "uri": "b10003180", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Los Angeles :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10003180" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433014539666" + ], + "physicalLocation": [ + "*OMZ 84-965" + ], + "shelfMark_sort": "a*OMZ 84-000965", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10942161", + "shelfMark": [ + "*OMZ 84-965" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 84-965" + }, + { + "type": "bf:Barcode", + "value": "33433014539666" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539666" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003410", + "_score": null, + "_source": { + "extent": [ + "v. facsims." + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Introd. in Arabic and English ; text in Arabic.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: v. 1, p. [313]-314.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic law" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ikhtilāf al-fuqahāʼ," + ], + "shelfMark": [ + "*OGM 84-702" + ], + "creatorLiteral": [ + "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72930954" + ], + "seriesStatement": [ + "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" + ], + "contributorLiteral": [ + "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "nypl:Bnumber", + "value": "10003410" + }, + { + "type": "bf:Lccn", + "value": "72930954" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303765" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203402" + } + ], + "uniformTitle": [ + "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636104747880, + "publicationStatement": [ + "Islām Ābād [1971-" + ], + "identifier": [ + "urn:bnum:10003410", + "urn:lccn:72930954", + "urn:undefined:NNSZ00303765", + "urn:undefined:(WaOLN)nyp0203402" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic law." + ], + "titleDisplay": [ + "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." + ], + "uri": "b10003410", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Islām Ābād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003410" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001944960" + ], + "physicalLocation": [ + "*OGM 84-702" + ], + "shelfMark_sort": "a*OGM 84-000702", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002358", + "shelfMark": [ + "*OGM 84-702" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 84-702" + }, + { + "type": "bf:Barcode", + "value": "33433001944960" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001944960" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003414", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Skandamahāpurāṇam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added t.p. in English or Hindi.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Manasukharāya Mora," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Skandamahāpurāṇam" + ], + "shelfMark": [ + "*OKOK 84-641" + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "73902099" + ], + "seriesStatement": [ + "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641" + }, + { + "type": "nypl:Bnumber", + "value": "10003414" + }, + { + "type": "bf:Lccn", + "value": "73902099" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303769" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203406" + } + ], + "uniformTitle": [ + "Puranas Skanda Purāṇa." + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636124303127, + "publicationStatement": [ + "Kalakattā : Manasukharāya Mora, 1960-" + ], + "identifier": [ + "urn:bnum:10003414", + "urn:lccn:73902099", + "urn:undefined:NNSZ00303769", + "urn:undefined:(WaOLN)nyp0203406" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." + ], + "uri": "b10003414", + "lccClassification": [ + "PK3621 .S5 1960" + ], + "numItems": [ + 6 + ], + "numAvailable": [ + 6 + ], + "placeOfPublication": [ + "Kalakattā :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Skanda-Purāṇam." + ], + "tableOfContents": [ + "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10003414" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 6, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002364", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 2" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002363", + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 1" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221407" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002362", + "shelfMark": [ + "*OKOK 84-641 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013221407" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013221407" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221399" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002365", + "shelfMark": [ + "*OKOK 84-641 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013221399" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433013221399" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221381" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002361", + "shelfMark": [ + "*OKOK 84-641 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433013221381" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433013221381" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013221373" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002360", + "shelfMark": [ + "*OKOK 84-641 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013221373" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013221373" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003502", + "_score": null, + "_source": { + "extent": [ + "v. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Partly translations from German poetry (with German texts included).", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Liesma," + ], + "language": [ + { + "id": "lang:lav", + "label": "Latvian" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dziesmiņas" + ], + "shelfMark": [ + "*QYN 82-2046" + ], + "creatorLiteral": [ + "Alunāns, Juris, 1832-1864." + ], + "createdString": [ + "1981" + ], + "seriesStatement": [ + "Literārā mantojuma mazā bibliotēka" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046" + }, + { + "type": "nypl:Bnumber", + "value": "10003502" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303857" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203494" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636091475285, + "publicationStatement": [ + "Riga : Liesma, 1981-" + ], + "identifier": [ + "urn:bnum:10003502", + "urn:undefined:NNSZ00303857", + "urn:undefined:(WaOLN)nyp0203494" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dziesmiņas / Juris Alunāns." + ], + "uri": "b10003502", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Riga :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "17 cm." + ] + }, + "sort": [ + "b10003502" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002421", + "shelfMark": [ + "*QYN 82-2046 Dala 1." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QYN 82-2046 Dala 1." + }, + { + "type": "bf:Barcode", + "value": "33433013501782" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013501782" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003671", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- Politics and government", + "Egypt -- Politics and government -- 640-1882" + ], + "publisherLiteral": [ + "Maktabat al-Anjlū al-Miṣrīyah," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." + ], + "shelfMark": [ + "*OFP 82-1931" + ], + "creatorLiteral": [ + "Mājid, ʻAbd al-Munʻim." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "73960873" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10003671" + }, + { + "type": "bf:Lccn", + "value": "73960873" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304029" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203663" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636119319155, + "publicationStatement": [ + "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" + ], + "identifier": [ + "urn:bnum:10003671", + "urn:lccn:73960873", + "urn:undefined:NNSZ00304029", + "urn:undefined:(WaOLN)nyp0203663" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- Politics and government -- 640-1882." + ], + "titleDisplay": [ + "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." + ], + "uri": "b10003671", + "lccClassification": [ + "JQ3824 .M34 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Institutions et cérémonial des Fatimides en Égypte." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003671" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001937121" + ], + "physicalLocation": [ + "*OFP 82-1931" + ], + "shelfMark_sort": "a*OFP 82-001931", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002566", + "shelfMark": [ + "*OFP 82-1931" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "bf:Barcode", + "value": "33433001937121" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937121" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003719", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 2 & 4: pariṣkarta Puripanda.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Telugu literature", + "Telugu literature -- History and criticism" + ], + "publisherLiteral": [ + "Āndhrapradēś Sāhitya Akāḍami" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." + ], + "shelfMark": [ + "*OLC 83-35" + ], + "creatorLiteral": [ + "Subrahmanyam, G. V., 1935-" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "71912553" + ], + "contributorLiteral": [ + "Appalaswamy, Puripanda, 1904-", + "Āndhra Pradēśa Sāhitya Akāḍami." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35" + }, + { + "type": "nypl:Bnumber", + "value": "10003719" + }, + { + "type": "bf:Lccn", + "value": "71912553" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304078" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203711" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132209400, + "publicationStatement": [ + "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" + ], + "identifier": [ + "urn:bnum:10003719", + "urn:lccn:71912553", + "urn:undefined:NNSZ00304078", + "urn:undefined:(WaOLN)nyp0203711" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Telugu literature -- History and criticism." + ], + "titleDisplay": [ + "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." + ], + "uri": "b10003719", + "lccClassification": [ + "PL4780.05 S79" + ], + "numItems": [ + 5 + ], + "numAvailable": [ + 5 + ], + "placeOfPublication": [ + "Haidrābādu," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003719" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 5, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197476" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002605", + "shelfMark": [ + "*OLC 83-35 v. 5" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433011197476" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433011197476" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197468" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002604", + "shelfMark": [ + "*OLC 83-35 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433011197468" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433011197468" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197450" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002603", + "shelfMark": [ + "*OLC 83-35 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433011197450" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433011197450" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197443" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002602", + "shelfMark": [ + "*OLC 83-35 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011197443" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433011197443" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011197435" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002601", + "shelfMark": [ + "*OLC 83-35 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011197435" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433011197435" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003958", + "_score": null, + "_source": { + "extent": [ + "39, 18, 83, 3 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Original Version", + "label": "Reprint of the 1910 ? ed.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Logic", + "Logic -- Early works to 1800" + ], + "publisherLiteral": [ + "Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1910" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn," + ], + "shelfMark": [ + "*OGL 83-2455" + ], + "creatorLiteral": [ + "Avicenna, 980-1037." + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "73960850" + ], + "contributorLiteral": [ + "Avicenna, 980-1037." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGL 83-2455" + }, + { + "type": "nypl:Bnumber", + "value": "10003958" + }, + { + "type": "bf:Lccn", + "value": "73960850" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304319" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203950" + } + ], + "dateEndYear": [ + 1910 + ], + "updatedAt": 1636072413178, + "publicationStatement": [ + "Qum : Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī, 1405 [1984 or 1985]" + ], + "identifier": [ + "urn:bnum:10003958", + "urn:lccn:73960850", + "urn:undefined:NNSZ00304319", + "urn:undefined:(WaOLN)nyp0203950" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Logic -- Early works to 1800." + ], + "titleDisplay": [ + "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn, taṣnīf Abī ʻAlī ibn Sīnā." + ], + "uri": "b10003958", + "lccClassification": [ + "B751 .M4 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Qum :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10003958" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058069919" + ], + "physicalLocation": [ + "*OGL 83-2455" + ], + "shelfMark_sort": "a*OGL 83-002455", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858216", + "shelfMark": [ + "*OGL 83-2455" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGL 83-2455" + }, + { + "type": "bf:Barcode", + "value": "33433058069919" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058069919" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004373", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994" + ], + "publisherLiteral": [ + "Karnāṭaka Sahakārī Prakāśana Mandira" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu." + ], + "shelfMark": [ + "*OLA 83-3417" + ], + "creatorLiteral": [ + "Javare Gowda, Deve Gowda, 1918-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902119" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417" + }, + { + "type": "nypl:Bnumber", + "value": "10004373" + }, + { + "type": "bf:Lccn", + "value": "72902119" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304738" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204365" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636109940889, + "publicationStatement": [ + "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" + ], + "identifier": [ + "urn:bnum:10004373", + "urn:lccn:72902119", + "urn:undefined:NNSZ00304738", + "urn:undefined:(WaOLN)nyp0204365" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994." + ], + "titleDisplay": [ + "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." + ], + "uri": "b10004373", + "lccClassification": [ + "PL4659.P797 S7934" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Beṅgaḷūru]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004373" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003188", + "shelfMark": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-3417 Library has: Vol. 1, 3." + }, + { + "type": "bf:Barcode", + "value": "33433001707623" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001707623" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433057523718" + ], + "physicalLocation": [ + "*OLA 83-341" + ], + "shelfMark_sort": "a*OLA 83-341 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858227", + "shelfMark": [ + "*OLA 83-341 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-341 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057523718" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433057523718" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004788", + "_score": null, + "_source": { + "extent": [ + "277 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Plon" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Le château du soleil couchant : roman" + ], + "shelfMark": [ + "JFE 84-3450" + ], + "creatorLiteral": [ + "Grey, Marina." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "La saga de l'exil / Marina Grey ; [3]", + "Grey, Marina. Saga de l'exil ; \\[3]" + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 84-3450" + }, + { + "type": "nypl:Bnumber", + "value": "10004788" + }, + { + "type": "bf:Isbn", + "value": "2259011187 :" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405900" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204778" + } + ], + "updatedAt": 1652324535423, + "publicationStatement": [ + "Paris : Plon, 1984." + ], + "identifier": [ + "urn:bnum:10004788", + "urn:isbn:2259011187 :", + "urn:undefined:NNSZ00405900", + "urn:undefined:(WaOLN)nyp0204778" + ], + "idIsbn": [ + "2259011187 " + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Le château du soleil couchant : roman / Marina Grey." + ], + "uri": "b10004788", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "2259011187" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10004788" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433046113944" + ], + "physicalLocation": [ + "JFE 84-3450" + ], + "shelfMark_sort": "aJFE 84-003450", + "m2CustomerCode": [ + "XF" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858280", + "shelfMark": [ + "JFE 84-3450" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 84-3450" + }, + { + "type": "bf:Barcode", + "value": "33433046113944" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433046113944" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004816", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Martins Livreiro-Editor," + ], + "language": [ + { + "id": "lang:por", + "label": "Portuguese" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A outra face de J. Simões Lopes Neto" + ], + "shelfMark": [ + "JFK 84-291" + ], + "creatorLiteral": [ + "Lopes Neto, J. Simões (João Simões), 1865-1916." + ], + "createdString": [ + "1983" + ], + "idLccn": [ + "84227211" + ], + "contributorLiteral": [ + "Moreira, Angelo Pires." + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291" + }, + { + "type": "nypl:Bnumber", + "value": "10004816" + }, + { + "type": "bf:Lccn", + "value": "84227211" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204806" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636069640817, + "publicationStatement": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" + ], + "identifier": [ + "urn:bnum:10004816", + "urn:lccn:84227211", + "urn:undefined:(WaOLN)nyp0204806" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." + ], + "uri": "b10004816", + "lccClassification": [ + "PQ9697.L7223 A6 1983" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10004816" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003418559" + ], + "physicalLocation": [ + "JFK 84-291" + ], + "shelfMark_sort": "aJFK 84-291 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003383", + "shelfMark": [ + "JFK 84-291 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-291 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433003418559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433003418559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004947", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Geografi︠i︡a.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 170.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1926 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-221 no. 8" + ], + "creatorLiteral": [ + "Räshad, Gafyr." + ], + "createdString": [ + "1926" + ], + "dateStartYear": [ + 1926 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-221 no. 8" + }, + { + "type": "nypl:Bnumber", + "value": "10004947" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406058" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204937" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403668, + "publicationStatement": [ + "Baqï : Azärnäshr, 1926-" + ], + "identifier": [ + "urn:bnum:10004947", + "urn:undefined:NNSZ00406058", + "urn:undefined:(WaOLN)nyp0204937" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1926" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Gafyr Räshad." + ], + "uri": "b10004947", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Geografi︠i︡a." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10004947" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105673499" + ], + "physicalLocation": [ + "*ZO-221" + ], + "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30081242", + "shelfMark": [ + "*ZO-221 11 Azerbaijani monographs" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005127", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 151.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts", + "Geography", + "Geography -- Textbooks" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1928 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cografija [microform]" + ], + "shelfMark": [ + "*ZO-216 no. 15" + ], + "creatorLiteral": [ + "Ivanov, G." + ], + "createdString": [ + "1928" + ], + "dateStartYear": [ + 1928 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-216 no. 15" + }, + { + "type": "nypl:Bnumber", + "value": "10005127" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406243" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205116" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636082403606, + "publicationStatement": [ + "Baqï : Azärnäshr, 1928-" + ], + "identifier": [ + "urn:bnum:10005127", + "urn:undefined:NNSZ00406243", + "urn:undefined:(WaOLN)nyp0205116" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1928" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts.", + "Geography -- Textbooks." + ], + "titleDisplay": [ + "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." + ], + "uri": "b10005127", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Baqï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Nachalʹnyĭ kurs geografii." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005127" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005211", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title in Russian: Khaos.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Allworth no. 586.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Texts" + ], + "publisherLiteral": [ + "Azärnäshr," + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1929 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Xaos [microform]" + ], + "shelfMark": [ + "*ZO-220 no. 9" + ], + "creatorLiteral": [ + "Shirvanzade, 1858-1935." + ], + "createdString": [ + "1929" + ], + "dateStartYear": [ + 1929 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10005211" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00406328" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205200" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636144501921, + "publicationStatement": [ + "Bagï : Azärnäshr, 1929" + ], + "identifier": [ + "urn:bnum:10005211", + "urn:undefined:NNSZ00406328", + "urn:undefined:(WaOLN)nyp0205200" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1929" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Texts." + ], + "titleDisplay": [ + "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." + ], + "uri": "b10005211", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bagï :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Khaos." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10005211" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105674059" + ], + "physicalLocation": [ + "*ZO-220" + ], + "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30087469", + "shelfMark": [ + "*ZO-220 collection of 10 titles (monographs)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-220 collection of 10 titles (monographs)" + }, + { + "type": "bf:Barcode", + "value": "33433105674059" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "enumerationChronology": [ + "collection of 10 titles (monographs)" + ], + "idBarcode": [ + "33433105674059" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005860", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Swahili.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Swahili language", + "Swahili language -- Texts" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:swa", + "label": "Swahili" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "shelfMark": [ + "Sc Ser.-N .Z288" + ], + "creatorLiteral": [ + "Zanzibar." + ], + "createdString": [ + "1980" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-N .Z288" + }, + { + "type": "nypl:Bnumber", + "value": "10005860" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507074" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205850" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636116169694, + "publicationStatement": [ + "[Zanzibar : s.n., 1980- ]" + ], + "identifier": [ + "urn:bnum:10005860", + "urn:undefined:NNSZ00507074", + "urn:undefined:(WaOLN)nyp0205850" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Swahili language -- Texts." + ], + "titleDisplay": [ + "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." + ], + "uri": "b10005860", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Zanzibar :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Kitabu cha 1-9." + ], + "dimensions": [ + "13-31 cm." + ] + }, + "sort": [ + "b10005860" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942241", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-N .Z288 Kituba cha 1-9" + ], + "identifierV2": [ + { + "value": "Sc Ser.-N .Z288 Kituba cha 1-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030859007" + } + ], + "physicalLocation": [ + "Sc Ser.-N .Z288" + ], + "enumerationChronology": [ + "Kituba cha 1-9" + ], + "identifier": [ + "urn:barcode:33433030859007" + ], + "idBarcode": [ + "33433030859007" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005862", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editor: Gerald A. McWorter.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "African Americans", + "African Americans -- Study and teaching", + "African Americans -- Study and teaching -- Congresses", + "Black people", + "Black people -- Study and teaching", + "Black people -- Study and teaching -- Congresses" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Afro-American Studies and Research Program, University of Illinois" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1983 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Proceedings" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1983" + ], + "creatorLiteral": [ + "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "McWorter, Gerald A." + ], + "dateStartYear": [ + 1983 + ], + "idOclc": [ + "NYPG005000004-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .N3674" + }, + { + "type": "nypl:Bnumber", + "value": "10005862" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507076" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205852" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "identifier": [ + { + "type": "bf:shelfMark", + "value": "Sc Ser.-M .N3674" + } + ], + "physicalLocation": [ + "Sc Ser.-M .N3674" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "shelfMark": [ + "Sc Ser.-M .N3674" + ], + "uri": "h1144093" + } + ], + "updatedAt": 1709752718868, + "publicationStatement": [ + "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .N3674", + "urn:bnum:10005862", + "urn:oclc:NYPG005000004-B", + "urn:identifier:NNSZ00507076", + "urn:identifier:(WaOLN)nyp0205852" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "African Americans -- Study and teaching -- Congresses.", + "Black people -- Study and teaching -- Congresses." + ], + "titleDisplay": [ + "Proceedings / National Council for Black Studies, 6th annual national conference." + ], + "uri": "b10005862", + "placeOfPublication": [ + "Urbana, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005862" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "no. 3-5" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "no. 1-2" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "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" + ], + "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-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005870", + "_score": null, + "_source": { + "extent": [ + "71 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"D'après le livre et le montage audiovisual 'L'Evolution de l'amour' por D. Sonet, légèrement adapté avec l'aimable autorisation de l'auteur.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sex instruction", + "Sex instruction -- Haiti", + "Sonet, D" + ], + "publisherLiteral": [ + "Action familiale d'Haïti," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A quel age peut-on aimer? : pour une éducation à l'amour responsable" + ], + "shelfMark": [ + "Sc D 84-595" + ], + "createdString": [ + "1980" + ], + "contributorLiteral": [ + "Action familiale d'Haïti." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-595" + }, + { + "type": "nypl:Bnumber", + "value": "10005870" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507084" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205860" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636069688379, + "publicationStatement": [ + "Port-au-Prince : Action familiale d'Haïti, [198-?]" + ], + "identifier": [ + "urn:bnum:10005870", + "urn:undefined:NNSZ00507084", + "urn:undefined:(WaOLN)nyp0205860" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sex instruction -- Haiti.", + "Sonet, D." + ], + "titleDisplay": [ + "A quel age peut-on aimer? : pour une éducation à l'amour responsable / Action familiale d'Haïti." + ], + "uri": "b10005870", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Port-au-Prince :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10005870" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900461", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-595" + ], + "identifierV2": [ + { + "value": "Sc D 84-595", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036649329" + } + ], + "physicalLocation": [ + "Sc D 84-595" + ], + "identifier": [ + "urn:barcode:33433036649329" + ], + "idBarcode": [ + "33433036649329" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000595" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005876", + "_score": null, + "_source": { + "extent": [ + "xxvii, 751 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of title: Unesco International Scientific Committee for the Drafting of a General History of Africa.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 692-733.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa", + "Africa -- History", + "Africa -- History -- To 1884" + ], + "publisherLiteral": [ + "Heinemann ; University of California Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Africa from the twelfth to the sixteenth century" + ], + "shelfMark": [ + "Sc E 84-288" + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "84256508 //r86" + ], + "seriesStatement": [ + "General history of Africa ; 4" + ], + "contributorLiteral": [ + "Niane, Djibril Tamsir.", + "Unesco. International Scientific Committee for the Drafting of a General History of Africa." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc E 84-288" + }, + { + "type": "nypl:Bnumber", + "value": "10005876" + }, + { + "type": "bf:Isbn", + "value": "0435948105" + }, + { + "type": "bf:Isbn", + "value": "0520039157 (University of California Press)" + }, + { + "type": "bf:Lccn", + "value": "84256508 //r86" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205866" + } + ], + "updatedAt": 1652323261637, + "publicationStatement": [ + "London : Heinemann ; Berkeley, Calif. : University of California Press, 1984." + ], + "identifier": [ + "urn:bnum:10005876", + "urn:isbn:0435948105", + "urn:isbn:0520039157 (University of California Press)", + "urn:lccn:84256508 //r86", + "urn:undefined:(WaOLN)nyp0205866" + ], + "idIsbn": [ + "0435948105", + "0520039157 (University of California Press)" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa -- History -- To 1884." + ], + "titleDisplay": [ + "Africa from the twelfth to the sixteenth century / editor, D.T. Niane." + ], + "uri": "b10005876", + "lccClassification": [ + "DT20 .G45 1981 vol. 4 DT25" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London : Berkeley, Calif." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0435948105", + "0520039157" + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10005876" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10003888", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc E 84-288" + ], + "identifierV2": [ + { + "value": "Sc E 84-288", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433021813997" + } + ], + "physicalLocation": [ + "Sc E 84-288" + ], + "identifier": [ + "urn:barcode:33433021813997" + ], + "idBarcode": [ + "33433021813997" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc E 84-000288" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10003889", + "status": [ + { + "id": "status:m", + "label": "Missing" + } + ], + "status_packed": [ + "status:m||Missing" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "shelfMark": [ + "*R-BK 90-2407" + ], + "identifierV2": [ + { + "value": "*R-BK 90-2407", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*R-BK 90-2407" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:-", + "label": "No restrictions" + } + ], + "accessMessage_packed": [ + "accessMessage:-||No restrictions" + ], + "shelfMark_sort": "a*R-BK 90-002407" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005898", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Creole dialects, French", + "Creole dialects, French -- Haiti", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" + ], + "publisherLiteral": [ + "I.L.A. de Port-au-Prince," + ], + "language": [ + { + "id": "lang:crp", + "label": "Creoles and Pidgins (Other)" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Leson kreyòl pou etranje ki pale franse \\" + ], + "shelfMark": [ + "Sc Ser.-M .M468" + ], + "creatorLiteral": [ + "Mirville, Ernst." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "Collection Coucoville", + "Siwolin; \\t.2" + ], + "contributorLiteral": [ + "Institut de linguistique appliquée de Port-au-Prince." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .M468" + }, + { + "type": "nypl:Bnumber", + "value": "10005898" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507113" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205888" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1144290", + "shelfMark": [ + "Sc Ser.-M .M468" + ] + } + ], + "updatedAt": 1636113236627, + "publicationStatement": [ + "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" + ], + "identifier": [ + "urn:bnum:10005898", + "urn:undefined:NNSZ00507113", + "urn:undefined:(WaOLN)nyp0205888" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." + ], + "titleDisplay": [ + "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." + ], + "uri": "b10005898", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Port-au-Prince :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10005898" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900486", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .M468 t. 2, ptie 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .M468 t. 2, ptie 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017863220" + } + ], + "physicalLocation": [ + "Sc Ser.-M .M468" + ], + "enumerationChronology": [ + "t. 2, ptie 1" + ], + "identifier": [ + "urn:barcode:33433017863220" + ], + "idBarcode": [ + "33433017863220" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005902", + "_score": null, + "_source": { + "extent": [ + "76 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs, English", + "Sacred songs, English -- Caribbean Area", + "Sacred songs, English -- Caribbean Area -- Texts", + "Sacred songs, English -- Jamaica", + "Sacred songs, English -- Jamaica -- Texts" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Modern Jamaican-Caribbean religious folk music." + ], + "shelfMark": [ + "Sc D 84-602" + ], + "createdString": [ + "1900" + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-602" + }, + { + "type": "nypl:Bnumber", + "value": "10005902" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507117" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205892" + } + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1636116687148, + "publicationStatement": [ + "[S.l. : s.n., 19--]" + ], + "identifier": [ + "urn:bnum:10005902", + "urn:undefined:NNSZ00507117", + "urn:undefined:(WaOLN)nyp0205892" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs, English -- Caribbean Area -- Texts.", + "Sacred songs, English -- Jamaica -- Texts." + ], + "titleDisplay": [ + "Modern Jamaican-Caribbean religious folk music." + ], + "uri": "b10005902", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10005902" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900490", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-602" + ], + "identifierV2": [ + { + "value": "Sc D 84-602", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058825831" + } + ], + "physicalLocation": [ + "Sc D 84-602" + ], + "identifier": [ + "urn:barcode:33433058825831" + ], + "idBarcode": [ + "33433058825831" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000602" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005905", + "_score": null, + "_source": { + "extent": [ + "52 p. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1984" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\" + ], + "shelfMark": [ + "Sc C 85-2" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Passavant, Camille." + ], + "createdString": [ + "1900" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc C 85-2" + }, + { + "type": "nypl:Bnumber", + "value": "10005905" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000048-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507120" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205895" + } + ], + "idOclc": [ + "NYPG005000048-B" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1681930671217, + "publicationStatement": [ + "[Fort-de-France? Martinique : s.n., 19--] 52" + ], + "identifier": [ + "urn:bnum:10005905", + "urn:oclc:NYPG005000048-B", + "urn:undefined:NNSZ00507120", + "urn:undefined:(WaOLN)nyp0205895" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\ Camille Passavant." + ], + "uri": "b10005905", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Fort-de-France? Martinique" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 x 21 cm." + ] + }, + "sort": [ + "b10005905" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900493", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc C 85-2" + ], + "identifierV2": [ + { + "value": "Sc C 85-2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036604563" + } + ], + "physicalLocation": [ + "Sc C 85-2" + ], + "identifier": [ + "urn:barcode:33433036604563" + ], + "idBarcode": [ + "33433036604563" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc C 85-000002" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005907", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Discography: p. 115-122.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- History and criticism" + ], + "publisherLiteral": [ + "Producciones Don Pedro," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "En torno al jazz" + ], + "shelfMark": [ + "Sc Ser.-L .V354" + ], + "creatorLiteral": [ + "Vélez, Ana." + ], + "createdString": [ + "1978" + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V354" + }, + { + "type": "nypl:Bnumber", + "value": "10005907" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507122" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205897" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636093384929, + "publicationStatement": [ + "San Juan, P.R. : Producciones Don Pedro, 1978-" + ], + "identifier": [ + "urn:bnum:10005907", + "urn:undefined:NNSZ00507122", + "urn:undefined:(WaOLN)nyp0205897" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jazz -- History and criticism." + ], + "titleDisplay": [ + "En torno al jazz / Ana Vélez." + ], + "uri": "b10005907", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "San Juan, P.R. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10005907" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900496", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 2" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017895651" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 2" + ], + "identifier": [ + "urn:barcode:33433017895651" + ], + "idBarcode": [ + "33433017895651" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900495", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-L .V354 v. 1" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .V354 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433030890481" + } + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "enumerationChronology": [ + "v. 1" + ], + "identifier": [ + "urn:barcode:33433030890481" + ], + "idBarcode": [ + "33433030890481" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005910", + "_score": null, + "_source": { + "extent": [ + "xvi, 99 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 99.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Universities and colleges", + "Universities and colleges -- Africa", + "Universities and colleges -- Zambia" + ], + "publisherLiteral": [ + "Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The African university : issues and perspectives : speeches" + ], + "shelfMark": [ + "Sc D 84-502" + ], + "creatorLiteral": [ + "Goma, L. K. H." + ], + "createdString": [ + "1984" + ], + "idLccn": [ + "84980558" + ], + "seriesStatement": [ + "Zambian papers ; no. 14" + ], + "contributorLiteral": [ + "Tembo, L. P.", + "University of Zambia. Institute for African Studies." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-502" + }, + { + "type": "nypl:Bnumber", + "value": "10005910" + }, + { + "type": "bf:Lccn", + "value": "84980558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205900" + } + ], + "updatedAt": 1636133189056, + "publicationStatement": [ + "Lusaka, Zambia : Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia, 1984." + ], + "identifier": [ + "urn:bnum:10005910", + "urn:lccn:84980558", + "urn:undefined:(WaOLN)nyp0205900" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Universities and colleges -- Africa.", + "Universities and colleges -- Zambia." + ], + "titleDisplay": [ + "The African university : issues and perspectives : speeches / by L.H.K. [i.e. L.K.H.] Goma ; selected and edited by L.P. Tembo." + ], + "uri": "b10005910", + "lccClassification": [ + "DT963.A3 Z3 no. 14 LA1503" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Lusaka, Zambia :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10005910" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433021791029" + ], + "physicalLocation": [ + "Sc D 84-502" + ], + "shelfMark_sort": "aSc D 84-000502", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003896", + "shelfMark": [ + "Sc D 84-502" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-502" + }, + { + "type": "bf:Barcode", + "value": "33433021791029" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433021791029" + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003630815" + ], + "physicalLocation": [ + "JFK 86-224" + ], + "shelfMark_sort": "aJFK 86-224 v. 000014", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003897", + "shelfMark": [ + "JFK 86-224 v. 14" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 86-224 v. 14" + }, + { + "type": "bf:Barcode", + "value": "33433003630815" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 14" + ], + "idBarcode": [ + "33433003630815" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006007", + "_score": null, + "_source": { + "extent": [ + "2 microfilm reels ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes biographical notes, scope and contents note and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm of Mss.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Washington, Fredi, 1903-1994", + "African American actresses", + "African American actresses -- Correspondence", + "African American women journalists", + "African American women journalists -- Correspondence", + "African Americans in the performing arts", + "African American actors", + "African American journalists" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Amistad Research Center" + ], + "description": [ + "Contains approximately one hundred pieces of correspondence, news clippings containing reviews of productions in which Fredi Washington appeared, and Washington's columns for The People's voice. Other groups in the collection are theatre programs, scripts, photographs and documentation of honors conferred on Fredi Washington." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1980 + ], + "dateEndString": [ + "1984" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Fredi Washington papers, 1925-1979." + ], + "shelfMark": [ + "Sc Micro R-4205" + ], + "numItemVolumesParsed": [ + 2 + ], + "creatorLiteral": [ + "Washington, Fredi, 1903-1994." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Amistad Research Center." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro R-4205" + }, + { + "type": "nypl:Bnumber", + "value": "10006007" + }, + { + "type": "nypl:Oclc", + "value": "11780064" + }, + { + "type": "nypl:Oclc", + "value": "11780064" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11780064" + } + ], + "idOclc": [ + "11780064" + ], + "dateEndYear": [ + 1984 + ], + "updatedAt": 1681930673375, + "publicationStatement": [ + "New Orleans, La. : Amistad Research Center, [198-?]" + ], + "identifier": [ + "urn:bnum:10006007", + "urn:oclc:11780064", + "urn:undefined:(OCoLC)11780064" + ], + "genreForm": [ + "Personal correspondence." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Washington, Fredi, 1903-1994.", + "African American actresses -- Correspondence.", + "African American women journalists -- Correspondence.", + "African Americans in the performing arts.", + "African American actors.", + "African American journalists." + ], + "titleDisplay": [ + "Fredi Washington papers, 1925-1979." + ], + "uri": "b10006007", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "New Orleans, La." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 mm" + ] + }, + "sort": [ + "b10006007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11900582", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4205 r. 2" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4205 r. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433031242500" + } + ], + "enumerationChronology": [ + "r. 2" + ], + "physicalLocation": [ + "Sc Micro R-4205" + ], + "identifier": [ + "urn:barcode:33433031242500" + ], + "idBarcode": [ + "33433031242500" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-4205 r. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900581", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4205 r. 1" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4205 r. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433031242492" + } + ], + "enumerationChronology": [ + "r. 1" + ], + "physicalLocation": [ + "Sc Micro R-4205" + ], + "identifier": [ + "urn:barcode:33433031242492" + ], + "idBarcode": [ + "33433031242492" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-4205 r. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006011", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tem language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tem" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Der-Houssikian, Haig." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .T425" + }, + { + "type": "nypl:Bnumber", + "value": "10006011" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507231" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206003" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636132578775, + "publicationStatement": [ + "Brattleboro, vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006011", + "urn:undefined:NNSZ00507231", + "urn:undefined:(WaOLN)nyp0206003" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tem language." + ], + "titleDisplay": [ + "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Communication and culture handbook/by Haig Der-Houssikian.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i23169346", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .T425" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .T425", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076233265" + } + ], + "physicalLocation": [ + "Sc Ser.-M .T425" + ], + "identifier": [ + "urn:barcode:33433076233265" + ], + "idBarcode": [ + "33433076233265" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .T000425" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006012", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kabre language" + ], + "publisherLiteral": [ + "Experiment in International Living," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kabiye" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Peace Corps language handbook series" + ], + "contributorLiteral": [ + "Experiment in International Living.", + "Jassor, Essogoye.", + "Sedlak, Philip Alan Stephen, 1939-" + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc F 84-135" + }, + { + "type": "nypl:Bnumber", + "value": "10006012" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507232" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206004" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636108841395, + "publicationStatement": [ + "Brattleboro, Vt. : Experiment in International Living, 1980-" + ], + "identifier": [ + "urn:bnum:10006012", + "urn:undefined:NNSZ00507232", + "urn:undefined:(WaOLN)nyp0206004" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kabre language." + ], + "titleDisplay": [ + "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." + ], + "uri": "b10006012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Brattleboro, Vt. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900585", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc F 84-135" + ], + "identifierV2": [ + { + "value": "Sc F 84-135", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036872368" + } + ], + "physicalLocation": [ + "Sc F 84-135" + ], + "identifier": [ + "urn:barcode:33433036872368" + ], + "idBarcode": [ + "33433036872368" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc F 84-000135" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006018", + "_score": null, + "_source": { + "extent": [ + "v. : ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Corrections to volume I\": v. 2, p. 69.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iota Phi Lambda" + ], + "publisherLiteral": [ + "The Sorority," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1959 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A History of Iota Phi Lambda Sorority." + ], + "shelfMark": [ + "Sc Ser.-M .H592" + ], + "createdString": [ + "1959" + ], + "contributorLiteral": [ + "Greene, Ethel K.", + "Sims, Sarah B." + ], + "dateStartYear": [ + 1959 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .H592" + }, + { + "type": "nypl:Bnumber", + "value": "10006018" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507238" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206010" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "uri": "h1142937", + "shelfMark": [ + "Sc Ser.-M .H592" + ] + } + ], + "updatedAt": 1636069378411, + "publicationStatement": [ + "Washington : The Sorority, 1959-" + ], + "identifier": [ + "urn:bnum:10006018", + "urn:undefined:NNSZ00507238", + "urn:undefined:(WaOLN)nyp0206010" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iota Phi Lambda." + ], + "titleDisplay": [ + "A History of Iota Phi Lambda Sorority." + ], + "uri": "b10006018", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Washington :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746595", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" + ], + "identifierV2": [ + { + "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061038323" + } + ], + "physicalLocation": [ + "Sc Ser.-M .H592" + ], + "enumerationChronology": [ + "v. 1, 2 (1928-19, 1959-69)" + ], + "identifier": [ + "urn:barcode:33433061038323" + ], + "idBarcode": [ + "33433061038323" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006034", + "_score": null, + "_source": { + "extent": [ + "79 p. : ill., maps ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa", + "Africa -- Portuguese", + "Cão, Diogo, active 15th century", + "Dias, Bartolomeu", + "Gama, Vasco da, 1469-1524", + "Portuguese", + "Portuguese -- India", + "Portuguese -- India -- History" + ], + "publisherLiteral": [ + "Basler Afrika Bibliographien," + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen" + ], + "shelfMark": [ + "Sc D 84-477" + ], + "creatorLiteral": [ + "Kalthammer, Wilhelm." + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "Beiträge zur Afrikakunde, 0171-1660; 5" + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 84-477" + }, + { + "type": "nypl:Bnumber", + "value": "10006034" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507257" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206027" + } + ], + "updatedAt": 1636088600902, + "publicationStatement": [ + "Basel : Basler Afrika Bibliographien, 1978." + ], + "identifier": [ + "urn:bnum:10006034", + "urn:undefined:NNSZ00507257", + "urn:undefined:(WaOLN)nyp0206027" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa -- Portuguese.", + "Cão, Diogo, active 15th century.", + "Dias, Bartolomeu.", + "Gama, Vasco da, 1469-1524.", + "Portuguese -- India -- History." + ], + "titleDisplay": [ + "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen / Wilhelm Kalthammer." + ], + "uri": "b10006034", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Basel :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900606", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc D 84-477" + ], + "identifierV2": [ + { + "value": "Sc D 84-477", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036649683" + } + ], + "physicalLocation": [ + "Sc D 84-477" + ], + "identifier": [ + "urn:barcode:33433036649683" + ], + "idBarcode": [ + "33433036649683" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc D 84-000477" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006043", + "_score": null, + "_source": { + "extent": [ + "205 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Africa, Sub-Saharan", + "Africa, Sub-Saharan -- Relations", + "Africa, Sub-Saharan -- Relations -- Arab countries", + "Arab countries", + "Arab countries -- Relations", + "Arab countries -- Relations -- Africa, Sub-Saharan" + ], + "publisherLiteral": [ + "Unesco," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." + ], + "shelfMark": [ + "Sc E 84-236" + ], + "createdString": [ + "1984" + ], + "seriesStatement": [ + "General history of Africa: studies and documents; 7" + ], + "contributorLiteral": [ + "Unesco." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc E 84-236" + }, + { + "type": "nypl:Bnumber", + "value": "10006043" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206036" + } + ], + "updatedAt": 1636103134727, + "publicationStatement": [ + "Paris : Unesco, 1984." + ], + "identifier": [ + "urn:bnum:10006043", + "urn:undefined:(WaOLN)nyp0206036" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Africa, Sub-Saharan -- Relations -- Arab countries.", + "Arab countries -- Relations -- Africa, Sub-Saharan." + ], + "titleDisplay": [ + "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." + ], + "uri": "b10006043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10006043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900614", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc E 84-236" + ], + "identifierV2": [ + { + "value": "Sc E 84-236", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036807315" + } + ], + "physicalLocation": [ + "Sc E 84-236" + ], + "identifier": [ + "urn:barcode:33433036807315" + ], + "idBarcode": [ + "33433036807315" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc E 84-000236" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006159", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Civil rights", + "Civil rights -- United States", + "Violence", + "Violence -- United States", + "African Americans", + "African Americans -- Civil rights" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Foundation for Negro Affairs" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Law and disorder a research position paper" + ], + "shelfMark": [ + "Sc Micro R-4202, no. 16" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro R-4202, no. 16" + }, + { + "type": "nypl:Bnumber", + "value": "10006159" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000311-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507384" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206150" + } + ], + "idOclc": [ + "NYPG005000311-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1689883301321, + "publicationStatement": [ + "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" + ], + "identifier": [ + "urn:bnum:10006159", + "urn:oclc:NYPG005000311-B", + "urn:undefined:NNSZ00507384", + "urn:undefined:(WaOLN)nyp0206150" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Civil rights -- United States.", + "Violence -- United States.", + "African Americans -- Civil rights." + ], + "titleDisplay": [ + "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." + ], + "uri": "b10006159", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Philadelphia, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 x 28 cm." + ] + }, + "sort": [ + "b10006159" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i24023455", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro R-4202" + ], + "identifierV2": [ + { + "value": "Sc Micro R-4202", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433059035760" + } + ], + "physicalLocation": [ + "Sc Micro R-4202" + ], + "identifier": [ + "urn:barcode:33433059035760" + ], + "idBarcode": [ + "33433059035760" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro R-004202" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006344", + "_score": null, + "_source": { + "extent": [ + "11 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Black people", + "Black people -- Caribbean Area", + "Black people -- Caribbean Area -- Social conditions", + "Middle class", + "Middle class -- Caribbean Area" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1999" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The making of a middle class" + ], + "shelfMark": [ + "Sc Micro F-10459" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Franks, W. Stanley." + ], + "createdString": [ + "1900" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro F-10459" + }, + { + "type": "nypl:Bnumber", + "value": "10006344" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000499-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507572" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206335" + } + ], + "idOclc": [ + "NYPG005000499-B" + ], + "dateEndYear": [ + 1999 + ], + "updatedAt": 1689018711074, + "publicationStatement": [ + "[S.l. : s.n., 19--]" + ], + "identifier": [ + "urn:bnum:10006344", + "urn:oclc:NYPG005000499-B", + "urn:undefined:NNSZ00507572", + "urn:undefined:(WaOLN)nyp0206335" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Black people -- Caribbean Area -- Social conditions.", + "Middle class -- Caribbean Area." + ], + "titleDisplay": [ + "The making of a middle class [microform] / by W. S. Franks ; with a foreword by Lee Llewellyn Moore." + ], + "uri": "b10006344", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "sort": [ + "b10006344" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540203", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:26", + "label": "microfiche" + } + ], + "catalogItemType_packed": [ + "catalogItemType:26||microfiche" + ], + "holdingLocation": [ + { + "id": "loc:scff3", + "label": "Schomburg Center - Research & Reference - Desk" + } + ], + "holdingLocation_packed": [ + "loc:scff3||Schomburg Center - Research & Reference - Desk" + ], + "shelfMark": [ + "Sc Micro F-10459" + ], + "identifierV2": [ + { + "value": "Sc Micro F-10459", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058831748" + } + ], + "physicalLocation": [ + "Sc Micro F-10459" + ], + "identifier": [ + "urn:barcode:33433058831748" + ], + "idBarcode": [ + "33433058831748" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro F-010459" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006540", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 issued without edition statement has imprint date 1972.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Germany", + "Germany -- History", + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945", + "World War, 1939-1945 -- Germany" + ], + "publisherLiteral": [ + "Selbstverlag," + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Was geschah nach 1945?" + ], + "shelfMark": [ + "JFK 84-184" + ], + "creatorLiteral": [ + "Roth, Heinz." + ], + "createdString": [ + "1970" + ], + "seriesStatement": [ + "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", + "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184" + }, + { + "type": "nypl:Bnumber", + "value": "10006540" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507771" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206529" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636143161690, + "publicationStatement": [ + "Odenhausen/Lumda : Selbstverlag, [197-?-" + ], + "identifier": [ + "urn:bnum:10006540", + "urn:undefined:NNSZ00507771", + "urn:undefined:(WaOLN)nyp0206529" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Germany -- History -- Allied occupation, 1945-", + "World War, 1939-1945 -- Germany." + ], + "titleDisplay": [ + "Was geschah nach 1945? / Heinz Roth." + ], + "uri": "b10006540", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Odenhausen/Lumda :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Was geschah nach neunzehnhundertfünfundvierzig." + ], + "tableOfContents": [ + "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006540" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433003841073" + ], + "physicalLocation": [ + "JFK 84-184" + ], + "shelfMark_sort": "aJFK 84-184 v. 000001-2", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003927", + "shelfMark": [ + "JFK 84-184 v. 1-2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 84-184 v. 1-2" + }, + { + "type": "bf:Barcode", + "value": "33433003841073" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1-2" + ], + "idBarcode": [ + "33433003841073" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006622", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Caldas (Colombia : Department)", + "Caldas (Colombia : Department) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Biblioteca de Escritores Caldenses" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Historia del Gran Caldas" + ], + "shelfMark": [ + "HDK 84-1693" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Ríos Tobón, Ricardo de los." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693" + }, + { + "type": "nypl:Bnumber", + "value": "10006622" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000779-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507853" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206611" + } + ], + "idOclc": [ + "NYPG005000779-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1682562721628, + "publicationStatement": [ + "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" + ], + "identifier": [ + "urn:bnum:10006622", + "urn:oclc:NYPG005000779-B", + "urn:undefined:NNSZ00507853", + "urn:undefined:(WaOLN)nyp0206611" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Caldas (Colombia : Department) -- History." + ], + "titleDisplay": [ + "Historia del Gran Caldas / Ricardo de los Ríos Tobón." + ], + "uri": "b10006622", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Manizales, Colombia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "v. 1. Origenes y colonización hasta 1850." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10006622" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433097665214" + ], + "physicalLocation": [ + "HDK 84-1693" + ], + "m2CustomerCode": [ + "XA" + ], + "shelfMark_sort": "aHDK 84-1693 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746647", + "shelfMark": [ + "HDK 84-1693 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HDK 84-1693 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433097665214" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433097665214" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006645", + "_score": null, + "_source": { + "extent": [ + "a, 257 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Translation of: Algoritmy upravlen︠i︡a rabotami-manipul︠i︡atorami.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"JPRS 59717.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 245-252.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Photocopy.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Manipulators (Mechanism)", + "Robots, Industrial" + ], + "publisherLiteral": [ + "Joint Publications Research Service," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "1973" + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Robot-manipulator control algorithms" + ], + "shelfMark": [ + "JSF 83-552" + ], + "creatorLiteral": [ + "Ignatʹev, M. B. (Mikhail Borisovich)" + ], + "createdString": [ + "1984" + ], + "contributorLiteral": [ + "Kulakov, F. M. (Feliks Mikhaĭlovich)", + "Pokrovskiĭ, A. M." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 83-552" + }, + { + "type": "nypl:Bnumber", + "value": "10006645" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206634" + } + ], + "uniformTitle": [ + "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami. English" + ], + "dateEndYear": [ + 1973 + ], + "updatedAt": 1636073144930, + "publicationStatement": [ + "Arlington, Va. : Joint Publications Research Service, 1973." + ], + "identifier": [ + "urn:bnum:10006645", + "urn:undefined:(WaOLN)nyp0206634" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Manipulators (Mechanism)", + "Robots, Industrial." + ], + "titleDisplay": [ + "Robot-manipulator control algorithms / by M.B. Ignatʹyev, F.M. Kulakov, A.M. Pokrovskiy." + ], + "uri": "b10006645", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Arlington, Va. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami." + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10006645" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433037693748" + ], + "physicalLocation": [ + "JSF 83-552" + ], + "shelfMark_sort": "aJSF 83-000552", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12540383", + "shelfMark": [ + "JSF 83-552" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JSF 83-552" + }, + { + "type": "bf:Barcode", + "value": "33433037693748" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433037693748" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006687", + "_score": null, + "_source": { + "extent": [ + "v. : ill., ports, ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "publisherLiteral": [ + "Bókaútgáfan Skjaldborg," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-217" + ], + "creatorLiteral": [ + "Eiður Guðmundsson, 1888-1984." + ], + "createdString": [ + "1982" + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217" + }, + { + "type": "nypl:Bnumber", + "value": "10006687" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507920" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206676" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Akureyri : Bókaútgáfan Skjaldborg, 1982-" + ], + "identifier": [ + "urn:bnum:10006687", + "urn:undefined:NNSZ00507920", + "urn:undefined:(WaOLN)nyp0206676" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Skiđuhreppur (Iceland)", + "Öxnadalshreppur (Iceland)" + ], + "titleDisplay": [ + "Ritsafn / Eidur Gudmundsson Púfnav;ollum." + ], + "uri": "b10006687", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Akureyri :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10006687" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069567" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003946", + "shelfMark": [ + "JFL 84-217 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069567" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069567" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069559" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003945", + "shelfMark": [ + "JFL 84-217 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069559" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069559" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006688", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iceland", + "Iceland -- Economic conditions", + "Iceland -- History", + "Iceland -- Social conditions" + ], + "publisherLiteral": [ + "Mál og Menning," + ], + "language": [ + { + "id": "lang:ice", + "label": "Icelandic" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ritsafn" + ], + "shelfMark": [ + "JFL 84-216" + ], + "creatorLiteral": [ + "Sverrir Kristjánsson, 1908-" + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216" + }, + { + "type": "nypl:Bnumber", + "value": "10006688" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206677" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636127047675, + "publicationStatement": [ + "Reykjavík : Mál og Menning, 1981-" + ], + "identifier": [ + "urn:bnum:10006688", + "urn:undefined:NNSZ00507921", + "urn:undefined:(WaOLN)nyp0206677" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iceland -- Economic conditions.", + "Iceland -- History.", + "Iceland -- Social conditions." + ], + "titleDisplay": [ + "Ritsafn / Sverrir Kristjánsson." + ], + "uri": "b10006688", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Reykjavík :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10006688" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069542" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003948", + "shelfMark": [ + "JFL 84-216 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069542" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433004069542" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433004069534" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003947", + "shelfMark": [ + "JFL 84-216 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069534" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433004069534" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006699", + "_score": null, + "_source": { + "extent": [ + "483 p. : ill., ports ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 476-483.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dominican literature", + "Dominican literature -- Manuals, handbooks, etc", + "Latin American literature", + "Latin American literature -- Study and teaching", + "Latin American literature -- Study and teaching -- Handbooks, manuals, etc" + ], + "publisherLiteral": [ + "s.n.]," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media" + ], + "shelfMark": [ + "JFF 84-820" + ], + "createdString": [ + "1984" + ], + "contributorLiteral": [ + "Gómez de Michel, Fiume." + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 84-820" + }, + { + "type": "nypl:Bnumber", + "value": "10006699" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507932" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206688" + } + ], + "updatedAt": 1636114816670, + "publicationStatement": [ + "[Santo Domingo, R. D. : s.n.], 1984" + ], + "identifier": [ + "urn:bnum:10006699", + "urn:undefined:NNSZ00507932", + "urn:undefined:(WaOLN)nyp0206688" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dominican literature -- Manuals, handbooks, etc.", + "Latin American literature -- Study and teaching -- Handbooks, manuals, etc." + ], + "titleDisplay": [ + "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media / [compilación] Fiumé Gómez de Michel." + ], + "uri": "b10006699", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Santo Domingo, R. D. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10006699" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433050352214" + ], + "physicalLocation": [ + "JFF 84-820" + ], + "shelfMark_sort": "aJFF 84-000820", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784848", + "shelfMark": [ + "JFF 84-820" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 84-820" + }, + { + "type": "bf:Barcode", + "value": "33433050352214" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433050352214" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006705", + "_score": null, + "_source": { + "extent": [ + "v. : ill. (some col.);" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vernacular architecture", + "Vernacular architecture -- Greece", + "Architecture, Domestic", + "Architecture, Domestic -- Greece" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ekdot. Oikos \"Melissa,\"" + ], + "language": [ + { + "id": "lang:gre", + "label": "Greek, Modern (1453- )" + } + ], + "numItemsTotal": [ + 7 + ], + "createdYear": [ + 1982 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hellēnikē paradosiakē architektonikē" + ], + "shelfMark": [ + "3-MQW+ 84-2551" + ], + "numItemVolumesParsed": [ + 7 + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83177376" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Philippidēs, Dēmētrēs." + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551" + }, + { + "type": "nypl:Bnumber", + "value": "10006705" + }, + { + "type": "bf:Lccn", + "value": "83177376" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000864-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206694" + } + ], + "idOclc": [ + "NYPG005000864-B" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1683688426081, + "publicationStatement": [ + "Athēna : Ekdot. Oikos \"Melissa,\" c1982-" + ], + "identifier": [ + "urn:bnum:10006705", + "urn:lccn:83177376", + "urn:oclc:NYPG005000864-B", + "urn:undefined:(WaOLN)nyp0206694" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vernacular architecture -- Greece.", + "Architecture, Domestic -- Greece." + ], + "titleDisplay": [ + "Hellēnikē paradosiakē architektonikē / symvoulos kai syntonistēs tēs ekdosēs, Dēmētrēs Philippidēs ; [phōtographies, V. Voutsas]." + ], + "uri": "b10006705", + "lccClassification": [ + "NA1091 .H44 1982" + ], + "numItems": [ + 7 + ], + "numAvailable": [ + 7 + ], + "placeOfPublication": [ + "Athēna" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "t. 1. Anatoliko Aigaio. Sporades. Heptanēsa -- t. 2. Kyklades -- t. 3. Dōdekanēsa-Krētē -- t. 4. Peloponnēsos I -- t. 5 Peloponnesos II, Sterea Hellada -- t. 6. Thessalia-Ēpeiros -- t. 7. Makedonia I." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10006705" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 7, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160679" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 7-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746675", + "shelfMark": [ + "3-MQW+ 84-2551 v. 7" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 7, + "lte": 7 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 7-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160661" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746674", + "shelfMark": [ + "3-MQW+ 84-2551 v. 6" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160653" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746673", + "shelfMark": [ + "3-MQW+ 84-2551 v. 5" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 5, + "lte": 5 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 5-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160646" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000004", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 4-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746672", + "shelfMark": [ + "3-MQW+ 84-2551 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433105160646" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433105160646" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 4, + "lte": 4 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 4-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160638" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000003", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746671", + "shelfMark": [ + "3-MQW+ 84-2551 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433105160638" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433105160638" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 3-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160620" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000002", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746670", + "shelfMark": [ + "3-MQW+ 84-2551 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433105160620" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433105160620" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433105160612" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000001", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i14746669", + "shelfMark": [ + "3-MQW+ 84-2551 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433105160612" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433105160612" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006715", + "_score": null, + "_source": { + "extent": [ + "v. : ill. (some ed.);" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on spine: 2222.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Austria", + "Austria -- Relations", + "Austria -- Relations -- United States", + "United States", + "United States -- Relations", + "United States -- Relations -- Austria" + ], + "publisherLiteral": [ + "The author," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Quadruple 2" + ], + "shelfMark": [ + "ICM (Austria) 85-584" + ], + "creatorLiteral": [ + "Humes, John P." + ], + "createdString": [ + "1970" + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "ICM (Austria) 85-584" + }, + { + "type": "nypl:Bnumber", + "value": "10006715" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507948" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206704" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636124417162, + "publicationStatement": [ + "[S.l. : The author, 197-]" + ], + "identifier": [ + "urn:bnum:10006715", + "urn:undefined:NNSZ00507948", + "urn:undefined:(WaOLN)nyp0206704" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Austria -- Relations -- United States.", + "United States -- Relations -- Austria." + ], + "titleDisplay": [ + "Quadruple 2 / by John P. Humes." + ], + "uri": "b10006715", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "2222.", + "Quadruple two." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10006715" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433090390752" + ], + "physicalLocation": [ + "ICM (Austria) 85-584" + ], + "shelfMark_sort": "aICM (Austria) 85-584 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14746681", + "shelfMark": [ + "ICM (Austria) 85-584 v. 2" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006720", + "_score": null, + "_source": { + "extent": [ + "[24] p. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Issued in portfolio.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Delius, Frederick, 1862-1934" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "The Trust" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1984 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Delius, 1862-1934" + ], + "shelfMark": [ + "JMF 84-424" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Delius Trust." + ], + "createdString": [ + "1984" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1984 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 84-424" + }, + { + "type": "nypl:Bnumber", + "value": "10006720" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000879-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507953" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000020" + } + ], + "idOclc": [ + "NYPG005000879-B" + ], + "updatedAt": 1689717208164, + "publicationStatement": [ + "London : The Trust, [1984]" + ], + "identifier": [ + "urn:bnum:10006720", + "urn:oclc:NYPG005000879-B", + "urn:undefined:NNSZ00507953", + "urn:undefined:(WaOLN)nyp0000020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Delius, Frederick, 1862-1934." + ], + "titleDisplay": [ + "Delius, 1862-1934 / compiled by the Delius Trust to mark the 50th anniversary of his death." + ], + "uri": "b10006720", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "A short biography -- A select bibliography -- A select discography -- List of works -- The collected edition. -- Calendar of performances and events, 1984." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10006720" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942253", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 84-424" + ], + "identifierV2": [ + { + "value": "JMF 84-424", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032723599" + } + ], + "physicalLocation": [ + "JMF 84-424" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032723599" + ], + "idBarcode": [ + "33433032723599" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJMF 84-000424" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:07 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "200268", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"lte\":1985}}},{\"range\":{\"dateEndYear\":{\"lte\":1985}}}]}},{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"gte\":1984}}},{\"range\":{\"dateEndYear\":{\"gte\":1984}}}]}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "760" + }, + "timeout": 30000 + }, + "options": {}, + "id": 52 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-cf0e287ac48c9c7f060cd8497214322e.json b/test/fixtures/query-cf0e287ac48c9c7f060cd8497214322e.json new file mode 100644 index 00000000..18a454e8 --- /dev/null +++ b/test/fixtures/query-cf0e287ac48c9c7f060cd8497214322e.json @@ -0,0 +1,999 @@ +{ + "body": { + "took": 29, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 30.012762, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b22144813", + "_score": 30.012762, + "_source": { + "extent": [ + "1234, [1] pages, x leaves : illustrations ;", + "1234, [1] p., x leaves : ill. ;", + "Third description instance : More 3rd instance ;" + ], + "partOf": [ + "In: -- 773 0b" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Publication Date (unformated) -- 362 1b" + ], + "publisherLiteral": [ + "Specious Publ. [prev.pub.-- 260.2b]", + "CopyCat pub. co. -- 260 bb" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 201 + ], + "parallelTitle": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "Q-TAG (852 8b q tag. Staff call in bib.)" + ], + "idLccn": [ + "LCCN -- 010", + "9790001138673", + "ISMN", + "Danacode", + "UPC", + "EAN" + ], + "idIssn": [ + "ISSN -- 022" + ], + "seriesStatement": [ + "440 Series ; v. number -- 440 b0", + "490 Series ; v. number -- 490 0b", + "Author, of series. CMA Test Records. -- 800 1b", + "CMA (Cat). CMA Test Records -- 810 2b " + ], + "dateStartYear": [ + 201 + ], + "parallelCreatorLiteral": [ + "‏גלוגר,מרים פ." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Q-TAG (852 8b q tag. Staff call in bib.)" + }, + { + "type": "nypl:Bnumber", + "value": "22144813" + }, + { + "type": "bf:Isbn", + "value": "0123456789" + }, + { + "type": "bf:Isbn", + "value": "9780123456786 (qualifier)" + }, + { + "type": "bf:Isbn", + "value": "ISBN -- 020" + }, + { + "type": "bf:Isbn", + "identifierStatus": "canceled/invalid", + "value": "ISBN -- 020 $z" + }, + { + "type": "bf:Lccn", + "value": "LCCN -- 010" + }, + { + "type": "bf:Lccn", + "value": "9790001138673" + }, + { + "type": "bf:Lccn", + "value": "ISMN" + }, + { + "type": "bf:Lccn", + "value": "Danacode" + }, + { + "type": "bf:Lccn", + "value": "UPC" + }, + { + "type": "bf:Lccn", + "value": "EAN" + }, + { + "type": "bf:Issn", + "value": "ISSN -- 022" + }, + { + "type": "bf:Identifier", + "value": "Report number. -- 027" + }, + { + "type": "bf:Identifier", + "value": "Publisher no. -- 028 02 " + }, + { + "type": "bf:Identifier", + "value": "Standard number (old RLIN, etc.) -- 035" + }, + { + "type": "bf:Identifier", + "value": "Sudoc no. -- 086" + }, + { + "type": "bf:Identifier", + "value": "GPO Item number. -- 074" + } + ], + "formerTitle": [ + "Former title -- 247 00" + ], + "updatedAt": 1697570720189, + "publicationStatement": [ + "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", + "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "identifier": [ + "urn:shelfmark:Q-TAG (852 8b q tag. Staff call in bib.)", + "urn:bnum:22144813", + "urn:isbn:0123456789", + "urn:isbn:9780123456786 (qualifier)", + "urn:isbn:ISBN -- 020", + "urn:isbn:ISBN -- 020 $z", + "urn:lccn:LCCN -- 010", + "urn:lccn:9790001138673", + "urn:lccn:ISMN", + "urn:lccn:Danacode", + "urn:lccn:UPC", + "urn:lccn:EAN", + "urn:issn:ISSN -- 022", + "urn:identifier:Report number. -- 027", + "urn:identifier:Publisher no. -- 028 02 ", + "urn:identifier:Standard number (old RLIN, etc.) -- 035", + "urn:identifier:Sudoc no. -- 086", + "urn:identifier:GPO Item number. -- 074" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Starving artist -- 600 00.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term -- 653" + ], + "titleAlt": [ + "Abrev. title -- 210 ", + "Key title -- 222 ", + "T tagged 240 Uniform title -- t240", + "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", + "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", + "Portion of title 246 30", + "Parallel title 246 31", + "Distinctive title 246 12", + "Other title 246 13", + "Cover title 246 14", + "Cover title 246 04", + "Added title page title 246 15", + "Running title 246 17", + "Caption title 246 16", + "Spine title 246 18", + "No type of title specified 246 3 blank", + "246 1 blank", + "Zaglavie Russiĭi", + "Added title -- 740 0b" + ], + "tableOfContents": [ + "Complete table of contents. -- 505 0b", + "1. Incomplete table of contents. -- First instance.-- 505 1b", + "2. Incomplete table of contents -- Second instance. 505 1b", + "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", + "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." + ], + "note": [ + { + "noteType": "Note", + "label": "Ordinary note. -- 500", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "²³¹", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "⠀⠀⠀\\___( ツ )___", + "type": "bf:Note" + }, + { + "noteType": "With", + "label": "Bound with note. -- 501", + "type": "bf:Note" + }, + { + "noteType": "Thesis", + "label": "Thesis -- (degree) note. -- 502", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [1235]). -- 504", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access -- 506 blank,any", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Restricted Access -- 506 1,any", + "type": "bf:Note" + }, + { + "noteType": "Scale", + "label": "Scale (graphic) -- 507", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Credits (Creation/production credits note) -- 508", + "type": "bf:Note" + }, + { + "noteType": "Performer", + "label": "Cast --511 1b", + "type": "bf:Note" + }, + { + "noteType": "Type of Report", + "label": "Type of Report. -- 513", + "type": "bf:Note" + }, + { + "noteType": "Data Quality", + "label": "Data quality -- 514", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Completely irregular. -- 515", + "type": "bf:Note" + }, + { + "noteType": "File Type", + "label": "File type. -- 516", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Event. -- 518", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", + "type": "bf:Note" + }, + { + "noteType": "Audience", + "label": "Audience (2): Test of 2nd 521 field.", + "type": "bf:Note" + }, + { + "noteType": "Coverage", + "label": "Coverage -- 522", + "type": "bf:Note" + }, + { + "noteType": "Cite As", + "label": "Cite as: The Mega-MARC test record. -- 524", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Supplement -- 525", + "type": "bf:Note" + }, + { + "noteType": "Study Program", + "label": "Study program -- 526 8b ", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Other test records available. -- 530", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Original Location", + "label": "Original location in SASB -- 535", + "type": "bf:Note" + }, + { + "noteType": "Funding", + "label": "Funding -- 536", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "System Details -- 538", + "type": "bf:Note" + }, + { + "noteType": "Terms of Use", + "label": "Use as test record -- 540", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source display-- 5411b", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", + "type": "bf:Note" + }, + { + "noteType": "Location of Other Archival Materials", + "label": "Location of Other Archival Materials -- 544", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 545", + "type": "bf:Note" + }, + { + "noteType": "Biography", + "label": "Biography -- 5451 Administrative history", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In English and non-roman scripts. -- 546", + "type": "bf:Note" + }, + { + "noteType": "Former Title", + "label": "Former title (complexity note) -- 547", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Issued by CCO -- 550", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Indexes -- 555 bb", + "type": "bf:Note" + }, + { + "noteType": "Documentation", + "label": "Documentation (information about, note) -- 556", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance display --5611b", + "type": "bf:Note" + }, + { + "noteType": "Provenance", + "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", + "type": "bf:Note" + }, + { + "noteType": "Copy/Version", + "label": "Copy/Version (identification note) -- 562", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Binding -- 563", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Complemented by Linking entry: Bogus title -- 580", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Linking Entry (complexity note) -- 580", + "type": "bf:Note" + }, + { + "noteType": "Publications", + "label": "Publications (about described material note) -- 581", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action display --583 1b", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", + "type": "bf:Note" + }, + { + "noteType": "Exhibitions", + "label": "Exhibitions -- 585", + "type": "bf:Note" + }, + { + "noteType": "Awards", + "label": "Awards -- 586", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Latest issue consulted: 1900/1901. -- 588 1b", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Starving artist", + "Starving artist -- 600 00", + "Artist, Starving, 1900-1999", + "Artist, Starving, 1900-1999 -- Autobiography.", + "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", + "testing 4 testing a testing b testing c testing d testing e testing g", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Corporate body subject.", + "Corporate body subject. -- 610 20", + "Secret Society of Catalogers", + "Secret Society of Catalogers -- Periodicals.", + "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", + "testing x as first subfield", + "testing x as first subfield -- testing v as second subfield.", + "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", + "Conference subject entry.", + "Conference subject entry. -- 611 20", + "Stonecutters' Annual Picnic 1995 : Springfield)", + "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", + "testing 4 testing a testing c testing d testing e testing g", + "testing 4 testing a testing c testing d testing e testing g -- testing v", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Uniform title", + "Life is a common square.", + "Life is a common square. -- Criticism.", + "Life is a common square. -- Criticism. -- 630 00 $l, $x", + "testing 4 testing a testing d testing e testing g", + "testing 4 testing a testing d testing e testing g -- testing v", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Textile industry testing datetesting", + "Textile industry testing datetesting -- 650 b0 $z, $x", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India", + "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", + "testing 4 testing a testing b testing c testing d testing e", + "testing 4 testing a testing b testing c testing d testing e -- testing v", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", + "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", + "New York (N.Y.)", + "New York (N.Y.) -- 21st century", + "New York (N.Y.) -- 21st century -- Diaries.", + "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", + "Undiscovered country.", + "Undiscovered country. -- 651 b0", + "testing 4 testing a testing e testing g", + "testing 4 testing a testing e testing g -- testing v", + "testing 4 testing a testing e testing g -- testing v -- testing x", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", + "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", + "Indexed term", + "Indexed term -- 653" + ], + "numItemDatesParsed": [ + 0 + ], + "description": [ + "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", + "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "2011" + ], + "title": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "201" + ], + "creatorLiteral": [ + "Gloger, Miriam.", + "BookOps. Cataloging. --110 2b ab.", + "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" + ], + "numElectronicResources": [ + 4 + ], + "contributorLiteral": [ + "Cramer, Richard, 1948-.", + "Cramer, Richard, 1948-", + "Bayer, Jeffrey.", + "Bayer, Jeffrey", + "New York Public Library Database Management Group. -- 710 2b", + "Conference added author. 711 2b", + "Added entry (uncontrolled name) -- 7201", + "Cramer, Richard, 1948- fmo", + "Virtual collection -- 791 2b" + ], + "donor": [ + "Donor / Sponsor -- 799 bb" + ], + "uniformTitle": [ + "T tagged 240 Uniform title -- t240", + "Added title -- 730 0b", + "CMA Test Records -- 830 b0" + ], + "dateEndYear": [ + 2011 + ], + "parallelTitleAlt": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "зглавие руссий" + ], + "genreForm": [ + "Genre heading.", + "Blank pages and looks – Someplace – 1990.", + "testing a – testing b – testing c – testing v – testing x – testing y – testing z" + ], + "idIsbn": [ + "0123456789", + "9780123456786 (qualifier)", + "ISBN -- 020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "201" + ], + "titleDisplay": [ + "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." + ], + "uri": "b22144813", + "electronicResources": [ + { + "label": "856 40", + "url": "http://blogs.nypl.org/rcramer/" + }, + { + "label": "Yizkor Book (NYPL resource) 856 41", + "url": "http://yizkor.nypl.org/index.php?id=2936" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" + } + ], + "parallelTitleDisplay": [ + "‏כותר שאינו באותיות לטינית = зглавие руссий." + ], + "placeOfPublication": [ + "[s.l.]", + "Long Island CIty, N.Y.", + "Production -- 264 b0 (RDA) ", + "Publisher -- 264 b1 (RDA)", + "Distributor -- 264 b2 (RDA)", + "Manufacturer -- 264 b3 (RDA)", + "Copyright Date -- 264 b4 (RDA)", + "Earlier Publisher -- 264 21 (RDA)", + "Earlier Distributor -- 264 22 (RDA)", + "Earlier Manufacturer -- 264 23 (RDA)", + "Earlier Copyright Date -- 264 24 (RDA)", + "Latest Publisher -- 264 31 (RDA)", + "Latest Distributor -- 264 32 (RDA)", + "Latest Manufacturer -- 264 33 (RDA)", + "Latest Copyright Date -- 264 34 (RDA)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "supplementaryContent": [ + { + "label": "Contents", + "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" + }, + { + "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" + } + ], + "dimensions": [ + "26 cm +", + "26 cm. +", + "More 3rd instance -- 300 (3rd instance)" + ], + "idIsbn_clean": [ + "0123456789", + "9780123456786", + "020" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.1" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } + ], + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "3333333333" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "type": "bf:ShelfMark" + }, + { + "value": "3333333333", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + false + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "uri": "i37857771" + }, + "sort": [ + " 1-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "enumerationChronology": [ + "nothing" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "44455533322211" + ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" + ], + "identifierV2": [ + { + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "type": "bf:ShelfMark" + }, + { + "value": "44455533322211", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "requestable": [ + true + ], + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i37857772" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:10 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "19777", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"function_score\":{\"query\":{\"bool\":{\"must\":[{\"bool\":{\"should\":[{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"Danacode\",\"default_operator\":\"AND\"}},{\"query_string\":{\"fields\":[\"shelfMark\",\"identifierV2.value\",\"uri\",\"identifier\",\"idIsbn_clean\"],\"query\":\"\\\"Danacode\\\"\",\"default_operator\":\"AND\"}},{\"nested\":{\"path\":\"items\",\"query\":{\"query_string\":{\"fields\":[\"items.shelfMark\"],\"query\":\"Danacode\",\"default_operator\":\"AND\"}}}}]}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}},\"min_score\":0.65,\"sort\":[\"_score\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1030" + }, + "timeout": 30000 + }, + "options": {}, + "id": 58 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-d1d6ee98f88d468431f7ec807e910aad.json b/test/fixtures/query-d1d6ee98f88d468431f7ec807e910aad.json deleted file mode 100644 index 0482e5db..00000000 --- a/test/fixtures/query-d1d6ee98f88d468431f7ec807e910aad.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "took": 140, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 109.728226, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b12709113", - "_score": 109.728226, - "_source": { - "extent": [ - "iv, 350 p. : ill., port. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington County (Neb.)", - "Washington County (Neb.) -- History" - ], - "publisherLiteral": [ - "Magic city printing co.," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1937 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A history of Washington county, Nebraska" - ], - "shelfMark": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "creatorLiteral": [ - "Shrader, Forrest B." - ], - "createdString": [ - "1937" - ], - "dateStartYear": [ - 1937 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - }, - { - "type": "nypl:Bnumber", - "value": "12709113" - } - ], - "updatedAt": 1636332069027, - "publicationStatement": [ - "[Omaha, : Magic city printing co., 1937]" - ], - "identifier": [ - "urn:bnum:12709113" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1937" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington County (Neb.) -- History." - ], - "titleDisplay": [ - "A history of Washington county, Nebraska / by Forrest B. Shrader." - ], - "uri": "b12709113", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Omaha, :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i16202472", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "identifierV2": [ - { - "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433099509238" - } - ], - "physicalLocation": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - ], - "identifier": [ - "urn:barcode:33433099509238" - ], - "idBarcode": [ - "33433099509238" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aIWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json b/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json index 8ea0bb49..34946a8a 100644 --- a/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json +++ b/test/fixtures/query-d30b11438fadbf33762e80d55a2991da.json @@ -1,32 +1,80 @@ { - "took": 5, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 0, - "hits": [] - }, - "aggregations": { - "statuses": { - "doc_count": 128, - "nonrecap_statuses": { - "doc_count": 1, - "nonrecap_status_buckets": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:co||Loaned", - "doc_count": 1 - } - ] + "body": { + "took": 7, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 0, + "hits": [] + }, + "aggregations": { + "statuses": { + "doc_count": 128, + "nonrecap_statuses": { + "doc_count": 1, + "nonrecap_status_buckets": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:co||Loaned", + "doc_count": 1 + } + ] + } } } } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:57 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "341", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":0,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b18932917\"}}]}},\"_source\":{\"includes\":[\"uri\"]},\"aggs\":{\"statuses\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"nonrecap_statuses\":{\"filter\":{\"bool\":{\"must_not\":{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}}}},\"aggs\":{\"nonrecap_status_buckets\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "347" + }, + "timeout": 30000 + }, + "options": {}, + "id": 36 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json b/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json index afc85bc8..d67238c4 100644 --- a/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json +++ b/test/fixtures/query-d3ffa10ceddb6785fcc94c17b23cc16a.json @@ -1,710 +1,745 @@ { - "took": 8, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.361867, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b11984689", - "_score": 14.361867, - "_source": { - "extent": [ - "v. ill." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Established 1900.\"", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Most issues lack subtitle.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "v. 42, no. 1-v. 62, no. 7; Jan. 1942-July 1962." - ], - "subjectLiteral_exploded": [ - "Woodwork", - "Woodwork -- Periodicals" - ], - "numItemDatesParsed": [ - 19 - ], - "publisherLiteral": [ - "Southam-Maclean Publications [etc.]" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 19 - ], - "createdYear": [ - 1942 - ], - "dateEndString": [ - "1962" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Canadian woodworker; millwork, furniture, plywood." - ], - "shelfMark": [ - "VMA (Canadian woodworker)" - ], - "numItemVolumesParsed": [ - 19 - ], - "createdString": [ - "1942" - ], - "idLccn": [ - "cn 76300447" - ], - "idIssn": [ - "0316-9669" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1942 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "VMA (Canadian woodworker)" - }, - { - "type": "nypl:Bnumber", - "value": "11984689" - }, - { - "type": "bf:Issn", - "value": "0316-9669" - }, - { - "type": "bf:Lccn", - "value": "cn 76300447" - }, - { - "type": "nypl:Oclc", - "value": "NYPG94-S11794" + "body": { + "took": 21, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 14.457149, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b11984689", + "_score": 14.457149, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Established 1900.\"", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Most issues lack subtitle.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "v. 42, no. 1-v. 62, no. 7; Jan. 1942-July 1962." + ], + "subjectLiteral_exploded": [ + "Woodwork", + "Woodwork -- Periodicals" + ], + "numItemDatesParsed": [ + 19 + ], + "publisherLiteral": [ + "Southam-Maclean Publications [etc.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 19 + ], + "createdYear": [ + 1942 + ], + "dateEndString": [ + "1962" + ], + "title": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker)" + ], + "numItemVolumesParsed": [ + 19 + ], + "createdString": [ + "1942" + ], + "idLccn": [ + "cn 76300447" + ], + "idIssn": [ + "0316-9669" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1942 + ], + "idOclc": [ + "NYPG94-S11794" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker)" + }, + { + "type": "nypl:Bnumber", + "value": "11984689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG94-S11794" + }, + { + "type": "bf:Lccn", + "value": "cn 76300447" + }, + { + "type": "bf:Issn", + "value": "0316-9669" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1974025" + }, + { + "type": "bf:Identifier", + "value": "RCON-STC" + } + ], + "dateEndYear": [ + 1962 + ], + "updatedAt": 1698410917342, + "publicationStatement": [ + "Don Mills, Ont. [etc.] Southam-Maclean Publications [etc.]" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker)", + "urn:bnum:11984689", + "urn:oclc:NYPG94-S11794", + "urn:lccn:cn 76300447", + "urn:issn:0316-9669", + "urn:identifier:(WaOLN)nyp1974025", + "urn:identifier:RCON-STC" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1942" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwork -- Periodicals." + ], + "titleDisplay": [ + "Canadian woodworker; millwork, furniture, plywood." + ], + "uri": "b11984689", + "placeOfPublication": [ + "Don Mills, Ont. [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Canadian woodworker (1942)", + "Canadian woodworker and furniture manufacturer Jan.-Mar. 1942" + ], + "dimensions": [ + "29 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1974025" + "allItems": { + "hits": { + "total": 19, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": 1, + "_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": "1944", + "lte": "1944" + } + ], + "enumerationChronology": [ + "v. 44 (1944)" + ], + "enumerationChronology_sort": [ + " 44-1944" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812199" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", + "urn:barcode:33433102812199" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 44 (1944)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812199", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "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" + } + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": 1, + "_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": "1945", + "lte": "1945" + } + ], + "enumerationChronology": [ + "v. 45 (1945)" + ], + "enumerationChronology_sort": [ + " 45-1945" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812025" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 45 (1945)", + "urn:barcode:33433102812025" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 45 (1945)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812025", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 45 (1945)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000045 (1945)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 45, + "lte": 45 + } + ], + "uri": "i29976057" + } + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": 1, + "_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": "1946", + "lte": "1946" + } + ], + "enumerationChronology": [ + "v. 46 (1946)" + ], + "enumerationChronology_sort": [ + " 46-1946" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812173" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 46 (1946)", + "urn:barcode:33433102812173" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 46 (1946)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812173", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "requestable": [ + true + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 46 (1946)" + ], + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000046 (1946)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 46, + "lte": 46 + } + ], + "uri": "i29976059" + } + } + ] + } }, - { - "type": "bf:Identifier", - "value": "RCON-STC" - } - ], - "idOclc": [ - "NYPG94-S11794" - ], - "dateEndYear": [ - 1962 - ], - "updatedAt": 1689280352482, - "publicationStatement": [ - "Don Mills, Ont. [etc.] Southam-Maclean Publications [etc.]" - ], - "identifier": [ - "urn:bnum:11984689", - "urn:issn:0316-9669", - "urn:lccn:cn 76300447", - "urn:oclc:NYPG94-S11794", - "urn:undefined:(WaOLN)nyp1974025", - "urn:undefined:RCON-STC" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "enumerationChronology": [ + "v. 44 (1944)" + ], + "enumerationChronology_sort": [ + " 44-1944" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812199" + ], + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", + "urn:barcode:33433102812199" + ], + "identifierV2": [ + { + "value": "VMA (Canadian woodworker) v. 44 (1944)", + "type": "bf:ShelfMark" + }, + { + "value": "33433102812199", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "VMA (Canadian woodworker)" + ], + "recapCustomerCode": [ + "JS" + ], + "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" + ] + } + ] + } } - ], - "carrierType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "carriertypes:nc", - "label": "volume" + "key": "loc:rc2ma||Offsite", + "doc_count": 19 } - ], - "dateString": [ - "1942" - ], - "mediaType": [ + ] + } + }, + "item_format": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "Text", + "doc_count": 19 } - ], - "subjectLiteral": [ - "Woodwork -- Periodicals." - ], - "titleDisplay": [ - "Canadian woodworker; millwork, furniture, plywood." - ], - "uri": "b11984689", - "numItems": [ - 19 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Don Mills, Ont. [etc.]" - ], - "titleAlt": [ - "Canadian woodworker (1942)", - "Canadian woodworker and furniture manufacturer Jan.-Mar. 1942" - ], - "issuance": [ + ] + } + }, + "item_status": { + "doc_count": 19, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:s", - "label": "serial" + "key": "status:a||Available", + "doc_count": 19 } - ], - "dimensions": [ - "29 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "allItems": { - "hits": { - "total": 19, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": 1, - "_source": { - "uri": "i29978114", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)" - ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102813007" - } - ], - "enumerationChronology": [ - "v. 62 (Jan. -July 1962)" - ], - "physicalLocation": [ - "VMA (Canadian woodworker)" - ], - "recapCustomerCode": [ - "JS" - ], - "identifier": [ - "urn:barcode:33433102813007" - ], - "idBarcode": [ - "33433102813007" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2023-08-15" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "dateRange": [ - { - "gte": "1962", - "lte": "1962" - } - ], - "enumerationChronology_sort": [ - " 62-1962" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000062 (Jan. -July 1962)" - } - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": 1, - "_source": { - "uri": "i29978115", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 61 (1961)" - ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 61 (1961)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102812850" - } - ], - "enumerationChronology": [ - "v. 61 (1961)" - ], - "physicalLocation": [ - "VMA (Canadian woodworker)" - ], - "recapCustomerCode": [ - "JS" - ], - "identifier": [ - "urn:barcode:33433102812850" - ], - "idBarcode": [ - "33433102812850" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2023-08-15" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "dateRange": [ - { - "gte": "1961", - "lte": "1961" - } - ], - "enumerationChronology_sort": [ - " 61-1961" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000061 (1961)" - } - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": 1, - "_source": { - "uri": "i29978117", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 60 (1960)" - ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 60 (1960)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102812553" - } - ], - "enumerationChronology": [ - "v. 60 (1960)" - ], - "physicalLocation": [ - "VMA (Canadian woodworker)" - ], - "recapCustomerCode": [ - "JS" - ], - "identifier": [ - "urn:barcode:33433102812553" - ], - "idBarcode": [ - "33433102812553" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2023-08-15" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "dateRange": [ - { - "gte": "1960", - "lte": "1960" - } - ], - "enumerationChronology_sort": [ - " 60-1960" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000060 (1960)" - } - } - ] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i29976055", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 44 (1944)" - ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 44 (1944)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433102812199" - } - ], - "enumerationChronology": [ - "v. 44 (1944)" - ], - "physicalLocation": [ - "VMA (Canadian woodworker)" - ], - "recapCustomerCode": [ - "JS" - ], - "identifier": [ - "urn:barcode:33433102812199" - ], - "idBarcode": [ - "33433102812199" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "dueDate": [ - "2023-07-11" - ], - "volumeRange": [ - { - "gte": 44, - "lte": 44 - } - ], - "dateRange": [ - { - "gte": "1944", - "lte": "1944" - } - ], - "enumerationChronology_sort": [ - " 44-1944" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000044 (1944)" - }, - "sort": [ - " 44-1944" - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 19, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:rc2ma||Offsite", - "doc_count": 19 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:56 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "8484", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b11984689\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"term\":{\"items.uri\":\"i29976055\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1103" + }, + "timeout": 30000 + }, + "options": {}, + "id": 29 }, - "item_format": { - "doc_count": 19, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "Text", - "doc_count": 19 - } - ] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 19, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:co||Loaned", - "doc_count": 19 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-d818d68da1ce53dad67bfe8f6aa95de7.json b/test/fixtures/query-d818d68da1ce53dad67bfe8f6aa95de7.json deleted file mode 100644 index 42fbd0dd..00000000 --- a/test/fixtures/query-d818d68da1ce53dad67bfe8f6aa95de7.json +++ /dev/null @@ -1,24457 +0,0 @@ -{ - "took": 476, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 299, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004373", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994" - ], - "publisherLiteral": [ - "Karnāṭaka Sahakārī Prakāśana Mandira" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu." - ], - "shelfMark": [ - "*OLA 83-3417" - ], - "creatorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902119" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417" - }, - { - "type": "nypl:Bnumber", - "value": "10004373" - }, - { - "type": "bf:Lccn", - "value": "72902119" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304738" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204365" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636109940889, - "publicationStatement": [ - "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" - ], - "identifier": [ - "urn:bnum:10004373", - "urn:lccn:72902119", - "urn:undefined:NNSZ00304738", - "urn:undefined:(WaOLN)nyp0204365" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994." - ], - "titleDisplay": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." - ], - "uri": "b10004373", - "lccClassification": [ - "PL4659.P797 S7934" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004373" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003188", - "shelfMark": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417 Library has: Vol. 1, 3." - }, - { - "type": "bf:Barcode", - "value": "33433001707623" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001707623" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057523718" - ], - "physicalLocation": [ - "*OLA 83-341" - ], - "shelfMark_sort": "a*OLA 83-341 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858227", - "shelfMark": [ - "*OLA 83-341 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-341 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057523718" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057523718" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10008327", - "_score": null, - "_source": { - "extent": [ - "v. : ill ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Editors vary.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Folk literature, Kannada", - "Folk literature, Kannada -- History and criticism" - ], - "publisherLiteral": [ - "Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jānapada sāhityadarśana" - ], - "shelfMark": [ - "*OLA 83-2636" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75904046" - ], - "seriesStatement": [ - "Jānapada sammēḷana smaraṇe ; 1-2, 4" - ], - "contributorLiteral": [ - "Hiremath, Rudrayya Chandrayya, 1922-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636" - }, - { - "type": "nypl:Bnumber", - "value": "10008327" - }, - { - "type": "bf:Lccn", - "value": "75904046" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00609733" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0208308" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108824394, - "publicationStatement": [ - "Dhāravāḍa : Kannaḍa Adhyayana Pīṭha, Karnāṭaka Viśvavidyālaya, 1974-" - ], - "identifier": [ - "urn:bnum:10008327", - "urn:lccn:75904046", - "urn:undefined:NNSZ00609733", - "urn:undefined:(WaOLN)nyp0208308" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk literature, Kannada -- History and criticism." - ], - "titleDisplay": [ - "Jānapada sāhityadarśana / sampādakaru Ār. Si. Hirēmaṭha." - ], - "uri": "b10008327", - "lccClassification": [ - "PL4654 .J3" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Dhāravāḍa :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10008327" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013119130" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004641", - "shelfMark": [ - "*OLA 83-2636 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013119130" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013119130" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005544246" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004640", - "shelfMark": [ - "*OLA 83-2636 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433005544246" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433005544246" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433005544238" - ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10004639", - "shelfMark": [ - "*OLA 83-2636 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2636 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433005544238" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433005544238" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011457", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographic references and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada and Sanskrit (Kannada script), includes quotations in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Music", - "Music -- India", - "Music -- India -- History and criticism", - "Carnatic music", - "Carnatic music -- History and criticism" - ], - "publisherLiteral": [ - "Prasārāṅga, Maisuru Viśvavidyanilaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Śārṅgadēva viracita Saṅgītaratnākara : Nihśaṅkahrdaya vemba Kannaḍa vyākhyāna samēta" - ], - "shelfMark": [ - "JMM 86-1" - ], - "creatorLiteral": [ - "Śārṅgadeva." - ], - "createdString": [ - "1968" - ], - "contributorLiteral": [ - "Satyanarayana, R." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMM 86-1" - }, - { - "type": "nypl:Bnumber", - "value": "10011457" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213437" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211429" - } - ], - "uniformTitle": [ - "Saṅgītaratnākara" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404645341, - "publicationStatement": [ - "Maisūru : Prasārāṅga, Maisuru Viśvavidyanilaya, 1968-" - ], - "identifier": [ - "urn:bnum:10011457", - "urn:undefined:NNSZ01213437", - "urn:undefined:(WaOLN)nyp0211429" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Music -- India -- History and criticism.", - "Carnatic music -- History and criticism." - ], - "titleDisplay": [ - "Śrī Śārṅgadēva viracita Saṅgītaratnākara : Nihśaṅkahrdaya vemba Kannaḍa vyākhyāna samēta / anuvāda mattu vyākhyāna, Ra. Satyanārāyaṇa (Maisūru Sahōdararu)." - ], - "uri": "b10011457", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Saṅgītaratnākara", - "Niḥśaṅkahrdaya." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10011457" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433068848849" - ], - "physicalLocation": [ - "JMM 86-1" - ], - "shelfMark_sort": "aJMM 86-1 v. 000001, pt. 1", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14747261", - "shelfMark": [ - "JMM 86-1 v. 1, pt. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMM 86-1 v. 1, pt. 1" - }, - { - "type": "bf:Barcode", - "value": "33433068848849" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "enumerationChronology": [ - "v. 1, pt. 1" - ], - "idBarcode": [ - "33433068848849" - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011462", - "_score": null, - "_source": { - "extent": [ - "v. illus., maps (part fold.)" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "India", - "India -- Description and travel" - ], - "publisherLiteral": [ - "Prasārāṅga, Maisūru Viśvavidyānilaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Pravāsi kaṇḍa Iṇḍiyā." - ], - "shelfMark": [ - "*OLA 86-308" - ], - "creatorLiteral": [ - "Nāgēgauḍa, H. L." - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 67002221" - ], - "seriesStatement": [ - "Maisūru Viśvavidyānilaya Kannaḍa granthamāle, 71, 84" - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-308" - }, - { - "type": "nypl:Bnumber", - "value": "10011462" - }, - { - "type": "bf:Lccn", - "value": "sa 67002221" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213442" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211434" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636123272140, - "publicationStatement": [ - "[Maisūru] Prasārāṅga, Maisūru Viśvavidyānilaya, 1964-" - ], - "identifier": [ - "urn:bnum:10011462", - "urn:lccn:sa 67002221", - "urn:undefined:NNSZ01213442", - "urn:undefined:(WaOLN)nyp0211434" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "India -- Description and travel." - ], - "titleDisplay": [ - "Pravāsi kaṇḍa Iṇḍiyā. [Lēkhaka] Ec. El. Nāgēgauḍa." - ], - "uri": "b10011462", - "lccClassification": [ - "DS409 .N3" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Maisūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10011462" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999664" - ], - "physicalLocation": [ - "*OLA 86-308|zLibrary has: Vol. 4, 6." - ], - "shelfMark_sort": "a*OLA 86-308|zLibrary has: Vol. 4, 6. v. 000006", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10005558", - "shelfMark": [ - "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433012999664" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433012999664" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999656" - ], - "physicalLocation": [ - "*OLA 86-308|zLibrary has: Vol. 4, 6." - ], - "shelfMark_sort": "a*OLA 86-308|zLibrary has: Vol. 4, 6. v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10005557", - "shelfMark": [ - "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-308|zLibrary has: Vol. 4, 6. v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433012999656" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433012999656" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011472", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes Jambukhaṇḍi Vadirājacāryaʼs Bhavāsucana ṭ̄kā and Vyāsadāsa's Siddhānta Kaumudī ṭīkā in Sanskrit (Kannada Script) with Kannada rendering by Kēśavācārya Jālihāḷa.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Dates taken from the book; vol. 6 published in 1964.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada; explanatory notes in Sanskrit (Kannada script) and Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vishnu (Hindu deity)", - "Vishnu (Hindu deity) -- Poetry", - "Dvaita (Vedanta)" - ], - "publisherLiteral": [ - "H. Gorabāḷa" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1959 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Harikathāmrtasāra ṭīkā Pañcaratna prakāśikā" - ], - "shelfMark": [ - "*OLA 86-1120" - ], - "creatorLiteral": [ - "Jagannātha Dāsa, 1487-1547." - ], - "createdString": [ - "1959" - ], - "seriesStatement": [ - "Śrī Varadēndra Haridāsa Sāhitya Maṇḍala prakaṭane ; 72" - ], - "contributorLiteral": [ - "Gorabāḷa, Hanumantarāva.", - "Jalihāḷa, Kēśavācārya." - ], - "dateStartYear": [ - 1959 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-1120" - }, - { - "type": "nypl:Bnumber", - "value": "10011472" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01213452" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211444" - } - ], - "uniformTitle": [ - "Harikathāmrtasāra" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404645185, - "publicationStatement": [ - "Lingasūgūru : H. Gorabāḷa, 1959?-" - ], - "identifier": [ - "urn:bnum:10011472", - "urn:undefined:NNSZ01213452", - "urn:undefined:(WaOLN)nyp0211444" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vishnu (Hindu deity) -- Poetry.", - "Dvaita (Vedanta)" - ], - "titleDisplay": [ - "Śrī Harikathāmrtasāra ṭīkā Pañcaratna prakāśikā / Śrīmajjagannātha Dāsārya viracita ; sandhigaḷa sāra Gorabāḷa (Sundara Viṭhala)" - ], - "uri": "b10011472", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lingasūgūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Harikathāmrtasāra", - "Pancaratna prakāśikā." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10011472" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013000082" - ], - "physicalLocation": [ - "*OLA 86-1120|zLibrary has: Vol. 6." - ], - "shelfMark_sort": "a*OLA 86-1120|zLibrary has: Vol. 6. v. 000006", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10005568", - "shelfMark": [ - "*OLA 86-1120|zLibrary has: Vol. 6. v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-1120|zLibrary has: Vol. 6. v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433013000082" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433013000082" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011759", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes music in letter notation.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: v. 1, p. [204]", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Carnatic music", - "Carnatic music -- History and criticism", - "Songs, Telugu" - ], - "publisherLiteral": [ - "Prasārāṅga, Maisūru Viśvavidyānilaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kīrtana darpaṇa : prāyōgika saṅgītaśāstra" - ], - "shelfMark": [ - "JML 86-5" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75907259" - ], - "seriesStatement": [ - "Paṭhyapustaka māle ; 76" - ], - "contributorLiteral": [ - "Anantharamaiah, R. L., 1937-", - "Ramaratnam, V., 1917-", - "Ratna, M. V." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JML 86-5" - }, - { - "type": "nypl:Bnumber", - "value": "10011759" - }, - { - "type": "bf:Lccn", - "value": "75907259" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01314591" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211726" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636110092201, - "publicationStatement": [ - "Maisūru : Prasārāṅga, Maisūru Viśvavidyānilaya, 1974-" - ], - "identifier": [ - "urn:bnum:10011759", - "urn:lccn:75907259", - "urn:undefined:NNSZ01314591", - "urn:undefined:(WaOLN)nyp0211726" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Carnatic music -- History and criticism.", - "Songs, Telugu." - ], - "titleDisplay": [ - "Kīrtana darpaṇa : prāyōgika saṅgītaśāstra / sampādakaru Vi. Rāmaratnaṃ, Eṃ. Vi. Ratna, Ār. El. Anantarāmayya." - ], - "uri": "b10011759", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10011759" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433068817299" - ], - "physicalLocation": [ - "JML 86-5" - ], - "shelfMark_sort": "aJML 86-5 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14747298", - "shelfMark": [ - "JML 86-5 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JML 86-5 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433068817299" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433068817299" - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10011947", - "_score": null, - "_source": { - "extent": [ - "2 v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Encyclopedias and dictionaries, Kannada", - "Folklore", - "Folklore -- Karnataka", - "Folklore -- Karnataka -- Dictionaries" - ], - "publisherLiteral": [ - "Kannada Sāhitya Pariṣattu," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa jānapada viśvakōśa" - ], - "shelfMark": [ - "*OLA 86-2952" - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "85904648" - ], - "contributorLiteral": [ - "Kambar, Chandrasekhara, 1938-" - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-2952" - }, - { - "type": "nypl:Bnumber", - "value": "10011947" - }, - { - "type": "bf:Lccn", - "value": "85904648" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01313921" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0211913" - } - ], - "updatedAt": 1636108864346, - "publicationStatement": [ - "Beṅgaḷūru : Kannada Sāhitya Pariṣattu, 1985." - ], - "identifier": [ - "urn:bnum:10011947", - "urn:lccn:85904648", - "urn:undefined:NNSZ01313921", - "urn:undefined:(WaOLN)nyp0211913" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Encyclopedias and dictionaries, Kannada.", - "Folklore -- Karnataka -- Dictionaries." - ], - "titleDisplay": [ - "Kannaḍa jānapada viśvakōśa / sampadakaru, Candraśēkhara Kambāra." - ], - "uri": "b10011947", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10011947" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013001759" - ], - "physicalLocation": [ - "*OLA 86-2952" - ], - "shelfMark_sort": "a*OLA 86-2952 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10005916", - "shelfMark": [ - "*OLA 86-2952 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-2952 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433013001759" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433013001759" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013001767" - ], - "physicalLocation": [ - "*OLA 86-2952" - ], - "shelfMark_sort": "a*OLA 86-2952 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10005915", - "shelfMark": [ - "*OLA 86-2952 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-2952 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013001767" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013001767" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10012152", - "_score": null, - "_source": { - "extent": [ - "xviii, 128, [16] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Texts of English poems translated by B. M. Srikantayya, 1884-1946, with titles also in Kannada and citations for Kannada translations: p. [57]-128, [16].", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added title in English on verso of t.p.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Śrīkaṇṭhayya, Bi. Eṃ., 1884-1946" - ], - "publisherLiteral": [ - "Bi. Eṃ. Śrī. Smāraka Pratiṣṭhāna" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrīgandha : Bi. Eṃ. Śrī. janmaśatamānōtsava saṃsmaraṇa sañcike" - ], - "shelfMark": [ - "*OLA 86-3118" - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "85910191" - ], - "contributorLiteral": [ - "Śrīnivāsarāju, Ci., 1942-2007." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-3118" - }, - { - "type": "nypl:Bnumber", - "value": "10012152" - }, - { - "type": "bf:Lccn", - "value": "85910191" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01314127" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0212117" - } - ], - "updatedAt": 1653404646740, - "publicationStatement": [ - "Beṅgaḷūru : Bi. Eṃ. Śrī. Smāraka Pratiṣṭhāna, 1985." - ], - "identifier": [ - "urn:bnum:10012152", - "urn:lccn:85910191", - "urn:undefined:NNSZ01314127", - "urn:undefined:(WaOLN)nyp0212117" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Śrīkaṇṭhayya, Bi. Eṃ., 1884-1946." - ], - "titleDisplay": [ - "Śrīgandha : Bi. Eṃ. Śrī. janmaśatamānōtsava saṃsmaraṇa sañcike / sampādakaru Ci. Śrīnivāsarāju ... [et al.]." - ], - "uri": "b10012152", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10012152" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013002005" - ], - "physicalLocation": [ - "*OLA 86-3118" - ], - "shelfMark_sort": "a*OLA 86-003118", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10006103", - "shelfMark": [ - "*OLA 86-3118" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-3118" - }, - { - "type": "bf:Barcode", - "value": "33433013002005" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013002005" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10015200", - "_score": null, - "_source": { - "extent": [ - "xxi, 220, 14 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "A poem, with prose version.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bhīma (Hindu mythology)", - "Bhīma (Hindu mythology) -- Poetry" - ], - "publisherLiteral": [ - "Kannaḍa Sāhitya Pariṣattu," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sāhasabhīmavijayaṃ (Gadāyuddhaṃ)" - ], - "shelfMark": [ - "*OLA 87-2376" - ], - "creatorLiteral": [ - "Ranna, active 993." - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86903378" - ], - "seriesStatement": [ - "Vajramahōtsava varṣa pañcavārṣika yōjaneya pustakamāle" - ], - "contributorLiteral": [ - "Kulakarṇi, Ār. Vi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-2376" - }, - { - "type": "nypl:Bnumber", - "value": "10015200" - }, - { - "type": "bf:Lccn", - "value": "86903378" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01618431" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0215159" - } - ], - "uniformTitle": [ - "Gadayuddha" - ], - "updatedAt": 1636098054027, - "publicationStatement": [ - "Beṅgaḷūru : Kannaḍa Sāhitya Pariṣattu, 1985." - ], - "identifier": [ - "urn:bnum:10015200", - "urn:lccn:86903378", - "urn:undefined:NNSZ01618431", - "urn:undefined:(WaOLN)nyp0215159" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bhīma (Hindu mythology) -- Poetry." - ], - "titleDisplay": [ - "Sāhasabhīmavijayaṃ (Gadāyuddhaṃ) / Kavicakravarti Kaviranna viracitam ; gadyānuvāda Ār. Vi. Kulakarṇi." - ], - "uri": "b10015200", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Gadayuddha", - "Sāhasabhīma vijaya." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10015200" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013128214" - ], - "shelfMark_sort": "a*OLA 87-002376", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007322", - "shelfMark": [ - "*OLA 87-2376" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013128214" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013128214" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10015230", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Kannada and Sanskrit; introductory matter in Kannada.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 5 published in 1978.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added English t.p.: a practical Samskrita-Kannada dictionary.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Dictionaries", - "Sanskrit language -- Dictionaries -- Kannada" - ], - "publisherLiteral": [ - "Gōpālācārya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śabdārthakaustubhaṃ : prāyōgika Saṃskrta-Karṇāṭaka śabdakōśa = Saṃskrta-Kannaḍa śabdakōśa" - ], - "shelfMark": [ - "*OLA 87-2131" - ], - "createdString": [ - "1978" - ], - "contributorLiteral": [ - "Gōpālācārya, Cakravarti Śrīnivāsa." - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-2131" - }, - { - "type": "nypl:Bnumber", - "value": "10015230" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01618462" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0215189" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404650786, - "publicationStatement": [ - "Beṅgaḷūru : Gōpālācārya, 1978?-" - ], - "identifier": [ - "urn:bnum:10015230", - "urn:undefined:NNSZ01618462", - "urn:undefined:(WaOLN)nyp0215189" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Dictionaries -- Kannada." - ], - "titleDisplay": [ - "Śabdārthakaustubhaṃ : prāyōgika Saṃskrta-Karṇāṭaka śabdakōśa = Saṃskrta-Kannaḍa śabdakōśa / granthakarta-prakāśaka Cakravarti Śrīnivāsa Gōpālācārya." - ], - "uri": "b10015230", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Saṃskrta-Kannaḍa śabdakōśa.", - "Sanskrit-Kannada dictionary.", - "Practical Samskrita-Kannada dictionary." - ], - "tableOfContents": [ - "4. Namaskāra-Bahuvīrya -- 5. Bahuvrīhi - Vēdānta -- 6. Vedāntin- Hveya." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10015230" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013128156" - ], - "shelfMark_sort": "a*OLA 87-002131", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007343", - "shelfMark": [ - "*OLA 87-2131" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013128156" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013128156" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013128149" - ], - "shelfMark_sort": "a*OLA 87-002131", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007342", - "shelfMark": [ - "*OLA 87-2131" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013128149" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013128149" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013128164" - ], - "shelfMark_sort": "a*OLA 87-002131", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007344", - "shelfMark": [ - "*OLA 87-2131" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013128164" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013128164" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10015231", - "_score": null, - "_source": { - "extent": [ - "v. : ill. (some col.)" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Pañcama puṣpa.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 5 published in 1966.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada; includes quotations in Sanskrit (Kannada script).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vādirāja, active 16th century", - "Dvaita (Vedanta)" - ], - "publisherLiteral": [ - "Gurukrpā Granthamālā : pustaka doreyuva sthaḷa, Gōvindarāv, Beṅgaḷūru" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Vādirāja rjutva prakāśikā" - ], - "shelfMark": [ - "*OKN 87-2441" - ], - "creatorLiteral": [ - "Guru Gōvinda Viṭhala Dāsaru." - ], - "createdString": [ - "1966" - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 87-2441" - }, - { - "type": "nypl:Bnumber", - "value": "10015231" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01618463" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0215190" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404650775, - "publicationStatement": [ - "Maisūru : Gurukrpā Granthamālā : pustaka doreyuva sthaḷa, Gōvindarāv, Beṅgaḷūru, 1966-" - ], - "identifier": [ - "urn:bnum:10015231", - "urn:undefined:NNSZ01618463", - "urn:undefined:(WaOLN)nyp0215190" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vādirāja, active 16th century.", - "Dvaita (Vedanta)" - ], - "titleDisplay": [ - "Śrī Vādirāja rjutva prakāśikā / Guru Gōvinda Vithala Dāsaru." - ], - "uri": "b10015231", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10015231" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058620984" - ], - "physicalLocation": [ - "*OKN 87-2441 Library has: Vol. 5." - ], - "shelfMark_sort": "a*OKN 87-2441 Library has: Vol. 5. v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13786568", - "shelfMark": [ - "*OKN 87-2441 Library has: Vol. 5. v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 87-2441 Library has: Vol. 5. v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433058620984" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433058620984" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10016133", - "_score": null, - "_source": { - "extent": [ - "43 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Yakṣagāna plays" - ], - "publisherLiteral": [ - "Ār. Viṭṭappa Śeṇai eṇḍ Sans," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "1985" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Krṣṇagāruḍi emba yakṣagāna prasaṅgavu : Bhīmārjuna garvabhaṅga : Mahabhārata purāṇāntargata" - ], - "shelfMark": [ - "*OLA 87-3857" - ], - "creatorLiteral": [ - "Śrīnivāsa Nāyak, Kōṭa." - ], - "createdString": [ - "1900" - ], - "idLccn": [ - "77913591" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-3857" - }, - { - "type": "nypl:Bnumber", - "value": "10016133" - }, - { - "type": "bf:Lccn", - "value": "77913591" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01719432" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0216084" - } - ], - "dateEndYear": [ - 1985 - ], - "updatedAt": 1636109877952, - "publicationStatement": [ - "Kārkaḷa, Da. Ka. : Ār. Viṭṭappa Śeṇai eṇḍ Sans, [19-?]" - ], - "identifier": [ - "urn:bnum:10016133", - "urn:lccn:77913591", - "urn:undefined:NNSZ01719432", - "urn:undefined:(WaOLN)nyp0216084" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Yakṣagāna plays." - ], - "titleDisplay": [ - "Krṣṇagāruḍi emba yakṣagāna prasaṅgavu : Bhīmārjuna garvabhaṅga : Mahabhārata purāṇāntargata / lēkhaka, Kōta Śrīnivāsa Nāyak." - ], - "uri": "b10016133", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kārkaḷa, Da. Ka. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10016133" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013126648" - ], - "shelfMark_sort": "a*OLA 87-003857", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007595", - "shelfMark": [ - "*OLA 87-3857" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126648" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013126648" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10016294", - "_score": null, - "_source": { - "extent": [ - "xliv, 96, 22 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada (Kannada and roman scripts); paraphrase in English and Kannada; introd. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada language", - "Kannada language -- Grammar" - ], - "publisherLiteral": [ - "Asian Educational Services," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "1884" - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nāga Varmā's Karnātaka bhāshā-bhūshana : the oldest grammar extant of the language Karṇāṭaka bhāṣābhūṣana" - ], - "shelfMark": [ - "*OLA 87-1958" - ], - "creatorLiteral": [ - "Nāgavarma, active 12th century." - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "85901530" - ], - "contributorLiteral": [ - "Rice, B. Lewis (Benjamin Lewis), 1837-1927." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-1958" - }, - { - "type": "nypl:Bnumber", - "value": "10016294" - }, - { - "type": "bf:Lccn", - "value": "85901530" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01719593" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0216245" - } - ], - "uniformTitle": [ - "Karṇāṭaka bhāṣabhūṣaṇa" - ], - "dateEndYear": [ - 1884 - ], - "updatedAt": 1636108982258, - "publicationStatement": [ - "New Delhi : Asian Educational Services, 1985." - ], - "identifier": [ - "urn:bnum:10016294", - "urn:lccn:85901530", - "urn:undefined:NNSZ01719593", - "urn:undefined:(WaOLN)nyp0216245" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada language -- Grammar." - ], - "titleDisplay": [ - "Nāga Varmā's Karnātaka bhāshā-bhūshana : the oldest grammar extant of the language Karṇāṭaka bhāṣābhūṣana / Nāgavarma krta ; edited with an introduction, Lewis Rice." - ], - "uri": "b10016294", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Karṇāṭaka bhāṣabhūṣaṇa" - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10016294" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013128081" - ], - "shelfMark_sort": "a*OLA 87-001958", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007686", - "shelfMark": [ - "*OLA 87-1958" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013128081" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013128081" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10016426", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 published in 1968.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada; introductory matter in English or Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Karnāṭaka Viśvavidyālaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bhairavēśvara kāvyada kathāmaṇisūtraratnākara" - ], - "shelfMark": [ - "*OLA 87-3543" - ], - "creatorLiteral": [ - "Śāntaliṅgadēśika." - ], - "createdString": [ - "1968" - ], - "seriesStatement": [ - "Karnāṭaka Viśvavidyālaya : Kannaḍa kāvyamāle ; 7" - ], - "contributorLiteral": [ - "Hiremath, Rudrayya Chandrayya, 1922-", - "Sunkapur, M. S." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-3543" - }, - { - "type": "nypl:Bnumber", - "value": "10016426" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01719726" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0216377" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636077680351, - "publicationStatement": [ - "Dhāravāḍa : Karnāṭaka Viśvavidyālaya, 1968-" - ], - "identifier": [ - "urn:bnum:10016426", - "urn:undefined:NNSZ01719726", - "urn:undefined:(WaOLN)nyp0216377" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Bhairavēśvara kāvyada kathāmaṇisūtraratnākara / Śāntaliṅgadēśika krta ; sampādakaru Ār. Si. Hirēmaṭha, Eṃ. Es. Sunkāpura." - ], - "uri": "b10016426", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dhāravāḍa :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10016426" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013126325" - ], - "shelfMark_sort": "a*OLA 87-003543", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10007795", - "shelfMark": [ - "*OLA 87-3543" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126325" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013126325" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10016756", - "_score": null, - "_source": { - "extent": [ - "vii, 262 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Five hundred Indian plants, in Kanarese.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada; includes scientific names in Latin; popular names in English and Indic languages (Kannada script).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Medicinal plants", - "Medicinal plants -- India", - "Medicinal plants -- India -- Dictionaries" - ], - "publisherLiteral": [ - "Periodical Expert Book Agency," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "1922" - ], - "createdYear": [ - 1986 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Five hundred Indian plants, their use in medicine and arts Sahasrārdha vrkṣādigaḷa varṇane." - ], - "shelfMark": [ - "*OLA 87-4611" - ], - "createdString": [ - "1986" - ], - "idLccn": [ - "87900750" - ], - "dateStartYear": [ - 1986 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-4611" - }, - { - "type": "nypl:Bnumber", - "value": "10016756" - }, - { - "type": "bf:Lccn", - "value": "87900750" - }, - { - "type": "bf:Identifier", - "value": "NNSZ01820065" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0216706" - } - ], - "dateEndYear": [ - 1922 - ], - "updatedAt": 1636096234866, - "publicationStatement": [ - "Delhi, India : Periodical Expert Book Agency, 1986." - ], - "identifier": [ - "urn:bnum:10016756", - "urn:lccn:87900750", - "urn:undefined:NNSZ01820065", - "urn:undefined:(WaOLN)nyp0216706" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1986" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Medicinal plants -- India -- Dictionaries." - ], - "titleDisplay": [ - "Five hundred Indian plants, their use in medicine and arts Sahasrārdha vrkṣādigaḷa varṇane." - ], - "uri": "b10016756", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Delhi, India :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sahasrārdha vrkṣādigaḷa varṇane." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10016756" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013271295" - ], - "physicalLocation": [ - "*OLA 87-4611" - ], - "shelfMark_sort": "a*OLA 87-004611", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10008066", - "shelfMark": [ - "*OLA 87-4611" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 87-4611" - }, - { - "type": "bf:Barcode", - "value": "33433013271295" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013271295" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10315622", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Description based on: 46, 1 (Mar./Apr. 1964); title from cover.", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: Sampuṭa 85, san̄ike 336/338 (2005/2006).", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada literature", - "Kannada literature -- Periodicals", - "Karnataka (India)", - "Karnataka (India) -- Periodicals" - ], - "numItemDatesParsed": [ - 20 - ], - "publisherLiteral": [ - "Maisūru Viśvevidyānilaya." - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 50 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 999 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Prabuddha Karṇāṭaka." - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "numItemVolumesParsed": [ - 46 - ], - "createdString": [ - "999" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 999 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 76-1248" - }, - { - "type": "nypl:Bnumber", - "value": "10315622" - }, - { - "type": "nypl:Oclc", - "value": "NYPG764781564-S" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0318890" - } - ], - "idOclc": [ - "NYPG764781564-S" - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "holdingStatement": [ - "46(1964/65)-56(1974/75),60(1978/79), 62(1980/81)-63(1981/82), 65(1983/84)-68(1986/87),70(1988)-71(1989/90), 74(1992/93)-80(1999), 84(2003)-85(2004/2007)-" - ], - "checkInBoxes": [ - { - "coverage": "No. 74 (1992)", - "position": "1", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "No. 75 (1993)", - "position": "2", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "No. 76-77 (1996)", - "position": "3", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "No. 78-79 (1998)", - "position": "4", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "No. 80 (1999)", - "position": "5", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "", - "position": "6", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Expected" - }, - { - "coverage": "Vol. 82 No. 323/326 (2001)", - "position": "7", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "Vol. 84 No. 331/334 (2003)", - "position": "8", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "Vol. 85 No. 335-338 (2004)", - "position": "9", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "Vol. 88 No. 343-346 (2010)", - "position": "10", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "Vol. 89 No. 347-350 (2013)", - "position": "11", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "Vol. 91 No. 351 (2014)", - "position": "12", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Bound" - }, - { - "coverage": "", - "position": "13", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Expected" - }, - { - "coverage": "", - "position": "14", - "type": "nypl:CheckInBox", - "shelfMark": [ - "*OLA 76-1248" - ], - "status": "Expected" - } - ], - "identifier": [ - { - "type": "bf:shelfMark", - "value": "*OLA 76-1248" - } - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "location": [ - { - "code": "loc:rc2ma", - "label": "Offsite" - } - ], - "uri": "h1066378", - "shelfMark": [ - "*OLA 76-1248" - ] - } - ], - "updatedAt": 1675260501608, - "publicationStatement": [ - "Maisūru, Maisūru Viśvevidyānilaya." - ], - "identifier": [ - "urn:bnum:10315622", - "urn:oclc:NYPG764781564-S", - "urn:undefined:(WaOLN)nyp0318890" - ], - "numCheckinCardItems": [ - 14 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "999" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada literature -- Periodicals.", - "Karnataka (India) -- Periodicals." - ], - "titleDisplay": [ - "Prabuddha Karṇāṭaka." - ], - "uri": "b10315622", - "numItems": [ - 36 - ], - "numAvailable": [ - 36 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:s", - "label": "serial" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10315622" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 50, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-2", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 91 No. 351 (2014)" - ], - "volumeRaw": [ - "Vol. 91 No. 351" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "dateRange": [ - { - "gte": "2014-01-01", - "lte": "2014-01-01" - } - ], - "enumerationChronology_sort": [ - " 91-2014-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 91-2014-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 49 - }, - "_score": null, - "_source": { - "uri": "i36286477", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 91 no. 351 (2014)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 91 no. 351 (2014)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433121642221" - } - ], - "enumerationChronology": [ - "v. 91 no. 351 (2014)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433121642221" - ], - "idBarcode": [ - "33433121642221" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 91, - "lte": 91 - } - ], - "dateRange": [ - { - "gte": "2014", - "lte": "2014" - } - ], - "enumerationChronology_sort": [ - " 91-2014" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000091 no. 351 (2014)" - }, - "sort": [ - " 91-2014" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-9", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 89 No. 347-350 (2013)" - ], - "volumeRaw": [ - "Vol. 89 No. 347-350" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013-01-01", - "lte": "2013-01-01" - } - ], - "enumerationChronology_sort": [ - " 89-2013-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 89-2013-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 48 - }, - "_score": null, - "_source": { - "uri": "i33724983", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 89 no. 347-350 (2013)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 89 no. 347-350 (2013)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433117979967" - } - ], - "enumerationChronology": [ - "v. 89 no. 347-350 (2013)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433117979967" - ], - "idBarcode": [ - "33433117979967" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 89, - "lte": 89 - } - ], - "dateRange": [ - { - "gte": "2013", - "lte": "2013" - } - ], - "enumerationChronology_sort": [ - " 89-2013" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000089 no. 347-350 (2013)" - }, - "sort": [ - " 89-2013" - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-3", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 88 No. 343-346 (2010)" - ], - "volumeRaw": [ - "Vol. 88 No. 343-346" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2010-01-01", - "lte": "2010-01-01" - } - ], - "enumerationChronology_sort": [ - " 88-2010-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 88-2010-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 47 - }, - "_score": null, - "_source": { - "uri": "i33721281", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 88 no. 343-346 (2010)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 88 no. 343-346 (2010)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433117980106" - } - ], - "enumerationChronology": [ - "v. 88 no. 343-346 (2010)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433117980106" - ], - "idBarcode": [ - "33433117980106" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 88, - "lte": 88 - } - ], - "dateRange": [ - { - "gte": "2010", - "lte": "2010" - } - ], - "enumerationChronology_sort": [ - " 88-2010" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000088 no. 343-346 (2010)" - }, - "sort": [ - " 88-2010" - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-4", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 85 No. 335-338 (2004)" - ], - "volumeRaw": [ - "Vol. 85 No. 335-338" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2004-01-01", - "lte": "2004-01-01" - } - ], - "enumerationChronology_sort": [ - " 85-2004-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 85-2004-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 46 - }, - "_score": null, - "_source": { - "uri": "i23191778", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 85, no. 335/338 (2004/ 2007)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 85, no. 335/338 (2004/ 2007)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085539777" - } - ], - "enumerationChronology": [ - "v. 85, no. 335/338 (2004/ 2007)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433085539777" - ], - "idBarcode": [ - "33433085539777" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 85, - "lte": 85 - } - ], - "dateRange": [ - { - "gte": "2004", - "lte": "2007" - } - ], - "enumerationChronology_sort": [ - " 85-2004" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000085, no. 335/338 (2004/ 2007)" - }, - "sort": [ - " 85-2004" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-5", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 84 No. 331/334 (2003)" - ], - "volumeRaw": [ - "Vol. 84 No. 331/334" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2003-01-01", - "lte": "2003-01-01" - } - ], - "enumerationChronology_sort": [ - " 84-2003-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 84-2003-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 45 - }, - "_score": null, - "_source": { - "uri": "i23191779", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 84, no. 331/334 (2003)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 84, no. 331/334 (2003)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433085541104" - } - ], - "enumerationChronology": [ - "v. 84, no. 331/334 (2003)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433085541104" - ], - "idBarcode": [ - "33433085541104" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 84, - "lte": 84 - } - ], - "dateRange": [ - { - "gte": "2003", - "lte": "2003" - } - ], - "enumerationChronology_sort": [ - " 84-2003" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000084, no. 331/334 (2003)" - }, - "sort": [ - " 84-2003" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-6", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "Vol. 82 No. 323/326 (2001)" - ], - "volumeRaw": [ - "Vol. 82 No. 323/326" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2001-01-01", - "lte": "2001-01-01" - } - ], - "enumerationChronology_sort": [ - " 82-2001-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 82-2001-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 44 - }, - "_score": null, - "_source": { - "uri": "i17458423", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcma2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 82, no. 323/326 (2001)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 82, no. 323/326 (2001)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433074631197" - } - ], - "enumerationChronology": [ - "v. 82, no. 323/326 (2001)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433074631197" - ], - "idBarcode": [ - "33433074631197" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 82, - "lte": 82 - } - ], - "dateRange": [ - { - "gte": "2001", - "lte": "2001" - } - ], - "enumerationChronology_sort": [ - " 82-2001" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000082, no. 323/326 (2001)" - }, - "sort": [ - " 82-2001" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-8", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 80 (1999)" - ], - "volumeRaw": [ - "No. 80" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 80, - "lte": 80 - } - ], - "dateRange": [ - { - "gte": "1999-01-01", - "lte": "1999-01-01" - } - ], - "enumerationChronology_sort": [ - " 80-1999-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 80-1999-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-13", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 78-79 (1998)" - ], - "volumeRaw": [ - "No. 78-79" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "1998-01-01", - "lte": "1998-01-01" - } - ], - "enumerationChronology_sort": [ - " 78-1998-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 78-1998-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 43 - }, - "_score": null, - "_source": { - "uri": "i10074597", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 78-79 (1998)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 78-79 (1998)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013574946" - } - ], - "enumerationChronology": [ - "v. 78-79 (1998)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013574946" - ], - "idBarcode": [ - "33433013574946" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 78, - "lte": 79 - } - ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], - "enumerationChronology_sort": [ - " 78-1998" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000078-79 (1998)" - }, - "sort": [ - " 78-1998" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-12", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 76-77 (1996)" - ], - "volumeRaw": [ - "No. 76-77" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "1996-01-01", - "lte": "1996-01-01" - } - ], - "enumerationChronology_sort": [ - " 76-1996-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 76-1996-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 42 - }, - "_score": null, - "_source": { - "uri": "i12950094", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 76-77 (1996)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 76-77 (1996)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015942182" - } - ], - "enumerationChronology": [ - "v. 76-77 (1996)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015942182" - ], - "idBarcode": [ - "33433015942182" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 76, - "lte": 77 - } - ], - "dateRange": [ - { - "gte": "1996", - "lte": "1996" - } - ], - "enumerationChronology_sort": [ - " 76-1996" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000076-77 (1996)" - }, - "sort": [ - " 76-1996" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-11", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 75 (1993)" - ], - "volumeRaw": [ - "No. 75" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "dateRange": [ - { - "gte": "1993-01-01", - "lte": "1993-01-01" - } - ], - "enumerationChronology_sort": [ - " 75-1993-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 75-1993-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 41 - }, - "_score": null, - "_source": { - "uri": "i10074595", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 75" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 75", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575918" - } - ], - "enumerationChronology": [ - "v. 75" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575918" - ], - "idBarcode": [ - "33433014575918" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 75, - "lte": 75 - } - ], - "enumerationChronology_sort": [ - " 75-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000075" - }, - "sort": [ - " 75-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-10", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "No. 74 (1992)" - ], - "volumeRaw": [ - "No. 74" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "dateRange": [ - { - "gte": "1992-01-01", - "lte": "1992-01-01" - } - ], - "enumerationChronology_sort": [ - " 74-1992-01-01" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - " 74-1992-01-01" - ] - }, - { - "_nested": { - "field": "items", - "offset": 40 - }, - "_score": null, - "_source": { - "uri": "i10074594", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 74" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 74", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575900" - } - ], - "enumerationChronology": [ - "v. 74" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575900" - ], - "idBarcode": [ - "33433014575900" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 74, - "lte": 74 - } - ], - "enumerationChronology_sort": [ - " 74-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000074" - }, - "sort": [ - " 74-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 39 - }, - "_score": null, - "_source": { - "uri": "i31158194", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 73 (1992)" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 73 (1992)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433111366286" - } - ], - "enumerationChronology": [ - "v. 73 (1992)" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433111366286" - ], - "idBarcode": [ - "33433111366286" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 73, - "lte": 73 - } - ], - "dateRange": [ - { - "gte": "1992", - "lte": "1992" - } - ], - "enumerationChronology_sort": [ - " 73-1992" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000073 (1992)" - }, - "sort": [ - " 73-1992" - ] - }, - { - "_nested": { - "field": "items", - "offset": 38 - }, - "_score": null, - "_source": { - "uri": "i10074592", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 72" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 72", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576510" - } - ], - "enumerationChronology": [ - "v. 72" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576510" - ], - "idBarcode": [ - "33433014576510" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 72, - "lte": 72 - } - ], - "enumerationChronology_sort": [ - " 72-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000072" - }, - "sort": [ - " 72-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 37 - }, - "_score": null, - "_source": { - "uri": "i10074591", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 71" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 71", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576502" - } - ], - "enumerationChronology": [ - "v. 71" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576502" - ], - "idBarcode": [ - "33433014576502" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 71, - "lte": 71 - } - ], - "enumerationChronology_sort": [ - " 71-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000071" - }, - "sort": [ - " 71-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 36 - }, - "_score": null, - "_source": { - "uri": "i10074593", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 70" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 70", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576528" - } - ], - "enumerationChronology": [ - "v. 70" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576528" - ], - "idBarcode": [ - "33433014576528" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 70, - "lte": 70 - } - ], - "enumerationChronology_sort": [ - " 70-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000070" - }, - "sort": [ - " 70-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 35 - }, - "_score": null, - "_source": { - "uri": "i10074588", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 68" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 68", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576478" - } - ], - "enumerationChronology": [ - "v. 68" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576478" - ], - "idBarcode": [ - "33433014576478" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 68, - "lte": 68 - } - ], - "enumerationChronology_sort": [ - " 68-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000068" - }, - "sort": [ - " 68-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 34 - }, - "_score": null, - "_source": { - "uri": "i10074587", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 67" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 67", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576460" - } - ], - "enumerationChronology": [ - "v. 67" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576460" - ], - "idBarcode": [ - "33433014576460" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 67, - "lte": 67 - } - ], - "enumerationChronology_sort": [ - " 67-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000067" - }, - "sort": [ - " 67-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 33 - }, - "_score": null, - "_source": { - "uri": "i10074589", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 66" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 66", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576486" - } - ], - "enumerationChronology": [ - "v. 66" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576486" - ], - "idBarcode": [ - "33433014576486" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 66, - "lte": 66 - } - ], - "enumerationChronology_sort": [ - " 66-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000066" - }, - "sort": [ - " 66-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 32 - }, - "_score": null, - "_source": { - "uri": "i10074590", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 65" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 65", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576494" - } - ], - "enumerationChronology": [ - "v. 65" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576494" - ], - "idBarcode": [ - "33433014576494" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 65, - "lte": 65 - } - ], - "enumerationChronology_sort": [ - " 65-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000065" - }, - "sort": [ - " 65-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 31 - }, - "_score": null, - "_source": { - "uri": "i10074586", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 63" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 63", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576452" - } - ], - "enumerationChronology": [ - "v. 63" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576452" - ], - "idBarcode": [ - "33433014576452" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 63, - "lte": 63 - } - ], - "enumerationChronology_sort": [ - " 63-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000063" - }, - "sort": [ - " 63-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 30 - }, - "_score": null, - "_source": { - "uri": "i10074585", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 62" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 62", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576445" - } - ], - "enumerationChronology": [ - "v. 62" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576445" - ], - "idBarcode": [ - "33433014576445" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "enumerationChronology_sort": [ - " 62-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000062" - }, - "sort": [ - " 62-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 29 - }, - "_score": null, - "_source": { - "uri": "i10074584", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 60" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 60", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576437" - } - ], - "enumerationChronology": [ - "v. 60" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576437" - ], - "idBarcode": [ - "33433014576437" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "enumerationChronology_sort": [ - " 60-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000060" - }, - "sort": [ - " 60-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 28 - }, - "_score": null, - "_source": { - "uri": "i10074583", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 56, no. 1-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 56, no. 1-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576429" - } - ], - "enumerationChronology": [ - "v. 56, no. 1-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576429" - ], - "idBarcode": [ - "33433014576429" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 56, - "lte": 56 - } - ], - "enumerationChronology_sort": [ - " 56-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000056, no. 1-4" - }, - "sort": [ - " 56-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 27 - }, - "_score": null, - "_source": { - "uri": "i10074582", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 55" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 55", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576411" - } - ], - "enumerationChronology": [ - "v. 55" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576411" - ], - "idBarcode": [ - "33433014576411" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 55, - "lte": 55 - } - ], - "enumerationChronology_sort": [ - " 55-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000055" - }, - "sort": [ - " 55-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 26 - }, - "_score": null, - "_source": { - "uri": "i10074581", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 54" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 54", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576049" - } - ], - "enumerationChronology": [ - "v. 54" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576049" - ], - "idBarcode": [ - "33433014576049" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 54, - "lte": 54 - } - ], - "enumerationChronology_sort": [ - " 54-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000054" - }, - "sort": [ - " 54-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 25 - }, - "_score": null, - "_source": { - "uri": "i10074580", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 53" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 53", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576031" - } - ], - "enumerationChronology": [ - "v. 53" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576031" - ], - "idBarcode": [ - "33433014576031" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 53, - "lte": 53 - } - ], - "enumerationChronology_sort": [ - " 53-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000053" - }, - "sort": [ - " 53-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 24 - }, - "_score": null, - "_source": { - "uri": "i10074579", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 52, no. 3-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 52, no. 3-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576023" - } - ], - "enumerationChronology": [ - "v. 52, no. 3-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576023" - ], - "idBarcode": [ - "33433014576023" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 52, - "lte": 52 - } - ], - "enumerationChronology_sort": [ - " 52-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000052, no. 3-4" - }, - "sort": [ - " 52-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 23 - }, - "_score": null, - "_source": { - "uri": "i10074578", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 51, no. 3-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 51, no. 3-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576015" - } - ], - "enumerationChronology": [ - "v. 51, no. 3-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576015" - ], - "idBarcode": [ - "33433014576015" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 51, - "lte": 51 - } - ], - "enumerationChronology_sort": [ - " 51-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000051, no. 3-4" - }, - "sort": [ - " 51-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 22 - }, - "_score": null, - "_source": { - "uri": "i10074577", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 50, no. 3-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 50, no. 3-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014576007" - } - ], - "enumerationChronology": [ - "v. 50, no. 3-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014576007" - ], - "idBarcode": [ - "33433014576007" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - } - ], - "enumerationChronology_sort": [ - " 50-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000050, no. 3-4" - }, - "sort": [ - " 50-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 21 - }, - "_score": null, - "_source": { - "uri": "i10074576", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 50, no. 1-2" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 50, no. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575991" - } - ], - "enumerationChronology": [ - "v. 50, no. 1-2" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575991" - ], - "idBarcode": [ - "33433014575991" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 50, - "lte": 50 - } - ], - "enumerationChronology_sort": [ - " 50-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000050, no. 1-2" - }, - "sort": [ - " 50-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 20 - }, - "_score": null, - "_source": { - "uri": "i10074575", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 49" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 49", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575983" - } - ], - "enumerationChronology": [ - "v. 49" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575983" - ], - "idBarcode": [ - "33433014575983" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 49, - "lte": 49 - } - ], - "enumerationChronology_sort": [ - " 49-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000049" - }, - "sort": [ - " 49-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 19 - }, - "_score": null, - "_source": { - "uri": "i10074573", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 48, no. 1-2" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 48, no. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575967" - } - ], - "enumerationChronology": [ - "v. 48, no. 1-2" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575967" - ], - "idBarcode": [ - "33433014575967" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 48, - "lte": 48 - } - ], - "enumerationChronology_sort": [ - " 48-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000048, no. 1-2" - }, - "sort": [ - " 48-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 18 - }, - "_score": null, - "_source": { - "uri": "i10074574", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 48 no. 3-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 48 no. 3-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575975" - } - ], - "enumerationChronology": [ - "v. 48 no. 3-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575975" - ], - "idBarcode": [ - "33433014575975" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 48, - "lte": 48 - } - ], - "enumerationChronology_sort": [ - " 48-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000048 no. 3-4" - }, - "sort": [ - " 48-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 17 - }, - "_score": null, - "_source": { - "uri": "i10074572", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 47, no. 1-4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 47, no. 1-4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575959" - } - ], - "enumerationChronology": [ - "v. 47, no. 1-4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575959" - ], - "idBarcode": [ - "33433014575959" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 47, - "lte": 47 - } - ], - "enumerationChronology_sort": [ - " 47-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000047, no. 1-4" - }, - "sort": [ - " 47-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 16 - }, - "_score": null, - "_source": { - "uri": "i10074571", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 46, no. 4" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 46, no. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575942" - } - ], - "enumerationChronology": [ - "v. 46, no. 4" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575942" - ], - "idBarcode": [ - "33433014575942" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 46, - "lte": 46 - } - ], - "enumerationChronology_sort": [ - " 46-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000046, no. 4" - }, - "sort": [ - " 46-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 15 - }, - "_score": null, - "_source": { - "uri": "i10074570", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248 v. 46, no. 1-3" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248 v. 46, no. 1-3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014575934" - } - ], - "enumerationChronology": [ - "v. 46, no. 1-3" - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014575934" - ], - "idBarcode": [ - "33433014575934" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 46, - "lte": 46 - } - ], - "enumerationChronology_sort": [ - " 46-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-1248 v. 000046, no. 1-3" - }, - "sort": [ - " 46-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 14 - }, - "_score": null, - "_source": { - "uri": "i10074596", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001543184" - } - ], - "physicalLocation": [ - "*OLA 76-1248" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001543184" - ], - "idBarcode": [ - "33433001543184" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 13 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-0", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 12 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-1", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i-h1066378-7", - "status": [ - { - "id": "status:na", - "label": "Not Available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not Available (ReCAP)" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 76-1248" - ], - "identifierV2": [ - { - "value": "*OLA 76-1248", - "type": "bf:ShelfMark" - } - ], - "enumerationChronology": [ - "" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "shelfMark_sort": "a*OLA 76-001248" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10379755", - "_score": null, - "_source": { - "extent": [ - "14 v. : ill. (part col.) ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Published by the Institute of Kannada studies, University of Mysore.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Encyclopedias and dictionaries, Kannada" - ], - "publisherLiteral": [ - "Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidāyanilaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa viśvakośa" - ], - "shelfMark": [ - "*OLA+ 76-462" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "sa 73910921" - ], - "contributorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-", - "University of Mysore. Institute of Kannada Studies." - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462" - }, - { - "type": "nypl:Bnumber", - "value": "10379755" - }, - { - "type": "bf:Lccn", - "value": "sa 73910921" - }, - { - "type": "bf:Identifier", - "value": "NN764423629" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0383283" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108872056, - "publicationStatement": [ - "Maisūru : Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidāyanilaya, 1971-2004." - ], - "identifier": [ - "urn:bnum:10379755", - "urn:lccn:sa 73910921", - "urn:undefined:NN764423629", - "urn:undefined:(WaOLN)nyp0383283" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Encyclopedias and dictionaries, Kannada." - ], - "titleDisplay": [ - "Kannaḍa viśvakośa / chief editor D. Javare Gowda." - ], - "uri": "b10379755", - "numItems": [ - 12 - ], - "numAvailable": [ - 12 - ], - "placeOfPublication": [ - "Maisūru :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10379755" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 12, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 11 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433069710808" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17460427", - "shelfMark": [ - "*OLA+ 76-462 v. 14" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 14" - }, - { - "type": "bf:Barcode", - "value": "33433069710808" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "enumerationChronology": [ - "v. 14" - ], - "idBarcode": [ - "33433069710808" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433069710790" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000013", - "catalogItemType_packed": [ - "catalogItemType:65||book, good condition, non-MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i17460426", - "shelfMark": [ - "*OLA+ 76-462 v. 13" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 13" - }, - { - "type": "bf:Barcode", - "value": "33433069710790" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 13" - ], - "idBarcode": [ - "33433069710790" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842282" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000012", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837533", - "shelfMark": [ - "*OLA+ 76-462 v. 12" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 12" - }, - { - "type": "bf:Barcode", - "value": "33433057842282" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 12" - ], - "idBarcode": [ - "33433057842282" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842274" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000011", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837532", - "shelfMark": [ - "*OLA+ 76-462 v. 11" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 11" - }, - { - "type": "bf:Barcode", - "value": "33433057842274" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 11" - ], - "idBarcode": [ - "33433057842274" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842266" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000009", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837531", - "shelfMark": [ - "*OLA+ 76-462 v. 9" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 9" - }, - { - "type": "bf:Barcode", - "value": "33433057842266" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 9" - ], - "idBarcode": [ - "33433057842266" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842258" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000007", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837530", - "shelfMark": [ - "*OLA+ 76-462 v. 7" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 7" - }, - { - "type": "bf:Barcode", - "value": "33433057842258" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 7" - ], - "idBarcode": [ - "33433057842258" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842241" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000006", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837529", - "shelfMark": [ - "*OLA+ 76-462 v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433057842241" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433057842241" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842233" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837528", - "shelfMark": [ - "*OLA+ 76-462 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433057842233" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433057842233" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842225" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837527", - "shelfMark": [ - "*OLA+ 76-462 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433057842225" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433057842225" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842217" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837526", - "shelfMark": [ - "*OLA+ 76-462 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057842217" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057842217" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842209" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837525", - "shelfMark": [ - "*OLA+ 76-462 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057842209" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057842209" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057842191" - ], - "physicalLocation": [ - "*OLA+ 76-462" - ], - "shelfMark_sort": "a*OLA+ 76-462 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13837524", - "shelfMark": [ - "*OLA+ 76-462 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 76-462 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057842191" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057842191" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10387344", - "_score": null, - "_source": { - "extent": [ - "v. <1-9> ; " - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 1-5, & 7 has subtitle: Mudrita Kannaḍa krtigaḷa vivarāṇātmaka granthasūci 1817-1968.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada imprints" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prasarāṅga, Maisūru Viśvavidyānilaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 9 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa granthasūci; mudrita Kannaḍa krtigala vivaraṇātmaka granthasūci." - ], - "shelfMark": [ - "*OLA 75-3000" - ], - "numItemVolumesParsed": [ - 9 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "sa 71922330" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 75-3000" - }, - { - "type": "nypl:Bnumber", - "value": "10387344" - }, - { - "type": "bf:Lccn", - "value": "sa 71922330" - }, - { - "type": "nypl:Oclc", - "value": "13887294" - }, - { - "type": "nypl:Oclc", - "value": "13887294" - }, - { - "type": "nypl:Oclc", - "value": "NYPG764506752-B" - }, - { - "type": "bf:Identifier", - "value": "NN764506752" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0390904" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)13887294" - } - ], - "idOclc": [ - "13887294", - "NYPG764506752-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675264211896, - "publicationStatement": [ - "Maisūru] Prasarāṅga, Maisūru Viśvavidyānilaya, 1971-<2003>" - ], - "identifier": [ - "urn:bnum:10387344", - "urn:lccn:sa 71922330", - "urn:oclc:13887294", - "urn:oclc:NYPG764506752-B", - "urn:undefined:NN764506752", - "urn:undefined:(WaOLN)nyp0390904", - "urn:undefined:(OCoLC)13887294" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada imprints." - ], - "titleDisplay": [ - "Kannaḍa granthasūci; mudrita Kannaḍa krtigala vivaraṇātmaka granthasūci. [Compiled by an Editorial Committee consisting of D. Javaregowda and others." - ], - "uri": "b10387344", - "lccClassification": [ - "Z3201 .K35" - ], - "numItems": [ - 9 - ], - "numAvailable": [ - 9 - ], - "placeOfPublication": [ - "Maisūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Śuddha vijñānagaḷu -- 2. Bhāṣe-vyākaraṇa-dharma-tattva-lalitkalegaḷu-upayukta kalegaḷu-nighantugaḷu-vyakaraṇagaḷu -- 3. Sāhitya-vimarśe-kāvya-hosagannaḍa kāvya -- 4. Gadya saṇṇakathe-nāṭaka-prabandha -- 5. Kādambari-aitihāsika-pattēdāri -- 6. Bāla sāhitya -- 7. Anuvāda sāhitya -- 8. Jīvana caritre-patra sāhitya-pravāsa sāhitya-jānapada sāhitya -- 9. Samājaśāstra-vāṇijyaśāstra-sikṣaṇaśāstra-bhūgōla mattu itihāsa" - ], - "dimensions": [ - " 30 cm." - ] - }, - "sort": [ - "b10387344" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 9, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i10092431", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 9" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546423" - } - ], - "enumerationChronology": [ - "v. 9" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546423" - ], - "idBarcode": [ - "33433005546423" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 9, - "lte": 9 - } - ], - "enumerationChronology_sort": [ - " 9-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000009" - }, - "sort": [ - " 9-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i10092430", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 8" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 8", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546415" - } - ], - "enumerationChronology": [ - "v. 8" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546415" - ], - "idBarcode": [ - "33433005546415" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "enumerationChronology_sort": [ - " 8-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000008" - }, - "sort": [ - " 8-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i10092429", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 7" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546647" - } - ], - "enumerationChronology": [ - "v. 7" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546647" - ], - "idBarcode": [ - "33433005546647" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "enumerationChronology_sort": [ - " 7-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000007" - }, - "sort": [ - " 7-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i10092428", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 6" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546639" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546639" - ], - "idBarcode": [ - "33433005546639" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i10092427", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 5" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546621" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546621" - ], - "idBarcode": [ - "33433005546621" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10092426", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 4" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546613" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546613" - ], - "idBarcode": [ - "33433005546613" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10092425", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546605" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546605" - ], - "idBarcode": [ - "33433005546605" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10092424", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546597" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546597" - ], - "idBarcode": [ - "33433005546597" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10092423", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 75-3000 v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 75-3000 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005546589" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLA 75-3000" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005546589" - ], - "idBarcode": [ - "33433005546589" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 75-3000 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10430533", - "_score": null, - "_source": { - "extent": [ - "- v." - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada language", - "Kannada language -- Dictionaries" - ], - "publisherLiteral": [ - "Kannaḍa Sāhitya Pariṣattu" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa Sāhitya Paṛiṣattina Kannaḍa nighaṇṭu." - ], - "shelfMark": [ - "*OLA+ 77-1212" - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 68015538" - ], - "contributorLiteral": [ - "Kannaḍa Sāhitya Pariṣattu." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA+ 77-1212" - }, - { - "type": "nypl:Bnumber", - "value": "10430533" - }, - { - "type": "bf:Lccn", - "value": "sa 68015538" - }, - { - "type": "nypl:Oclc", - "value": "33334610" - }, - { - "type": "nypl:Oclc", - "value": "33334610" - }, - { - "type": "bf:Identifier", - "value": "NN774598719" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0434297" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)33334610" - } - ], - "idOclc": [ - "33334610" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659153256254, - "publicationStatement": [ - "Biṅgaḷoru, Kannaḍa Sāhitya Pariṣattu, 1964-" - ], - "identifier": [ - "urn:bnum:10430533", - "urn:lccn:sa 68015538", - "urn:oclc:33334610", - "urn:undefined:NN774598719", - "urn:undefined:(WaOLN)nyp0434297", - "urn:undefined:(OCoLC)33334610" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada language -- Dictionaries." - ], - "titleDisplay": [ - "Kannaḍa Sāhitya Paṛiṣattina Kannaḍa nighaṇṭu." - ], - "uri": "b10430533", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Biṅgaḷoru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 cm." - ] - }, - "sort": [ - "b10430533" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13844383", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA+ 77-1212 v. 1 nos. 1-7" - ], - "identifierV2": [ - { - "value": "*OLA+ 77-1212 v. 1 nos. 1-7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057842290" - } - ], - "physicalLocation": [ - "*OLA+ 77-1212" - ], - "enumerationChronology": [ - "v. 1 nos. 1-7" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433057842290" - ], - "idBarcode": [ - "33433057842290" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA+ 77-1212 v. 000001 nos. 1-7" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10448884", - "_score": null, - "_source": { - "extent": [ - "v. illus., maps." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada literature", - "Kannada literature -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prakaṭaṇa Mattu Pracārō Panyāsa Vibhāga, Beṅgaḷūru Viśvavidyālaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 6 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Samagra Kannaḍa sāhitya caritre. [Pradhāna Sampādakaru Jī. Esau. Sivarudrappa]" - ], - "shelfMark": [ - "*OLA 77-1564" - ], - "numItemVolumesParsed": [ - 6 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75907097" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sivarudrappa, G. S., 1926-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 77-1564" - }, - { - "type": "nypl:Bnumber", - "value": "10448884" - }, - { - "type": "bf:Lccn", - "value": "75907097" - }, - { - "type": "nypl:Oclc", - "value": "25483666" - }, - { - "type": "nypl:Oclc", - "value": "25483666" - }, - { - "type": "nypl:Oclc", - "value": "NYPG774800277-B" - }, - { - "type": "bf:Identifier", - "value": "NN774800277" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0452778" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)25483666" - } - ], - "idOclc": [ - "25483666", - "NYPG774800277-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675274772412, - "publicationStatement": [ - "Beṅgaḷūru, Prakaṭaṇa Mattu Pracārō Panyāsa Vibhāga, Beṅgaḷūru Viśvavidyālaya, 1974-" - ], - "identifier": [ - "urn:bnum:10448884", - "urn:lccn:75907097", - "urn:oclc:25483666", - "urn:oclc:NYPG774800277-B", - "urn:undefined:NN774800277", - "urn:undefined:(WaOLN)nyp0452778", - "urn:undefined:(OCoLC)25483666" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada literature -- History and criticism." - ], - "titleDisplay": [ - "Samagra Kannaḍa sāhitya caritre. [Pradhāna Sampādakaru Jī. Esau. Sivarudrappa]" - ], - "uri": "b10448884", - "numItems": [ - 6 - ], - "numAvailable": [ - 6 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10448884" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 6, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i10105102", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 6" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005544758" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005544758" - ], - "idBarcode": [ - "33433005544758" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i10105101", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 2" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005544741" - } - ], - "enumerationChronology": [ - "v. 4 pt. 2" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005544741" - ], - "idBarcode": [ - "33433005544741" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000004 pt. 2" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10105100", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 1" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 4 pt. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005544733" - } - ], - "enumerationChronology": [ - "v. 4 pt. 1" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005544733" - ], - "idBarcode": [ - "33433005544733" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000004 pt. 1" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10105099", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545201" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545201" - ], - "idBarcode": [ - "33433005545201" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10105098", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545193" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545193" - ], - "idBarcode": [ - "33433005545193" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10105097", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545185" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545185" - ], - "idBarcode": [ - "33433005545185" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1564|zLibrary has: Vol. 1-3, 4 (pt.1-2), 6. v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10448885", - "_score": null, - "_source": { - "extent": [ - "- v." - ], - "note": [ - { - "noteType": "Note", - "label": "Kannaḍa Adhyayana Saṃstheya prakaṭaṇe: Sāmānyamāle.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada literature", - "Kannada literature -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidyānilaya: Mārāṭagāraru, Prasārāṅga" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 6 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa Adhyayana Saṃstheya Kannaḍa sāhitya caritre. Pradhāna Sampādaka, Hā. Mā. Nāyaka: Sampādaka, Ṭi. Vi. Veṅkaṭācala Śāstrī. 1st ed." - ], - "shelfMark": [ - "*OLA 77-1563" - ], - "numItemVolumesParsed": [ - 6 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75905691" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Nayak, Harogadde Manappa, 1931-", - "Venkatachala Sastry, T. V., 1933-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 77-1563" - }, - { - "type": "nypl:Bnumber", - "value": "10448885" - }, - { - "type": "bf:Lccn", - "value": "75905691" - }, - { - "type": "nypl:Oclc", - "value": "NYPG774800289-B" - }, - { - "type": "bf:Identifier", - "value": "NN774800289" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0452779" - } - ], - "idOclc": [ - "NYPG774800289-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675259064154, - "publicationStatement": [ - "Maisūru: Kannaḍa Adhyayana Saṃsthe, Maisūru Viśvavidyānilaya: Mārāṭagāraru, Prasārāṅga, 1974-" - ], - "identifier": [ - "urn:bnum:10448885", - "urn:lccn:75905691", - "urn:oclc:NYPG774800289-B", - "urn:undefined:NN774800289", - "urn:undefined:(WaOLN)nyp0452779" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada literature -- History and criticism." - ], - "titleDisplay": [ - "Kannaḍa Adhyayana Saṃstheya Kannaḍa sāhitya caritre. Pradhāna Sampādaka, Hā. Mā. Nāyaka: Sampādaka, Ṭi. Vi. Veṅkaṭācala Śāstrī. 1st ed." - ], - "uri": "b10448885", - "numItems": [ - 6 - ], - "numAvailable": [ - 6 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10448885" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 6, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i10105108", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 5 pt. 1" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 5 pt. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545177" - } - ], - "enumerationChronology": [ - "v. 5 pt. 1" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545177" - ], - "idBarcode": [ - "33433005545177" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000005 pt. 1" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i10105107", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 4 pt. 2" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 4 pt. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545169" - } - ], - "enumerationChronology": [ - "v. 4 pt. 2" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545169" - ], - "idBarcode": [ - "33433005545169" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000004 pt. 2" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10105106", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 4 pt. 1" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 4 pt. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545151" - } - ], - "enumerationChronology": [ - "v. 4 pt. 1" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545151" - ], - "idBarcode": [ - "33433005545151" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000004 pt. 1" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10105105", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545144" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545144" - ], - "idBarcode": [ - "33433005545144" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10105104", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545136" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545136" - ], - "idBarcode": [ - "33433005545136" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10105103", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 77-1563 v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 77-1563 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005545128" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLA 77-1563" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005545128" - ], - "idBarcode": [ - "33433005545128" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLA 77-1563 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10621864", - "_score": null, - "_source": { - "extent": [ - "-v." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994", - "Kuvempu, 1904-1994 -- Correspondence" - ], - "publisherLiteral": [ - "Bayalunēmi Prakāśana," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuvempu patragaḷu. Sampādaka Hariharapriya. 1. Āvṛtti." - ], - "shelfMark": [ - "*OLA 79-209" - ], - "creatorLiteral": [ - "Kuvempu, 1904-1994." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75905629" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 79-209" - }, - { - "type": "nypl:Bnumber", - "value": "10621864" - }, - { - "type": "bf:Lccn", - "value": "75905629" - }, - { - "type": "bf:Identifier", - "value": "NN804084236" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0627536" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636109952581, - "publicationStatement": [ - "Mandagere, Bayalunēmi Prakāśana, 1974-" - ], - "identifier": [ - "urn:bnum:10621864", - "urn:lccn:75905629", - "urn:undefined:NN804084236", - "urn:undefined:(WaOLN)nyp0627536" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994 -- Correspondence." - ], - "titleDisplay": [ - "Kuvempu patragaḷu. Sampādaka Hariharapriya. 1. Āvṛtti." - ], - "uri": "b10621864", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Mandagere," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10621864" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014576221" - ], - "shelfMark_sort": "a*OLA 79-000209", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10139695", - "shelfMark": [ - "*OLA 79-209" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433014576221" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014576221" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10691564", - "_score": null, - "_source": { - "extent": [ - "v. illus." - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Carnatic (India)", - "Carnatic (India) -- Biography" - ], - "publisherLiteral": [ - "Kāvyālaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jñāpaka citraśāle." - ], - "shelfMark": [ - "*OLA 81-2012" - ], - "creatorLiteral": [ - "Gundappa, D. V." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "70911699" - ], - "seriesStatement": [ - "Kannaḍa Kāvyamāle" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 81-2012" - }, - { - "type": "nypl:Bnumber", - "value": "10691564" - }, - { - "type": "bf:Lccn", - "value": "70911699" - }, - { - "type": "nypl:Oclc", - "value": "20232509" - }, - { - "type": "nypl:Oclc", - "value": "20232509" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0698090" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)20232509" - } - ], - "idOclc": [ - "20232509" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659153164180, - "publicationStatement": [ - "Maisūru, Kāvyālaya [1969-" - ], - "identifier": [ - "urn:bnum:10691564", - "urn:lccn:70911699", - "urn:oclc:20232509", - "urn:undefined:(WaOLN)nyp0698090", - "urn:undefined:(OCoLC)20232509" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Carnatic (India) -- Biography." - ], - "titleDisplay": [ - "Jñāpaka citraśāle. [Lēkhaka] Di. Vi. Ji." - ], - "uri": "b10691564", - "lccClassification": [ - "DS485.C24 G85" - ], - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10691564" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10153975", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2012 v. 8" - ], - "identifierV2": [ - { - "value": "*OLA 81-2012 v. 8", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013122498" - } - ], - "physicalLocation": [ - "*OLA 81-2012" - ], - "enumerationChronology": [ - "v. 8" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013122498" - ], - "idBarcode": [ - "33433013122498" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2012 v. 000008" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10153974", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2012 v. 7" - ], - "identifierV2": [ - { - "value": "*OLA 81-2012 v. 7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013118769" - } - ], - "physicalLocation": [ - "*OLA 81-2012" - ], - "enumerationChronology": [ - "v. 7" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013118769" - ], - "idBarcode": [ - "33433013118769" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2012 v. 000007" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10153973", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2012 v. 5" - ], - "identifierV2": [ - { - "value": "*OLA 81-2012 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013118751" - } - ], - "physicalLocation": [ - "*OLA 81-2012" - ], - "enumerationChronology": [ - "v. 5" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013118751" - ], - "idBarcode": [ - "33433013118751" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2012 v. 000005" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10153972", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2012 v. 4" - ], - "identifierV2": [ - { - "value": "*OLA 81-2012 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013118744" - } - ], - "physicalLocation": [ - "*OLA 81-2012" - ], - "enumerationChronology": [ - "v. 4" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013118744" - ], - "idBarcode": [ - "33433013118744" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2012 v. 000004" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10734117", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Karanth, Kota Shivarama, 1902-", - "Authors, Kannada", - "Authors, Kannada -- 20th century", - "Authors, Kannada -- 20th century -- Biography" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Smrti pataladinda" - ], - "shelfMark": [ - "*OLA 81-2376" - ], - "creatorLiteral": [ - "Karanth, Kota Shivarama, 1902-" - ], - "createdString": [ - "1977" - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 81-2376" - }, - { - "type": "nypl:Bnumber", - "value": "10734117" - }, - { - "type": "nypl:Oclc", - "value": "10695468" - }, - { - "type": "nypl:Oclc", - "value": "10695468" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0740886" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)10695468" - } - ], - "idOclc": [ - "10695468" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659170872872, - "identifier": [ - "urn:bnum:10734117", - "urn:oclc:10695468", - "urn:undefined:(WaOLN)nyp0740886", - "urn:undefined:(OCoLC)10695468" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Karanth, Kota Shivarama, 1902-", - "Authors, Kannada -- 20th century -- Biography." - ], - "titleDisplay": [ - "Smrti pataladinda / Śivarāma Kāranta." - ], - "uri": "b10734117", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10734117" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10161646", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2376 v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 81-2376 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013122290" - } - ], - "physicalLocation": [ - "*OLA 81-2376" - ], - "enumerationChronology": [ - "v. 3" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013122290" - ], - "idBarcode": [ - "33433013122290" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2376 v. 000003" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10161645", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2376 v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 81-2376 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013122282" - } - ], - "physicalLocation": [ - "*OLA 81-2376" - ], - "enumerationChronology": [ - "v. 2" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013122282" - ], - "idBarcode": [ - "33433013122282" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2376 v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10161644", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 81-2376 v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 81-2376 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013122274" - } - ], - "physicalLocation": [ - "*OLA 81-2376" - ], - "enumerationChronology": [ - "v. 1" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013122274" - ], - "idBarcode": [ - "33433013122274" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 81-2376 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10756472", - "_score": null, - "_source": { - "extent": [ - "v. in illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title, text and musical notation in Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Songs, Tamil", - "Music, Kannada" - ], - "publisherLiteral": [ - "Guru Guha Gana Nilaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Maharaja Sri Swati Tirunal kritis. With notation." - ], - "shelfMark": [ - "JML 82-4" - ], - "creatorLiteral": [ - "Svātitirunāḷ, 1813-1846." - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 66002381" - ], - "seriesStatement": [ - "Karnataka sangeetha tarangini series book 5-" - ], - "contributorLiteral": [ - "Sreenivasa Iyer, Semmangudi R.", - "Shankara Murthy, Mathur R." - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JML 82-4" - }, - { - "type": "nypl:Bnumber", - "value": "10756472" - }, - { - "type": "bf:Lccn", - "value": "sa 66002381" - }, - { - "type": "nypl:Oclc", - "value": "10408849" - }, - { - "type": "nypl:Oclc", - "value": "10408849" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0763357" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)10408849" - } - ], - "idOclc": [ - "10408849" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659158548927, - "publicationStatement": [ - "Bangalore, Guru Guha Gana Nilaya [1963-" - ], - "identifier": [ - "urn:bnum:10756472", - "urn:lccn:sa 66002381", - "urn:oclc:10408849", - "urn:undefined:(WaOLN)nyp0763357", - "urn:undefined:(OCoLC)10408849" - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Songs, Tamil.", - "Music, Kannada." - ], - "titleDisplay": [ - "Maharaja Sri Swati Tirunal kritis. With notation. / Tamil original edited by Semmangudi Srinivasa Aiyar. [Translated] by M.R. Shankaramurthy." - ], - "uri": "b10756472", - "lccClassification": [ - "M1808.R256 M3" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Bangalore" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10756472" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i14902566", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JML 82-4 v. 4-5" - ], - "identifierV2": [ - { - "value": "JML 82-4 v. 4-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433068812035" - } - ], - "physicalLocation": [ - "JML 82-4" - ], - "enumerationChronology": [ - "v. 4-5" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433068812035" - ], - "idBarcode": [ - "33433068812035" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJML 82-4 v. 000004-5" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i14902565", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JML 82-4 v. 2-3" - ], - "identifierV2": [ - { - "value": "JML 82-4 v. 2-3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433068812027" - } - ], - "physicalLocation": [ - "JML 82-4" - ], - "enumerationChronology": [ - "v. 2-3" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433068812027" - ], - "idBarcode": [ - "33433068812027" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJML 82-4 v. 000002-3" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14902564", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JML 82-4 v. 1" - ], - "identifierV2": [ - { - "value": "JML 82-4 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433068812019" - } - ], - "physicalLocation": [ - "JML 82-4" - ], - "enumerationChronology": [ - "v. 1" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433068812019" - ], - "idBarcode": [ - "33433068812019" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJML 82-4 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10836580", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Without the music.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Songs, Kannada", - "Songs, Kannada -- Texts" - ], - "publisherLiteral": [ - "[s.n.]" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yakṣagāna chandassu." - ], - "shelfMark": [ - "*OLA 82-1982" - ], - "creatorLiteral": [ - "Kedilaya, K. P. Seetharama, 1930-" - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 68015716" - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-1982" - }, - { - "type": "nypl:Bnumber", - "value": "10836580" - }, - { - "type": "bf:Lccn", - "value": "sa 68015716" - }, - { - "type": "nypl:Oclc", - "value": "24824716" - }, - { - "type": "nypl:Oclc", - "value": "24824716" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0843597" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)24824716" - } - ], - "idOclc": [ - "24824716" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659354931153, - "publicationStatement": [ - "Śiśila, [s.n.] 1964-" - ], - "identifier": [ - "urn:bnum:10836580", - "urn:lccn:sa 68015716", - "urn:oclc:24824716", - "urn:undefined:(WaOLN)nyp0843597", - "urn:undefined:(OCoLC)24824716" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Songs, Kannada -- Texts." - ], - "titleDisplay": [ - "Yakṣagāna chandassu. Lēkhaka mattu prakāśaka Ka. Pu. Sītārāma Kedilāya." - ], - "uri": "b10836580", - "lccClassification": [ - "M1803.K427 Y3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śiśila" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10836580" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10179896", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013124239" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013124239" - } - ], - "idBarcode": [ - "33433013124239" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 82-1982" - ], - "shelfMark_sort": "a*OLA 82-001982" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10840234", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Authors, Kannada", - "Authors, Kannada -- 20th century", - "Authors, Kannada -- 20th century -- Biography", - "Kaṭṭīmani, Basavarāja, 1919-1989", - "Kaṭṭīmani, Basavarāja, 1919-1989 -- Biography" - ], - "publisherLiteral": [ - "Sāhityaśrī : mārāṭagāraruSam̲aja Pustuk̲alaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Basavarāja Kaṭṭīmani avara ātmakathe." - ], - "shelfMark": [ - "*OLA 82-4677" - ], - "creatorLiteral": [ - "Kaṭṭīmani, Basavarāja, 1919-1989." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901672" - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-4677" - }, - { - "type": "nypl:Bnumber", - "value": "10840234" - }, - { - "type": "bf:Lccn", - "value": "76901672" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0847257" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636173090017, - "publicationStatement": [ - "Dhāravāḍa : Sāhityaśrī : mārāṭagāraruSam̲aja Pustuk̲alaya, 1976-" - ], - "identifier": [ - "urn:bnum:10840234", - "urn:lccn:76901672", - "urn:undefined:(WaOLN)nyp0847257" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Authors, Kannada -- 20th century -- Biography.", - "Kaṭṭīmani, Basavarāja, 1919-1989 -- Biography." - ], - "titleDisplay": [ - "Basavarāja Kaṭṭīmani avara ātmakathe." - ], - "uri": "b10840234", - "lccClassification": [ - "PL4659.K35 Z463" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dhāravāḍa :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Kundaranāḍina kanda." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10840234" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013117753" - ], - "physicalLocation": [ - "*OLA 82-4677" - ], - "shelfMark_sort": "a*OLA 82-004677", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10180475", - "shelfMark": [ - "*OLA 82-4677" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-4677" - }, - { - "type": "bf:Barcode", - "value": "33433013117753" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013117753" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10840658", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Folk songs, Kannada", - "Folk songs, Kannada -- Texts" - ], - "publisherLiteral": [ - "Gurumūrti Prākāśana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa janapada sāhitya bhaṇḍāra" - ], - "shelfMark": [ - "*OLA 82-5593" - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900850" - ], - "contributorLiteral": [ - "Krishnamurthy, Matighatta.", - "Krishnasarma, Betageri Shrinivasarao, 1900-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-5593" - }, - { - "type": "nypl:Bnumber", - "value": "10840658" - }, - { - "type": "bf:Lccn", - "value": "76900850" - }, - { - "type": "nypl:Oclc", - "value": "25604444" - }, - { - "type": "nypl:Oclc", - "value": "25604444" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0847681" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)25604444" - } - ], - "idOclc": [ - "25604444" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659324546764, - "publicationStatement": [ - "Beṅgaḷūru : Gurumūrti Prākāśana, 1975-" - ], - "identifier": [ - "urn:bnum:10840658", - "urn:lccn:76900850", - "urn:oclc:25604444", - "urn:undefined:(WaOLN)nyp0847681", - "urn:undefined:(OCoLC)25604444" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk songs, Kannada -- Texts." - ], - "titleDisplay": [ - "Kannaḍa janapada sāhitya bhaṇḍāra / sangrāhaka, sampādaka, Matighaṭṭa Krṣṇamūrti ; Beṭagēri Krṣṇaśarma avara munnuḍiyondige." - ], - "uri": "b10840658", - "lccClassification": [ - "PL4656 .K33" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Gītegaḷu." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10840658" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10180545", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013126176" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126176" - } - ], - "idBarcode": [ - "33433013126176" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 82-5593" - ], - "shelfMark_sort": "a*OLA 82-005593" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10841472", - "_score": null, - "_source": { - "extent": [ - "v. : port." - ], - "note": [ - { - "noteType": "Note", - "label": "Plays; some previously published in various periodicals.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Bi. Es. Śāstri" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kṣīrasāgarara nāṭakagaḷu." - ], - "shelfMark": [ - "*OLA 82-5560" - ], - "creatorLiteral": [ - "Kṣīrasāgara." - ], - "createdString": [ - "1967" - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-5560" - }, - { - "type": "nypl:Bnumber", - "value": "10841472" - }, - { - "type": "nypl:Oclc", - "value": "28795121" - }, - { - "type": "nypl:Oclc", - "value": "28795121" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0848495" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)28795121" - } - ], - "idOclc": [ - "28795121" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659325090623, - "publicationStatement": [ - "Beṅgaḷūru : Bi. Es. Śāstri, 1967̲" - ], - "identifier": [ - "urn:bnum:10841472", - "urn:oclc:28795121", - "urn:undefined:(WaOLN)nyp0848495", - "urn:undefined:(OCoLC)28795121" - ], - "genreForm": [ - "Kannada drama." - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Kṣīrasāgarara nāṭakagaḷu." - ], - "uri": "b10841472", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10841472" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10180726", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013126085" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126085" - } - ], - "idBarcode": [ - "33433013126085" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 82-5560" - ], - "shelfMark_sort": "a*OLA 82-005560" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10180727", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013126093" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126093" - } - ], - "idBarcode": [ - "33433013126093" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 82-5560" - ], - "shelfMark_sort": "a*OLA 82-005560" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10841507", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Inscriptions, Kannada" - ], - "publisherLiteral": [ - "Kannaḍa Adhyayanapīṭha, Karnāṭaska Viśvavidyālaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śāsana vy̲asaṅga" - ], - "shelfMark": [ - "*OLA 82-3004" - ], - "creatorLiteral": [ - "Kalaburgi, M. M." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75900286" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-3004" - }, - { - "type": "nypl:Bnumber", - "value": "10841507" - }, - { - "type": "bf:Lccn", - "value": "75900286" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0848530" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404959303, - "publicationStatement": [ - "Dhāravāḍa : Kannaḍa Adhyayanapīṭha, Karnāṭaska Viśvavidyālaya, 1974-" - ], - "identifier": [ - "urn:bnum:10841507", - "urn:lccn:75900286", - "urn:undefined:(WaOLN)nyp0848530" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Inscriptions, Kannada." - ], - "titleDisplay": [ - "Śāsana vy̲asaṅga / Em. Em. Kalaburgi; pradhāna samp̲adakaru Ār. Si. Hirēmaṭha." - ], - "uri": "b10841507", - "lccClassification": [ - "PL4654 .K27" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Dhāravāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10841507" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013123777" - ], - "shelfMark_sort": "a*OLA 82-003004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10180742", - "shelfMark": [ - "*OLA 82-3004" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013123777" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013123777" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013123785" - ], - "shelfMark_sort": "a*OLA 82-003004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10180743", - "shelfMark": [ - "*OLA 82-3004" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013123785" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013123785" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10843261", - "_score": null, - "_source": { - "extent": [ - "v. in" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 1-3 in 1 vol., previously published seperately.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada language", - "Kannada language -- Style" - ], - "publisherLiteral": [ - "Kāvyālaya Prakāśakaru" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śaili." - ], - "shelfMark": [ - "*OLA 82-5545" - ], - "creatorLiteral": [ - "Raṅgaṇṇa, Es. Vi., 1898-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72904770" - ], - "seriesStatement": [ - "Kannaḍa kāvyamāle" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 82-5545" - }, - { - "type": "nypl:Bnumber", - "value": "10843261" - }, - { - "type": "bf:Lccn", - "value": "72904770" - }, - { - "type": "nypl:Oclc", - "value": "20553317" - }, - { - "type": "nypl:Oclc", - "value": "20553317" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0850287" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)20553317" - } - ], - "idOclc": [ - "20553317" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659355572451, - "publicationStatement": [ - "Maisūru, Kāvyālaya Prakāśakaru, 1971-" - ], - "identifier": [ - "urn:bnum:10843261", - "urn:lccn:72904770", - "urn:oclc:20553317", - "urn:undefined:(WaOLN)nyp0850287", - "urn:undefined:(OCoLC)20553317" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada language -- Style." - ], - "titleDisplay": [ - "Śaili. [Lēkhaka] Es. Vi. Raṅgaṇṇa." - ], - "uri": "b10843261", - "lccClassification": [ - "PL4649 .R3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10843261" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10181027", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013126036" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013126036" - } - ], - "idBarcode": [ - "33433013126036" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 82-5545" - ], - "shelfMark_sort": "a*OLA 82-005545" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10843271", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Eṃ. El. Śrīkaṇṭhēśagauḍa Saṃsmaraṇa Samiti, Kannaḍa Adhyayana Saṃsthe" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrīkaṇṭhēśagauḍara krtigaḷu." - ], - "shelfMark": [ - "*OLA 83-2833" - ], - "creatorLiteral": [ - "Śrīkaṇṭhēśagauḍa, Eṃ. El., 1852-1926." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902729" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-2833" - }, - { - "type": "nypl:Bnumber", - "value": "10843271" - }, - { - "type": "bf:Lccn", - "value": "75902729" - }, - { - "type": "nypl:Oclc", - "value": "25484171" - }, - { - "type": "nypl:Oclc", - "value": "25484171" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0850297" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)25484171" - } - ], - "idOclc": [ - "25484171" - ], - "uniformTitle": [ - "Works" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659354791974, - "publicationStatement": [ - "Maisūru : Eṃ. El. Śrīkaṇṭhēśagauḍa Saṃsmaraṇa Samiti, Kannaḍa Adhyayana Saṃsthe, 1974-" - ], - "identifier": [ - "urn:bnum:10843271", - "urn:lccn:75902729", - "urn:oclc:25484171", - "urn:undefined:(WaOLN)nyp0850297", - "urn:undefined:(OCoLC)25484171" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Śrīkaṇṭhēśagauḍara krtigaḷu." - ], - "uri": "b10843271", - "lccClassification": [ - "PL4659 .S6464 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Works" - ], - "tableOfContents": [ - "1. Mūlakrtigaḷa saṅgraha." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10843271" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10181030", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013119056" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013119056" - } - ], - "idBarcode": [ - "33433013119056" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 83-2833" - ], - "shelfMark_sort": "a*OLA 83-002833" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10848968", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Without music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes biographical sketches of the composers.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Composers", - "Composers -- Karnataka", - "Composers -- Karnataka -- Biography", - "Songs, Kannada", - "Songs, Kannada -- Texts" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mejisṭik Pres" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1962 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dāsara kīrtanegaḷu." - ], - "shelfMark": [ - "JMK 82-18" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1962" - ], - "idLccn": [ - "sa 64006360 /M" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Mañjunāthayya, K." - ], - "dateStartYear": [ - 1962 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMK 82-18" - }, - { - "type": "nypl:Bnumber", - "value": "10848968" - }, - { - "type": "bf:Lccn", - "value": "sa 64006360 /M" - }, - { - "type": "nypl:Oclc", - "value": "23301757" - }, - { - "type": "nypl:Oclc", - "value": "23301757" - }, - { - "type": "nypl:Oclc", - "value": "NYPG84-B25944" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0855999" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)23301757" - } - ], - "idOclc": [ - "23301757", - "NYPG84-B25944" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1671736587343, - "publicationStatement": [ - "Uḍupi, Mejisṭik Pres [1962-" - ], - "identifier": [ - "urn:bnum:10848968", - "urn:lccn:sa 64006360 /M", - "urn:oclc:23301757", - "urn:oclc:NYPG84-B25944", - "urn:undefined:(WaOLN)nyp0855999", - "urn:undefined:(OCoLC)23301757" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1962" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Composers -- Karnataka -- Biography.", - "Songs, Kannada -- Texts." - ], - "titleDisplay": [ - "Dāsara kīrtanegaḷu. Saṅgrāhakaru Ke. Mañjunāthayya. [Pariśōdhakaru Eṃ. Rājagōpālācārya]" - ], - "uri": "b10848968", - "lccClassification": [ - "M1808.S55 D4" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Uḍupi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10848968" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i14915103", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMK 82-18 v. 2" - ], - "identifierV2": [ - { - "value": "JMK 82-18 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071260552" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "JMK 82-18" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433071260552" - ], - "idBarcode": [ - "33433071260552" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJMK 82-18 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14915102", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "shelfMark": [ - "JMK 82-18 v. 1" - ], - "identifierV2": [ - { - "value": "JMK 82-18 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433071260776" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "JMK 82-18" - ], - "recapCustomerCode": [ - "NP" - ], - "identifier": [ - "urn:barcode:33433071260776" - ], - "idBarcode": [ - "33433071260776" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJMK 82-18 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10864908", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "India", - "India -- History" - ], - "publisherLiteral": [ - "Prasārāṇga, Maisūru Viśvavidyānilaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bhāratada caritre." - ], - "shelfMark": [ - "*OLL 82-770" - ], - "creatorLiteral": [ - "Narasayya, K." - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "sa 68002831" - ], - "seriesStatement": [ - "Maisūru Viśvavidyānilayada Kannaḍa granthamāle, 54" - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLL 82-770" - }, - { - "type": "nypl:Bnumber", - "value": "10864908" - }, - { - "type": "bf:Lccn", - "value": "sa 68002831" - }, - { - "type": "nypl:Oclc", - "value": "31187193" - }, - { - "type": "nypl:Oclc", - "value": "31187193" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0871959" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)31187193" - } - ], - "idOclc": [ - "31187193" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659308511682, - "publicationStatement": [ - "[Maisūru] Prasārāṇga, Maisūru Viśvavidyānilaya, 196-" - ], - "identifier": [ - "urn:bnum:10864908", - "urn:lccn:sa 68002831", - "urn:oclc:31187193", - "urn:undefined:(WaOLN)nyp0871959", - "urn:undefined:(OCoLC)31187193" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "India -- History." - ], - "titleDisplay": [ - "Bhāratada caritre. [Lēkhaka] Ke. Narasayya." - ], - "uri": "b10864908", - "lccClassification": [ - "DS436 .N37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Maisūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10864908" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13932012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLL 82-770" - ], - "identifierV2": [ - { - "value": "*OLL 82-770", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061320531" - } - ], - "physicalLocation": [ - "*OLL 82-770" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061320531" - ], - "idBarcode": [ - "33433061320531" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLL 82-000770" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10893177", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"State level school reader in Kannada for non-Kannada speaking students.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added t. p. in English: Kannada nudi /editor, M. S.Thirumalai.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada and Hindi ;introductory and explanatory matter in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada language", - "Kannada language -- Textbooks for foreign speakers" - ], - "publisherLiteral": [ - "Senṭral Insṭiṭyūte āph Iṇḍiyan Lāngvējas" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa nuḍi" - ], - "shelfMark": [ - "*OLA 84-2050" - ], - "creatorLiteral": [ - "Mallikārjuna, B." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "83901906" - ], - "seriesStatement": [ - "CIIL second language textbooks series ; 6,7" - ], - "contributorLiteral": [ - "Thirumalai, M. S." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-2050" - }, - { - "type": "nypl:Bnumber", - "value": "10893177" - }, - { - "type": "bf:Lccn", - "value": "83901906" - }, - { - "type": "nypl:Oclc", - "value": "14129155" - }, - { - "type": "nypl:Oclc", - "value": "14129155" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0900270" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)14129155" - } - ], - "idOclc": [ - "14129155" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659324553239, - "publicationStatement": [ - "Maisūru : Senṭral Insṭiṭyūte āph Iṇḍiyan Lāngvējas, 1980-" - ], - "identifier": [ - "urn:bnum:10893177", - "urn:lccn:83901906", - "urn:oclc:14129155", - "urn:undefined:(WaOLN)nyp0900270", - "urn:undefined:(OCoLC)14129155" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada language -- Textbooks for foreign speakers." - ], - "titleDisplay": [ - "Kannaḍa nuḍi / lēkhaka, Bha. Mallikārjuna ;sampadaka, Mā. Su. Tirumalai." - ], - "uri": "b10893177", - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10893177" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10187928", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997643" - } - ], - "physicalLocation": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 3" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997643" - ], - "idBarcode": [ - "33433012997643" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000003" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10187926", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997627" - } - ], - "physicalLocation": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 2" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997627" - ], - "idBarcode": [ - "33433012997627" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10187927", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 84-2050|zLibrary has: Vols. 1-3. v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997635" - } - ], - "physicalLocation": [ - "*OLA 84-2050|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 1" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997635" - ], - "idBarcode": [ - "33433012997635" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2050|zLibrary has: Vols. 1-3. v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10893183", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Songs without music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 2 published in 1974.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Purandaradāsa, 1484-1564", - "Purandaradāsa, 1484-1564 -- Criticism and interpretation", - "Carnatic music" - ], - "publisherLiteral": [ - "Śrīpurandaradāsara Nānnūraneya Varṣada Utsava Maṇḍala" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "̄Srī Purandaradāsara sāhitya" - ], - "shelfMark": [ - "JMK 84-11" - ], - "createdString": [ - "1974" - ], - "contributorLiteral": [ - "Purandaradāsa, 1484-1564.", - "Krṣṇaśarmā, Beṭagēri, 1900-", - "Huccarāyaru, Beṅgēri." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMK 84-11" - }, - { - "type": "nypl:Bnumber", - "value": "10893183" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0900276" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1653404970525, - "publicationStatement": [ - "Dhāravāḍa : Śrīpurandaradāsara Nānnūraneya Varṣada Utsava Maṇḍala, 1974-" - ], - "identifier": [ - "urn:bnum:10893183", - "urn:undefined:(WaOLN)nyp0900276" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Purandaradāsa, 1484-1564 -- Criticism and interpretation.", - "Carnatic music." - ], - "titleDisplay": [ - "̄Srī Purandaradāsara sāhitya / sampādakaru Śrī Beṭagēri Krṣṇaśarma ; Śrī Beṅgēri Huccarāyaru." - ], - "uri": "b10893183", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dhāravāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "2. Ārtabhāva." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10893183" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433068805302" - ], - "physicalLocation": [ - "JMK 84-11" - ], - "shelfMark_sort": "aJMK 84-11 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14916909", - "shelfMark": [ - "JMK 84-11 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMK 84-11 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433068805302" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433068805302" - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10894417", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Yakṣagāna", - "Actors", - "Actors -- Karnataka", - "Actors -- Karnataka -- Biography" - ], - "publisherLiteral": [ - "Mayura Prakashana : adhikrta mārātagāraru, Pragatiśīla Sāhitya Saṅgha" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yakṣagāna kalāvidaru" - ], - "shelfMark": [ - "*OLA 84-1994" - ], - "creatorLiteral": [ - "Alse, A. Ganapaiah, 1940-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75906010" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-1994" - }, - { - "type": "nypl:Bnumber", - "value": "10894417" - }, - { - "type": "bf:Lccn", - "value": "75906010" - }, - { - "type": "nypl:Oclc", - "value": "20808576" - }, - { - "type": "nypl:Oclc", - "value": "20808576" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0901510" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)20808576" - } - ], - "idOclc": [ - "20808576" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659354932047, - "publicationStatement": [ - "Beṅgaḷūru : Mayura Prakashana : adhikrta mārātagāraru, Pragatiśīla Sāhitya Saṅgha, 1974-" - ], - "identifier": [ - "urn:bnum:10894417", - "urn:lccn:75906010", - "urn:oclc:20808576", - "urn:undefined:(WaOLN)nyp0901510", - "urn:undefined:(OCoLC)20808576" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Yakṣagāna.", - "Actors -- Karnataka -- Biography." - ], - "titleDisplay": [ - "Yakṣagāna kalāvidaru / A. Gaṇapayya Alse." - ], - "uri": "b10894417", - "lccClassification": [ - "PN2881.5 .A4" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10894417" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10188096", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-1994|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 84-1994|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997601" - } - ], - "physicalLocation": [ - "*OLA 84-1994|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997601" - ], - "idBarcode": [ - "33433012997601" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-1994|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10894424", - "_score": null, - "_source": { - "extent": [ - "v. : ill., map ;" - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1959.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Rājya Sāhitya Akāḍemiyinda puraskrta grantha, 1960.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: v.1, p. [290]-296.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada literature", - "Kannada literature -- History and criticism" - ], - "publisherLiteral": [ - "Samāja Pustakālaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sāhitya saṃśōdhane mattu samālōcane" - ], - "shelfMark": [ - "*OLA 83-4874" - ], - "creatorLiteral": [ - "Naik, Sadanand Narayan, 1913-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74904049" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-4874" - }, - { - "type": "nypl:Bnumber", - "value": "10894424" - }, - { - "type": "bf:Lccn", - "value": "74904049" - }, - { - "type": "nypl:Oclc", - "value": "20496091" - }, - { - "type": "nypl:Oclc", - "value": "20496091" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0901517" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)20496091" - } - ], - "idOclc": [ - "20496091" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659344353544, - "publicationStatement": [ - "Dhāravāḍa : Samāja Pustakālaya, 1974-" - ], - "identifier": [ - "urn:bnum:10894424", - "urn:lccn:74904049", - "urn:oclc:20496091", - "urn:undefined:(WaOLN)nyp0901517", - "urn:undefined:(OCoLC)20496091" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada literature -- History and criticism." - ], - "titleDisplay": [ - "Sāhitya saṃśōdhane mattu samālōcane / lēkhakaru Sadānanda N̄yaka." - ], - "uri": "b10894424", - "lccClassification": [ - "PL4650.5 .N26 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dhāravāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10894424" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10188098", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 83-4874|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 83-4874|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012996918" - } - ], - "physicalLocation": [ - "*OLA 83-4874|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012996918" - ], - "idBarcode": [ - "33433012996918" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 83-4874|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10902372", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Without the music.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 7: Karnāṭaka Viśvavidyālaya, Rajata Mahōtsava prakaṭane.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Folk songs, Kannada", - "Folk songs, Kannada -- Texts" - ], - "publisherLiteral": [ - "Karnāṭaka Viśvavidyālaya" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jīvana Jōkāli." - ], - "shelfMark": [ - "*OLA 84-3320" - ], - "creatorLiteral": [ - "Sunkapur, M. S." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "70928091" - ], - "seriesStatement": [ - "Janapada sāhitya māle, 11, 16, 17" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-3320" - }, - { - "type": "nypl:Bnumber", - "value": "10902372" - }, - { - "type": "bf:Lccn", - "value": "70928091" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0909480" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636202044347, - "publicationStatement": [ - "Dhāravāḍa, Karnāṭaka Viśvavidyālaya [1971-" - ], - "identifier": [ - "urn:bnum:10902372", - "urn:lccn:70928091", - "urn:undefined:(WaOLN)nyp0909480" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk songs, Kannada -- Texts." - ], - "titleDisplay": [ - "Jīvana Jōkāli. Sampādakaru Eṃ. Es. Suṅkāpura." - ], - "uri": "b10902372", - "lccClassification": [ - "M1808.S795 J6" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Dhāravāḍa," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "6. Ḍoḷḷina hāḍu. -- 7. Gaṇgigauri saṃvāda-Bedeṇḍegabba. -- 8 K̲olupada." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10902372" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012998203" - ], - "physicalLocation": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8." - ], - "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000008", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10189109", - "shelfMark": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 8" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 8" - }, - { - "type": "bf:Barcode", - "value": "33433012998203" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 8" - ], - "idBarcode": [ - "33433012998203" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012998195" - ], - "physicalLocation": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8." - ], - "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000007", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10189108", - "shelfMark": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 7" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 7" - }, - { - "type": "bf:Barcode", - "value": "33433012998195" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 7" - ], - "idBarcode": [ - "33433012998195" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012998187" - ], - "physicalLocation": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8." - ], - "shelfMark_sort": "a*OLA 84-3320|zLibrary has: Vol. 6-8. v. 000006", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10189107", - "shelfMark": [ - "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-3320|zLibrary has: Vol. 6-8. v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433012998187" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433012998187" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10920342", - "_score": null, - "_source": { - "extent": [ - "v. port." - ], - "note": [ - { - "noteType": "Note", - "label": "Comprises collected writings of the author, chiefly prefaces to his own works.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Viśvabhārati Prakāśana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ciracētana." - ], - "shelfMark": [ - "*OLA 84-4187" - ], - "creatorLiteral": [ - "Krishnarao, A. N., 1908-1971." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "72907646" - ], - "contributorLiteral": [ - "Krṣṇarāya, Śā. Maṃ." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-4187" - }, - { - "type": "nypl:Bnumber", - "value": "10920342" - }, - { - "type": "bf:Lccn", - "value": "72907646" - }, - { - "type": "nypl:Oclc", - "value": "20716535" - }, - { - "type": "nypl:Oclc", - "value": "20716535" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0927484" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)20716535" - } - ], - "idOclc": [ - "20716535" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659310404344, - "publicationStatement": [ - "Maḍagāṃva, Viśvabhārati Prakāśana 1894- i.e. 1972-" - ], - "identifier": [ - "urn:bnum:10920342", - "urn:lccn:72907646", - "urn:oclc:20716535", - "urn:undefined:(WaOLN)nyp0927484", - "urn:undefined:(OCoLC)20716535" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Ciracētana. Sampādaka Śā. Maṃ. Krṣṇarāya." - ], - "uri": "b10920342", - "lccClassification": [ - "PL4659.K68 C5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Maḍagāṃva" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10920342" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10194087", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-4187|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 84-4187|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012998468" - } - ], - "physicalLocation": [ - "*OLA 84-4187|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012998468" - ], - "idBarcode": [ - "33433012998468" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-4187|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10920356", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada language", - "Kannada language -- Grammar" - ], - "publisherLiteral": [ - "Kannada Saṃśōdhana Saṃsthe, Karnāṭaka Viśvavidyāla" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa vyākaraṇada kelavu samasyegaḷu" - ], - "shelfMark": [ - "*OLA 84-4185" - ], - "creatorLiteral": [ - "Krṣṇa Bhaṭṭa, Seḍiyāpu, 1902-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75906826" - ], - "seriesStatement": [ - "Saṃśōdhana upanyāsamāle ; 10-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-4185" - }, - { - "type": "nypl:Bnumber", - "value": "10920356" - }, - { - "type": "bf:Lccn", - "value": "75906826" - }, - { - "type": "nypl:Oclc", - "value": "35765149" - }, - { - "type": "nypl:Oclc", - "value": "35765149" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0927498" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)35765149" - } - ], - "idOclc": [ - "35765149" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659324590260, - "publicationStatement": [ - "Dhāravāḍa : Kannada Saṃśōdhana Saṃsthe, Karnāṭaka Viśvavidyāla, 1974-" - ], - "identifier": [ - "urn:bnum:10920356", - "urn:lccn:75906826", - "urn:oclc:35765149", - "urn:undefined:(WaOLN)nyp0927498", - "urn:undefined:(OCoLC)35765149" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada language -- Grammar." - ], - "titleDisplay": [ - "Kannaḍa vyākaraṇada kelavu samasyegaḷu / upanyāsakaru sēḍiy̲apu lrṣṇabhaṭṭa." - ], - "uri": "b10920356", - "lccClassification": [ - "PL4644 .K7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dhāravāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10920356" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10194093", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-4185|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 84-4185|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012998450" - } - ], - "physicalLocation": [ - "*OLA 84-4185|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012998450" - ], - "idBarcode": [ - "33433012998450" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-4185|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10920641", - "_score": null, - "_source": { - "extent": [ - "v. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Published on the occasion of the golden jubilee celebration of the Kannada Sahitya Parishat.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kannada literature", - "Kannada literature -- Congresses" - ], - "publisherLiteral": [ - "Kannaḍa Sāhitya Pariṣattu" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kannaḍa sāhitya sammēḷanagaḷa adhyakṣara bhāṣaṇagaḷu." - ], - "shelfMark": [ - "*OLA 84-4113" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "76922271" - ], - "seriesStatement": [ - "Trivārṣika yōjaneya pustakamāle, 10" - ], - "contributorLiteral": [ - "Kannada Literary Akademy.", - "Kannada Literary Conference." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-4113" - }, - { - "type": "nypl:Bnumber", - "value": "10920641" - }, - { - "type": "bf:Lccn", - "value": "76922271" - }, - { - "type": "nypl:Oclc", - "value": "35765152" - }, - { - "type": "nypl:Oclc", - "value": "35765152" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0927784" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)35765152" - } - ], - "idOclc": [ - "35765152" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659324553239, - "publicationStatement": [ - "Beṅgaḷūru, Kannaḍa Sāhitya Pariṣattu, 1970-" - ], - "identifier": [ - "urn:bnum:10920641", - "urn:lccn:76922271", - "urn:oclc:35765152", - "urn:undefined:(WaOLN)nyp0927784", - "urn:undefined:(OCoLC)35765152" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kannada literature -- Congresses." - ], - "titleDisplay": [ - "Kannaḍa sāhitya sammēḷanagaḷa adhyakṣara bhāṣaṇagaḷu." - ], - "uri": "b10920641", - "lccClassification": [ - "PL4650 .A27" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10920641" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10194135", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-4113|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 84-4113|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012998286" - } - ], - "physicalLocation": [ - "*OLA 84-4113|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012998286" - ], - "idBarcode": [ - "33433012998286" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-4113|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10926039", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Geḷeyara Gumpu (Karnataka, India)" - ], - "publisherLiteral": [ - "Rājahaṃsa Prakāśana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nānu kaṇḍa Geḷeyara Gumpu" - ], - "shelfMark": [ - "*OLA 84-2972" - ], - "creatorLiteral": [ - "Kulakarṇi, S. G." - ], - "createdString": [ - "1978" - ], - "idLccn": [ - "79900881 /SA" - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-2972" - }, - { - "type": "nypl:Bnumber", - "value": "10926039" - }, - { - "type": "bf:Lccn", - "value": "79900881 /SA" - }, - { - "type": "nypl:Oclc", - "value": "8845502" - }, - { - "type": "nypl:Oclc", - "value": "8845502" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0933193" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)8845502" - } - ], - "idOclc": [ - "8845502" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659333550531, - "publicationStatement": [ - "Dhāravāḍa : Rājahaṃsa Prakāśana, [1978]-" - ], - "identifier": [ - "urn:bnum:10926039", - "urn:lccn:79900881 /SA", - "urn:oclc:8845502", - "urn:undefined:(WaOLN)nyp0933193", - "urn:undefined:(OCoLC)8845502" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Geḷeyara Gumpu (Karnataka, India)" - ], - "titleDisplay": [ - "Nānu kaṇḍa Geḷeyara Gumpu / Śē. Gō. Kulakarṇi." - ], - "uri": "b10926039", - "lccClassification": [ - "PL4650.A243 K84 1978" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "Dhāravāḍa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Śānti-Nikētana.--2. Jayakarnāṭka.--3. Sādhana Mudraṇālaya mattu Jīvana māsapatrike." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10926039" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10195006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 3" - ], - "identifierV2": [ - { - "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997999" - } - ], - "physicalLocation": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 3" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997999" - ], - "idBarcode": [ - "33433012997999" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000003" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10195005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 2" - ], - "identifierV2": [ - { - "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997981" - } - ], - "physicalLocation": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 2" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997981" - ], - "idBarcode": [ - "33433012997981" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10195004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 1" - ], - "identifierV2": [ - { - "value": "*OLA 84-2972|zLibrary has: Vols. 1-3. v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012997973" - } - ], - "physicalLocation": [ - "*OLA 84-2972|zLibrary has: Vols. 1-3." - ], - "enumerationChronology": [ - "v. 1" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012997973" - ], - "idBarcode": [ - "33433012997973" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-2972|zLibrary has: Vols. 1-3. v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10946973", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 published in 1971.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kālidāsa.", - "Kālidāsa. -- Poetry" - ], - "publisherLiteral": [ - "Rāsa Prakāśana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śākuntalā." - ], - "shelfMark": [ - "*OLA 84-4754" - ], - "creatorLiteral": [ - "Rāmarāya, Samētanahaḷḷi, 1917-1999." - ], - "createdString": [ - "1971" - ], - "seriesStatement": [ - "S. Rama Raya. Rāsa sāhitya, 16", - "Rāsa prakāśana, 9" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-4754" - }, - { - "type": "nypl:Bnumber", - "value": "10946973" - }, - { - "type": "nypl:Oclc", - "value": "32071380" - }, - { - "type": "nypl:Oclc", - "value": "32071380" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0954152" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)32071380" - } - ], - "idOclc": [ - "32071380" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659355644076, - "publicationStatement": [ - "[Maṇḍya?] Rāsa Prakāśana [1971-" - ], - "identifier": [ - "urn:bnum:10946973", - "urn:oclc:32071380", - "urn:undefined:(WaOLN)nyp0954152", - "urn:undefined:(OCoLC)32071380" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kālidāsa. -- Poetry." - ], - "titleDisplay": [ - "Śākuntalā. [Lēkhaka] Samētanahaḷḷi Rāmarāya." - ], - "uri": "b10946973", - "lccClassification": [ - "PK4659.R316 S2" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Maṇḍya?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "2. Vyavahārāṅgaṃ." - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10946973" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10198402", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-4754|zLibrary has: Vol. 2." - ], - "identifierV2": [ - { - "value": "*OLA 84-4754|zLibrary has: Vol. 2.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012998641" - } - ], - "physicalLocation": [ - "*OLA 84-4754|zLibrary has: Vol. 2." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012998641" - ], - "idBarcode": [ - "33433012998641" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-4754|zLibrary has: Vol. 2." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10956213", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit (Kannada script); introductory matter in English and Kannada; commentary in Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Madhva, active 13th century", - "Dvaita (Vedanta)", - "Dvaita (Vedanta) -- Early works to 1800" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śrī Sarvajñācārya Sēvā Saṅgha" - ], - "description": [ - "Exposition of philosophical concepts according to the Dvaita (dualism) school in Indian philosophy as propounded by Madhva, 13th cent." - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "numItemsTotal": [ - 10 - ], - "createdYear": [ - 1978 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yuktimallikā : mūlasahita Kannaḍa arthānuvāda" - ], - "shelfMark": [ - "*OKN 85-1560" - ], - "numItemVolumesParsed": [ - 10 - ], - "creatorLiteral": [ - "Vādirāja, active 16th century." - ], - "createdString": [ - "1978" - ], - "idLccn": [ - "83901597 /SA" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 85-1560" - }, - { - "type": "nypl:Bnumber", - "value": "10956213" - }, - { - "type": "bf:Lccn", - "value": "83901597 /SA" - }, - { - "type": "nypl:Oclc", - "value": "NYPG85-B59981" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0963410" - } - ], - "idOclc": [ - "NYPG85-B59981" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675264539633, - "publicationStatement": [ - "Dāvaṇagere : Śrī Sarvajñācārya Sēvā Saṅgha, 1978-" - ], - "identifier": [ - "urn:bnum:10956213", - "urn:lccn:83901597 /SA", - "urn:oclc:NYPG85-B59981", - "urn:undefined:(WaOLN)nyp0963410" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Madhva, active 13th century.", - "Dvaita (Vedanta) -- Early works to 1800." - ], - "titleDisplay": [ - "Yuktimallikā : mūlasahita Kannaḍa arthānuvāda / anuvādakaru Bi. Bhīmarāv." - ], - "uri": "b10956213", - "lccClassification": [ - "BL1286.292.M34 V33 1978" - ], - "numItems": [ - 10 - ], - "numAvailable": [ - 10 - ], - "placeOfPublication": [ - "Dāvaṇagere" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10956213" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 10, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "uri": "i13951317", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 14" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 14", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618830" - } - ], - "enumerationChronology": [ - "v. 14" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618830" - ], - "idBarcode": [ - "33433058618830" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 14, - "lte": 14 - } - ], - "enumerationChronology_sort": [ - " 14-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000014" - }, - "sort": [ - " 14-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "uri": "i13951316", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 13" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 13", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618822" - } - ], - "enumerationChronology": [ - "v. 13" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618822" - ], - "idBarcode": [ - "33433058618822" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "enumerationChronology_sort": [ - " 13-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000013" - }, - "sort": [ - " 13-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "uri": "i13951315", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 11" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 11", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618749" - } - ], - "enumerationChronology": [ - "v. 11" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618749" - ], - "idBarcode": [ - "33433058618749" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ], - "enumerationChronology_sort": [ - " 11-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000011" - }, - "sort": [ - " 11-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i13951314", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 10" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 10", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618731" - } - ], - "enumerationChronology": [ - "v. 10" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618731" - ], - "idBarcode": [ - "33433058618731" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } - ], - "enumerationChronology_sort": [ - " 10-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000010" - }, - "sort": [ - " 10-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i13951313", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 8" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 8", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618814" - } - ], - "enumerationChronology": [ - "v. 8" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618814" - ], - "idBarcode": [ - "33433058618814" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "enumerationChronology_sort": [ - " 8-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000008" - }, - "sort": [ - " 8-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i13951312", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 7" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618806" - } - ], - "enumerationChronology": [ - "v. 7" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618806" - ], - "idBarcode": [ - "33433058618806" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "enumerationChronology_sort": [ - " 7-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000007" - }, - "sort": [ - " 7-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i13951311", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 6" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618798" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618798" - ], - "idBarcode": [ - "33433058618798" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i13951310", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 5" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618780" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618780" - ], - "idBarcode": [ - "33433058618780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i13951309", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 4" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618772" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618772" - ], - "idBarcode": [ - "33433058618772" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13951308", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 85-1560 v. 3" - ], - "identifierV2": [ - { - "value": "*OKN 85-1560 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618764" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OKN 85-1560" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618764" - ], - "idBarcode": [ - "33433058618764" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 85-1560 v. 000003" - }, - "sort": [ - " 3-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10960071", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Folk songs, Kannada", - "Folk songs, Kannada -- Dhāwār (District)", - "Folk songs, Kannada -- Dhāwār (District) -- Texts" - ], - "publisherLiteral": [ - "Bhārati Prakāśana ayāṇḍa Buk Ḍipō," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Gī gī padagaḷu." - ], - "shelfMark": [ - "*OLA 85-1273" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78903423 /SA" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1273" - }, - { - "type": "nypl:Bnumber", - "value": "10960071" - }, - { - "type": "bf:Lccn", - "value": "78903423 /SA" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0967274" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636195364637, - "publicationStatement": [ - "Hubbaḷḷi : Bhārati Prakāśana ayāṇḍa Buk Ḍipō, [197-]" - ], - "identifier": [ - "urn:bnum:10960071", - "urn:lccn:78903423 /SA", - "urn:undefined:(WaOLN)nyp0967274" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Folk songs, Kannada -- Dhāwār (District) -- Texts." - ], - "titleDisplay": [ - "Gī gī padagaḷu." - ], - "uri": "b10960071", - "lccClassification": [ - "PL4658.5.D482 G5 1970z" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Hubbaḷḷi :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10960071" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999102" - ], - "physicalLocation": [ - "*OLA 85-1273" - ], - "shelfMark_sort": "a*OLA 85-001273", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10200106", - "shelfMark": [ - "*OLA 85-1273" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1273" - }, - { - "type": "bf:Barcode", - "value": "33433012999102" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433012999102" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10960726", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2- Pradhāna sampādakaru Es. Eṃ. Vrṣabhēndrasvāmi.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Basava, active 1160", - "Basava, active 1160 -- Criticism and interpretation", - "Lingayats" - ], - "publisherLiteral": [ - "Kannaḍa Adhyayanapīṭha, Karnāṭaka Viśvavidyālaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Basavamārga" - ], - "shelfMark": [ - "*OLA 85-1658" - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "82903291 /SA" - ], - "contributorLiteral": [ - "Kalaburgi, Eṃ. Eṃ., 1938-", - "Sunkapur, M. S." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1658" - }, - { - "type": "nypl:Bnumber", - "value": "10960726" - }, - { - "type": "bf:Lccn", - "value": "82903291 /SA" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0967929" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636173089685, - "publicationStatement": [ - "Dhāravāḍa : Kannaḍa Adhyayanapīṭha, Karnāṭaka Viśvavidyālaya, 1980-" - ], - "identifier": [ - "urn:bnum:10960726", - "urn:lccn:82903291 /SA", - "urn:undefined:(WaOLN)nyp0967929" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Basava, active 1160 -- Criticism and interpretation.", - "Lingayats." - ], - "titleDisplay": [ - "Basavamārga / pradhāna sampādakaru Eṃ. Es. Suṅkāpura, sampādakaru Eṃ. Eṃ. Kalaburgi." - ], - "uri": "b10960726", - "lccClassification": [ - "PL4659.B34 Z64 1980" - ], - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Dhāravāḍa :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1-2. Basavamārga.--3. Śivaśaraṇara kāyaka siddhānta.--4. Basavēśvara-Gāndhīji." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10960726" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999300" - ], - "physicalLocation": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4." - ], - "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10200274", - "shelfMark": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433012999300" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433012999300" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999318" - ], - "physicalLocation": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4." - ], - "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10200273", - "shelfMark": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433012999318" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433012999318" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999284" - ], - "physicalLocation": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4." - ], - "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10200272", - "shelfMark": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433012999284" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433012999284" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433012999292" - ], - "physicalLocation": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4." - ], - "shelfMark_sort": "a*OLA 85-1658|zLibrary has: Vol. 1-4. v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10200271", - "shelfMark": [ - "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 85-1658|zLibrary has: Vol. 1-4. v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433012999292" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433012999292" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10960742", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 2- published by: Rāyabḡa, Jille Beḷagāvi : Kālagati Prakāśana.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hinduism" - ], - "publisherLiteral": [ - "Prasārāṅga, Beṅgaḷūru Viśvavidyālaya," - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Pravāha patitara karma ʻHindūʼ emba dharma" - ], - "shelfMark": [ - "*OLY 85-1572" - ], - "creatorLiteral": [ - "Joshi, Shankar Baldixit, 1896-" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77904440" - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 85-1572" - }, - { - "type": "nypl:Bnumber", - "value": "10960742" - }, - { - "type": "bf:Lccn", - "value": "77904440" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0967945" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636217462897, - "publicationStatement": [ - "Beṅgaḷūru : Prasārāṅga, Beṅgaḷūru Viśvavidyālaya, c1976-" - ], - "identifier": [ - "urn:bnum:10960742", - "urn:lccn:77904440", - "urn:undefined:(WaOLN)nyp0967945" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hinduism." - ], - "titleDisplay": [ - "Pravāha patitara karma ʻHindūʼ emba dharma / Śaṃ. Bā. Jōśi." - ], - "uri": "b10960742", - "lccClassification": [ - "BL1210 .J63 1976" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. [Without special title] -- 2. Vaivasvata Manupranita Manava dharma." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10960742" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i13952123", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 85-1572 v. 2" - ], - "identifierV2": [ - { - "value": "*OLY 85-1572 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060421967" - } - ], - "physicalLocation": [ - "*OLY 85-1572" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433060421967" - ], - "idBarcode": [ - "33433060421967" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 85-1572 v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13952122", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 85-1572 v. 1" - ], - "identifierV2": [ - { - "value": "*OLY 85-1572 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060421959" - } - ], - "physicalLocation": [ - "*OLY 85-1572" - ], - "enumerationChronology": [ - "v. 1" - ], - "identifier": [ - "urn:barcode:33433060421959" - ], - "idBarcode": [ - "33433060421959" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 85-1572 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10977467", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Śūnyasampādane", - "Lingayat poetry, Kannada", - "Lingayat poetry, Kannada -- History and criticism" - ], - "publisherLiteral": [ - "Ṡrī śaila Jagadguru Niḍumāmiḍi Nivāsa" - ], - "description": [ - "On the Śūnyasampādane, 15th century anthology of Virasaivite poetry." - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sampādaneya sompu : samagra vivēcane" - ], - "shelfMark": [ - "*OLA 84-4577" - ], - "creatorLiteral": [ - "Ja. Ca. Ni., 1911-" - ], - "createdString": [ - "1977" - ], - "idLccn": [ - "78904240 /SA" - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 84-4577" - }, - { - "type": "nypl:Bnumber", - "value": "10977467" - }, - { - "type": "bf:Lccn", - "value": "78904240 /SA" - }, - { - "type": "nypl:Oclc", - "value": "11210904" - }, - { - "type": "nypl:Oclc", - "value": "11210904" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0984696" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11210904" - } - ], - "idOclc": [ - "11210904" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659340534228, - "publicationStatement": [ - "Beṅgaḷūru : Ṡrī śaila Jagadguru Niḍumāmiḍi Nivāsa, 1977-" - ], - "identifier": [ - "urn:bnum:10977467", - "urn:lccn:78904240 /SA", - "urn:oclc:11210904", - "urn:undefined:(WaOLN)nyp0984696", - "urn:undefined:(OCoLC)11210904" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Śūnyasampādane.", - "Lingayat poetry, Kannada -- History and criticism." - ], - "titleDisplay": [ - "Sampādaneya sompu : samagra vivēcane / Ja.Ca.Ni." - ], - "uri": "b10977467", - "lccClassification": [ - "PL4656.S953 J3 1977" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Beṅgaḷūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Esaḷondu. Anubhava sampuṭa." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10977467" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10202056", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLA 84-4577|zLibrary has: Vol. 1." - ], - "identifierV2": [ - { - "value": "*OLA 84-4577|zLibrary has: Vol. 1.", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012998591" - } - ], - "physicalLocation": [ - "*OLA 84-4577|zLibrary has: Vol. 1." - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012998591" - ], - "idBarcode": [ - "33433012998591" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "a*OLA 84-4577|zLibrary has: Vol. 1." - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10996867", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994", - "Kuvempu, 1904-1994 -- Biography", - "Authors, Kannada", - "Authors, Kannada -- 20th century", - "Authors, Kannada -- 20th century -- Biography" - ], - "publisherLiteral": [ - "Sahyādri Prakāśana" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nenapina dōṇiyalli" - ], - "shelfMark": [ - "*OLA 86-3268" - ], - "creatorLiteral": [ - "Kuvempu, 1904-1994." - ], - "createdString": [ - "1980" - ], - "idLccn": [ - "81901148 /SA" - ], - "seriesStatement": [ - "Sahyādri Prakāśana ; 25" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 86-3268" - }, - { - "type": "nypl:Bnumber", - "value": "10996867" - }, - { - "type": "bf:Lccn", - "value": "81901148 /SA" - }, - { - "type": "nypl:Oclc", - "value": "8111415" - }, - { - "type": "nypl:Oclc", - "value": "8111415" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp1004145" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)8111415" - } - ], - "idOclc": [ - "8111415" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1659332831108, - "publicationStatement": [ - "Maisūru : Sahyādri Prakāśana 1980-" - ], - "identifier": [ - "urn:bnum:10996867", - "urn:lccn:81901148 /SA", - "urn:oclc:8111415", - "urn:undefined:(WaOLN)nyp1004145", - "urn:undefined:(OCoLC)8111415" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994 -- Biography.", - "Authors, Kannada -- 20th century -- Biography." - ], - "titleDisplay": [ - "Nenapina dōṇiyalli / Kuvempu." - ], - "uri": "b10996867", - "lccClassification": [ - "PL4659.K94 Z468" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Maisūru" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10996867" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10209587", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013120096" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013120096" - } - ], - "idBarcode": [ - "33433013120096" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 86-3268" - ], - "shelfMark_sort": "a*OLA 86-003268" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10209586", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013120682" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433013120682" - } - ], - "idBarcode": [ - "33433013120682" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark": [ - "*OLA 86-3268" - ], - "shelfMark_sort": "a*OLA 86-003268" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-d84f39ec0be89d9e044ab5c449f72a35.json b/test/fixtures/query-d84f39ec0be89d9e044ab5c449f72a35.json deleted file mode 100644 index b13630f8..00000000 --- a/test/fixtures/query-d84f39ec0be89d9e044ab5c449f72a35.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 395, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 51.409233, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 51.409233, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-e06d69933681f0e1e98f5fef0cdc4d74.json b/test/fixtures/query-e06d69933681f0e1e98f5fef0cdc4d74.json deleted file mode 100644 index 9a2e910a..00000000 --- a/test/fixtures/query-e06d69933681f0e1e98f5fef0cdc4d74.json +++ /dev/null @@ -1,14445 +0,0 @@ -{ - "took": 435, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 2406518, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000004", - "_score": null, - "_source": { - "extent": [ - "23, 216 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1956.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mutaṟkuṟaḷ uvamai." - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kothandapani Pillai, K., 1896-" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "74915265" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1247" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1934" - }, - { - "type": "nypl:Bnumber", - "value": "10000004" - }, - { - "type": "bf:Lccn", - "value": "74915265" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000001-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100001" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200003" - } - ], - "idOclc": [ - "NYPG001000001-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." - ], - "identifier": [ - "urn:bnum:10000004", - "urn:lccn:74915265", - "urn:oclc:NYPG001000001-B", - "urn:undefined:NNSZ00100001", - "urn:undefined:(WaOLN)nyp0200003" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." - ], - "uri": "b10000004", - "lccClassification": [ - "PL4758.9.T5 K6 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirunelvēli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000004" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783781", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1934" - ], - "identifierV2": [ - { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301556" - } - ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301556" - ], - "idBarcode": [ - "33433061301556" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001934" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000006", - "_score": null, - "_source": { - "extent": [ - "227 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Translation of The reconstruction of religious thought in Islam.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Iqbal, Muhammad, Sir, 1877-1938." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "75962707" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maḥmūd, ʻAbbās." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1984" - }, - { - "type": "nypl:Bnumber", - "value": "10000006" - }, - { - "type": "bf:Lccn", - "value": "75962707" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000002-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100002" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200005" - } - ], - "idOclc": [ - "NYPG001000002-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" - ], - "identifier": [ - "urn:bnum:10000006", - "urn:lccn:75962707", - "urn:oclc:NYPG001000002-B", - "urn:undefined:NNSZ00100002", - "urn:undefined:(WaOLN)nyp0200005" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam -- 20th century." - ], - "titleDisplay": [ - "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." - ], - "uri": "b10000006", - "lccClassification": [ - "BP161 .I712 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000006" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1984" - ], - "identifierV2": [ - { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691665" - } - ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691665" - ], - "idBarcode": [ - "33433022691665" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001984" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000008", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Parimaḷam Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṇṇāviṉ ciṟukataikaḷ." - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Annadurai, C. N., 1909-1969." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913998" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1986" - }, - { - "type": "nypl:Bnumber", - "value": "10000008" - }, - { - "type": "bf:Lccn", - "value": "72913998" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000003-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100003" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200007" - } - ], - "idOclc": [ - "NYPG001000003-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Parimaḷam Patippakam [1969]" - ], - "identifier": [ - "urn:bnum:10000008", - "urn:lccn:72913998", - "urn:oclc:NYPG001000003-B", - "urn:undefined:NNSZ00100003", - "urn:undefined:(WaOLN)nyp0200007" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." - ], - "uri": "b10000008", - "lccClassification": [ - "PL4758.9.A5 A84" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000008" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783782", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1986" - ], - "identifierV2": [ - { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301689" - } - ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301689" - ], - "idBarcode": [ - "33433061301689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001986" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000010", - "_score": null, - "_source": { - "extent": [ - "110 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēkkiḻār, active 12th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaikkaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Irācamāṇikkaṉār, Mā., 1907-1967." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "72913466" - ], - "seriesStatement": [ - "Corṇammāḷ corpoḻivu varicai, 6" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1938" - }, - { - "type": "nypl:Bnumber", - "value": "10000010" - }, - { - "type": "bf:Lccn", - "value": "72913466" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000004-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100004" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200009" - } - ], - "idOclc": [ - "NYPG001000004-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." - ], - "identifier": [ - "urn:bnum:10000010", - "urn:lccn:72913466", - "urn:oclc:NYPG001000004-B", - "urn:undefined:NNSZ00100004", - "urn:undefined:(WaOLN)nyp0200009" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēkkiḻār, active 12th century." - ], - "titleDisplay": [ - "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." - ], - "uri": "b10000010", - "lccClassification": [ - "PL4758.9.C385 Z8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Aṇṇāmalainakar" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000010" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783783", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1938" - ], - "identifierV2": [ - { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301598" - } - ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301598" - ], - "idBarcode": [ - "33433061301598" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001938" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000012", - "_score": null, - "_source": { - "extent": [ - "223 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p.221.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Thaqāfah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ḥāwī, Īlīyā Salīm." - ], - "createdString": [ - "1970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 84-1997" - }, - { - "type": "nypl:Bnumber", - "value": "10000012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000005-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100005" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200011" - } - ], - "idOclc": [ - "NYPG001000005-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Dār al-Thaqāfah, 1970." - ], - "identifier": [ - "urn:bnum:10000012", - "urn:oclc:NYPG001000005-B", - "urn:undefined:NNSZ00100005", - "urn:undefined:(WaOLN)nyp0200011" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ḥuṭayʼah, Jarwal ibn Aws, -650?" - ], - "titleDisplay": [ - "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." - ], - "uri": "b10000012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000003", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 84-1997" - ], - "identifierV2": [ - { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514719" - } - ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514719" - ], - "idBarcode": [ - "33433014514719" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 84-001997" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000014", - "_score": null, - "_source": { - "extent": [ - "520 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Panislamism", - "Islam", - "Islam -- 20th century" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Shīrāzī, ʻAbd al-Karīm Bī Āzār." - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGC 84-1996" - }, - { - "type": "nypl:Bnumber", - "value": "10000014" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000006-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100006" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200013" - } - ], - "idOclc": [ - "NYPG001000006-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." - ], - "identifier": [ - "urn:bnum:10000014", - "urn:oclc:NYPG001000006-B", - "urn:undefined:NNSZ00100006", - "urn:undefined:(WaOLN)nyp0200013" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Panislamism.", - "Islam -- 20th century." - ], - "titleDisplay": [ - "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." - ], - "uri": "b10000014", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Islamic unity." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000014" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OGC 84-1996" - ], - "identifierV2": [ - { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433022691780" - } - ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433022691780" - ], - "idBarcode": [ - "33433022691780" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGC 84-001996" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000016", - "_score": null, - "_source": { - "extent": [ - "111 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuṟuntokai" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Manṅkaḷa Nūlakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nalla Kuṟuntokaiyil nāṉilam." - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Cellappaṉ, Cilampoli, 1929-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "74913402" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1937" - }, - { - "type": "nypl:Bnumber", - "value": "10000016" - }, - { - "type": "bf:Lccn", - "value": "74913402" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000007-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100007" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200015" - } - ], - "idOclc": [ - "NYPG001000007-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" - ], - "identifier": [ - "urn:bnum:10000016", - "urn:lccn:74913402", - "urn:oclc:NYPG001000007-B", - "urn:undefined:NNSZ00100007", - "urn:undefined:(WaOLN)nyp0200015" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuṟuntokai." - ], - "titleDisplay": [ - "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." - ], - "uri": "b10000016", - "lccClassification": [ - "PL4758.9.K794 Z6 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000016" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783785", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1937" - ], - "identifierV2": [ - { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301580" - } - ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301580" - ], - "idBarcode": [ - "33433061301580" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001937" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000018", - "_score": null, - "_source": { - "extent": [ - "68 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Lebanon" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Ṭalīʻah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bashshūr, Najlāʼ Naṣīr." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "78970449" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1995" - }, - { - "type": "nypl:Bnumber", - "value": "10000018" - }, - { - "type": "bf:Lccn", - "value": "78970449" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000008-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100008" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200017" - } - ], - "idOclc": [ - "NYPG001000008-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Bayrūt : Dār al-Ṭalīʻah, 1975." - ], - "identifier": [ - "urn:bnum:10000018", - "urn:lccn:78970449", - "urn:oclc:NYPG001000008-B", - "urn:undefined:NNSZ00100008", - "urn:undefined:(WaOLN)nyp0200017" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Lebanon." - ], - "titleDisplay": [ - "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." - ], - "uri": "b10000018", - "lccClassification": [ - "HQ1728 .B37" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bayrūt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000004", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1995" - ], - "identifierV2": [ - { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031718" - } - ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031718" - ], - "idBarcode": [ - "33433002031718" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001995" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000020", - "_score": null, - "_source": { - "extent": [ - "xvi, 172, 320 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tolkāppiyar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Aṇṇāmalaip Palkalaik Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tolkāppiyam." - ], - "shelfMark": [ - "*OLB 84-1936" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Veḷḷaivāraṇaṉ, Ka." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74914844" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1936" - }, - { - "type": "nypl:Bnumber", - "value": "10000020" - }, - { - "type": "bf:Lccn", - "value": "74914844" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000009-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100009" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200019" - } - ], - "idOclc": [ - "NYPG001000009-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000020", - "urn:lccn:74914844", - "urn:oclc:NYPG001000009-B", - "urn:undefined:NNSZ00100009", - "urn:undefined:(WaOLN)nyp0200019" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tolkāppiyar." - ], - "titleDisplay": [ - "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." - ], - "uri": "b10000020", - "lccClassification": [ - "PL4754.T583 V4 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar]" - ], - "titleAlt": [ - "Tolkāppiyam nutaliyaporuḷ." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000020" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783786", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301572" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OLB 84-1936" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301572" - ], - "idBarcode": [ - "33433061301572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000022", - "_score": null, - "_source": { - "extent": [ - "19, 493 p." - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1942.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tamil language", - "Tamil language -- Grammar" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Puttamittiraṉār, active 11th century." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913714" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 1388" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Peruntēvaṉār, active 11th century.", - "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1935" - }, - { - "type": "nypl:Bnumber", - "value": "10000022" - }, - { - "type": "bf:Lccn", - "value": "73913714" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000010-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100010" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200021" - } - ], - "idOclc": [ - "NYPG001000010-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000022", - "urn:lccn:73913714", - "urn:oclc:NYPG001000010-B", - "urn:undefined:NNSZ00100010", - "urn:undefined:(WaOLN)nyp0200021" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tamil language -- Grammar." - ], - "titleDisplay": [ - "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." - ], - "uri": "b10000022", - "lccClassification": [ - "PL4754 .P8 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "titleAlt": [ - "Viracōḻiyam." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000022" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783787", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1935" - ], - "identifierV2": [ - { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301564" - } - ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301564" - ], - "idBarcode": [ - "33433061301564" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001935" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000024", - "_score": null, - "_source": { - "extent": [ - "264 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Bahrain", - "Bahrain -- History", - "Bahrain -- History -- 20th century", - "Bahrain -- Economic conditions", - "Bahrain -- Social conditions" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār Ibn Khaldūn" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rumayḥī, Muḥammad Ghānim." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "79971032" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 84-1944" - }, - { - "type": "nypl:Bnumber", - "value": "10000024" - }, - { - "type": "bf:Lccn", - "value": "79971032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000011-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100011" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200023" - } - ], - "idOclc": [ - "NYPG001000011-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Bayrūt] : Dār Ibn Khaldūn, 1976." - ], - "identifier": [ - "urn:bnum:10000024", - "urn:lccn:79971032", - "urn:oclc:NYPG001000011-B", - "urn:undefined:NNSZ00100011", - "urn:undefined:(WaOLN)nyp0200023" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Bahrain -- History -- 20th century.", - "Bahrain -- Economic conditions.", - "Bahrain -- Social conditions." - ], - "titleDisplay": [ - "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." - ], - "uri": "b10000024", - "lccClassification": [ - "DS247.B28 R85" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Bayrūt]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000024" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000005", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 84-1944" - ], - "identifierV2": [ - { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548676" - } - ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548676" - ], - "idBarcode": [ - "33433005548676" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 84-001944" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000026", - "_score": null, - "_source": { - "extent": [ - "222 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 217-220.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Women", - "Women -- Syria" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Razzāz, Nabīlah." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76960987" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFX 84-1953" - }, - { - "type": "nypl:Bnumber", - "value": "10000026" - }, - { - "type": "bf:Lccn", - "value": "76960987" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000012-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100012" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200025" - } - ], - "idOclc": [ - "NYPG001000012-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." - ], - "identifier": [ - "urn:bnum:10000026", - "urn:lccn:76960987", - "urn:oclc:NYPG001000012-B", - "urn:undefined:NNSZ00100012", - "urn:undefined:(WaOLN)nyp0200025" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Women -- Syria." - ], - "titleDisplay": [ - "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." - ], - "uri": "b10000026", - "lccClassification": [ - "HQ402 .R39" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000026" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000006", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFX 84-1953" - ], - "identifierV2": [ - { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002031700" - } - ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002031700" - ], - "idBarcode": [ - "33433002031700" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFX 84-001953" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000028", - "_score": null, - "_source": { - "extent": [ - "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [321]-324.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sūryamalla Miśraṇa, 1815-1868" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājasthāna Sāhitya Akādamī (Saṅgama)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vaṃśabhāskara : eka adhyayana" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khāna, Ālama Śāha, 1936-2003." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75903689" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 84-1945" - }, - { - "type": "nypl:Bnumber", - "value": "10000028" - }, - { - "type": "bf:Lccn", - "value": "75903689" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000013-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100013" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200027" - } - ], - "idOclc": [ - "NYPG001000013-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." - ], - "identifier": [ - "urn:bnum:10000028", - "urn:lccn:75903689", - "urn:oclc:NYPG001000013-B", - "urn:undefined:NNSZ00100013", - "urn:undefined:(WaOLN)nyp0200027" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sūryamalla Miśraṇa, 1815-1868." - ], - "titleDisplay": [ - "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." - ], - "uri": "b10000028", - "lccClassification": [ - "PK2708.9.S9 V334" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Udayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25cm." - ] - }, - "sort": [ - "b10000028" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 84-1945" - ], - "identifierV2": [ - { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011094210" - } - ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011094210" - ], - "idBarcode": [ - "33433011094210" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 84-001945" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000030", - "_score": null, - "_source": { - "extent": [ - "21, 264 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit language", - "Sanskrit language -- Suffixes and prefixes" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Uṇādi-koṣaḥ" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75902275" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Āpiśali.", - "Pāṇini.", - "Śākatāyana.", - "Dayananda Sarasvati, Swami, 1824-1883.", - "Yudhiṣṭhira Mīmāṃsaka, 1909-" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKA 84-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10000030" - }, - { - "type": "bf:Lccn", - "value": "75902275" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000014-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100014" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200029" - } - ], - "idOclc": [ - "NYPG001000014-B" - ], - "uniformTitle": [ - "Uṇādisūtra." - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." - ], - "identifier": [ - "urn:bnum:10000030", - "urn:lccn:75902275", - "urn:oclc:NYPG001000014-B", - "urn:undefined:NNSZ00100014", - "urn:undefined:(WaOLN)nyp0200029" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit language -- Suffixes and prefixes." - ], - "titleDisplay": [ - "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." - ], - "uri": "b10000030", - "lccClassification": [ - "PK551 .U73" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karanāla : Bahālagaḍha, Harayāṇa" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000030" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000007", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKA 84-1931" - ], - "identifierV2": [ - { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012968222" - } - ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012968222" - ], - "idBarcode": [ - "33433012968222" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKA 84-001931" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000032", - "_score": null, - "_source": { - "extent": [ - "14, 405, 7 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jahrom (Iran : Province)", - "Jahrom (Iran : Province) -- Biography", - "Khafr (Iran)", - "Khafr (Iran) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kitābfurūshī-i Khayyām" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ishrāq, Muḥammad Karīm." - ], - "createdString": [ - "1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2007" - }, - { - "type": "nypl:Bnumber", - "value": "10000032" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000015-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100015" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200031" - } - ], - "idOclc": [ - "NYPG001000015-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" - ], - "identifier": [ - "urn:bnum:10000032", - "urn:oclc:NYPG001000015-B", - "urn:undefined:NNSZ00100015", - "urn:undefined:(WaOLN)nyp0200031" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jahrom (Iran : Province) -- Biography.", - "Khafr (Iran) -- Biography." - ], - "titleDisplay": [ - "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 / taʼlīf-i Muḥammad Karīm Ishrāq." - ], - "uri": "b10000032", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm" - ] - }, - "sort": [ - "b10000032" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000008", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173012" - } - ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173012" - ], - "idBarcode": [ - "33433013173012" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002007" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000034", - "_score": null, - "_source": { - "extent": [ - "366 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; apparatus in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prithivi Prakashan" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Budhasvāmin." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74903273" - ], - "seriesStatement": [ - "Indian civilization series ; no. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Guṇāḍhya.", - "Agrawala, Vasudeva Sharana.", - "Agrawala, Prithvi Kumar." - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKR 84-2006" - }, - { - "type": "nypl:Bnumber", - "value": "10000034" - }, - { - "type": "bf:Lccn", - "value": "74903273" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000016-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100016" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200033" - } - ], - "idOclc": [ - "NYPG001000016-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Varanasi : Prithivi Prakashan, 1974." - ], - "identifier": [ - "urn:bnum:10000034", - "urn:lccn:74903273", - "urn:oclc:NYPG001000016-B", - "urn:undefined:NNSZ00100016", - "urn:undefined:(WaOLN)nyp0200033" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." - ], - "uri": "b10000034", - "lccClassification": [ - "PK3794.B84 B7 1974" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Varanasi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000009", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "identifierV2": [ - { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011528696" - } - ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011528696" - ], - "idBarcode": [ - "33433011528696" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKR 84-002006" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000036", - "_score": null, - "_source": { - "extent": [ - "viii, 38 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nārāyaṇatīrtha, 17th cent", - "Nārāyaṇatīrtha, 17th cent -- In literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n.]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic]" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902755" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 84-1928" - }, - { - "type": "nypl:Bnumber", - "value": "10000036" - }, - { - "type": "bf:Lccn", - "value": "75902755" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000017-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100017" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200035" - } - ], - "idOclc": [ - "NYPG001000017-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[s.1. : s.n.], 1972" - ], - "identifier": [ - "urn:bnum:10000036", - "urn:lccn:75902755", - "urn:oclc:NYPG001000017-B", - "urn:undefined:NNSZ00100017", - "urn:undefined:(WaOLN)nyp0200035" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nārāyaṇatīrtha, 17th cent -- In literature." - ], - "titleDisplay": [ - "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." - ], - "uri": "b10000036", - "lccClassification": [ - "PK3799.L28 S68" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[s.1." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000036" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKB 84-1928" - ], - "identifierV2": [ - { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548433" - } - ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058548433" - ], - "idBarcode": [ - "33433058548433" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 84-001928" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000038", - "_score": null, - "_source": { - "extent": [ - "4, 160 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- Himachal Pradesh" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76900772" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Prarthi, Lall Chand, 1916-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 84-1932" - }, - { - "type": "nypl:Bnumber", - "value": "10000038" - }, - { - "type": "bf:Lccn", - "value": "76900772" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000018-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100018" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200037" - } - ], - "idOclc": [ - "NYPG001000018-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." - ], - "identifier": [ - "urn:bnum:10000038", - "urn:lccn:76900772", - "urn:oclc:NYPG001000018-B", - "urn:undefined:NNSZ00100018", - "urn:undefined:(WaOLN)nyp0200037" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- Himachal Pradesh." - ], - "titleDisplay": [ - "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." - ], - "uri": "b10000038", - "lccClassification": [ - "PK3800.H52 R7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Śimalā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000038" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783788", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153572" - } - ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153572" - ], - "idBarcode": [ - "33433058153572" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 84-001932" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000040", - "_score": null, - "_source": { - "extent": [ - "146 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pulavar Arasu, 1900-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "78913375" - ], - "seriesStatement": [ - "Kaḻaka veḷiyīṭu, 672" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 84-1947" - }, - { - "type": "nypl:Bnumber", - "value": "10000040" - }, - { - "type": "bf:Lccn", - "value": "78913375" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000019-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100019" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200039" - } - ], - "idOclc": [ - "NYPG001000019-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." - ], - "identifier": [ - "urn:bnum:10000040", - "urn:lccn:78913375", - "urn:oclc:NYPG001000019-B", - "urn:undefined:NNSZ00100019", - "urn:undefined:(WaOLN)nyp0200039" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "titleDisplay": [ - "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." - ], - "uri": "b10000040", - "lccClassification": [ - "PL4758.9.K223 Z83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000040" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783789", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 84-1947" - ], - "identifierV2": [ - { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061301622" - } - ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433061301622" - ], - "idBarcode": [ - "33433061301622" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 84-001947" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000042", - "_score": null, - "_source": { - "extent": [ - "2, 108 p." - ], - "note": [ - { - "noteType": "Language", - "label": "Hindi and Sanskrit: pref. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Vedanta" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devabhāṣā Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1972" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902870" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Brahmashram, Śwami, 1915-" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1926" - }, - { - "type": "nypl:Bnumber", - "value": "10000042" - }, - { - "type": "bf:Lccn", - "value": "72902870" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000020-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100020" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200041" - } - ], - "idOclc": [ - "NYPG001000020-B" - ], - "uniformTitle": [ - "Mahābhārata. Sanatsugātīya." - ], - "dateEndYear": [ - 1972 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" - ], - "identifier": [ - "urn:bnum:10000042", - "urn:lccn:72902870", - "urn:oclc:NYPG001000020-B", - "urn:undefined:NNSZ00100020", - "urn:undefined:(WaOLN)nyp0200041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Vedanta." - ], - "titleDisplay": [ - "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." - ], - "uri": "b10000042", - "lccClassification": [ - "B132.V3 M264" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Prayāga" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783790", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKN 84-1926" - ], - "identifierV2": [ - { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058618392" - } - ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058618392" - ], - "idBarcode": [ - "33433058618392" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKN 84-001926" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000044", - "_score": null, - "_source": { - "extent": [ - "[99] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Biographies of Khri-chen Byaṅ-chub-chos-ʼphel and Śel-dkar Bla-ma Saṅs-rgyas-bstan-ʼphel.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from prints from blocks from Lhasa and Śel-dkar Dgaʼ-ldan-legs-bśad-gliṅ.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ngawang Sopa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rgal-dbaṅ Chos-rje Blo-bzaṅ-ʼphrin-las-rnam-rgyal, active 1840-1860." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77901316" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ngag-dbang-blo-bzang-rgya-mtsho, Dalai Lama V, 1617-1682." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2361" - }, - { - "type": "nypl:Bnumber", - "value": "10000044" - }, - { - "type": "bf:Lccn", - "value": "77901316" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000021-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100021" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200043" - } - ], - "idOclc": [ - "NYPG001000021-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Ngawang Sopa, 1976." - ], - "identifier": [ - "urn:bnum:10000044", - "urn:lccn:77901316", - "urn:oclc:NYPG001000021-B", - "urn:undefined:NNSZ00100021", - "urn:undefined:(WaOLN)nyp0200043" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Byaṅ-chub-chos-ʼphel, Khri-chen LXIX, 1756-1838.", - "Saṅs-rgyas-bstan-ʼphel, Śel-dkar Bla-ma, 1817-1884.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "ʼ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 / by Dar-han Mkhan-sprul Blo-bzaṅ-ʼphrin-las-rnam-rgyal. Bkaʼ-gdams bstan-paʼi mdzod-ʼdzin Rje-btsun Bla-ma Saṅs-rgyas-bstan-ʼphel dpal-bzaṅ-poʼi rnam par thar pa dad ldan yid kyi dgaʼ ston : the biography of Saṅs-rgyas-bstan-ʼphel of Śel-dkar / by Śel-dkar Bkaʼ-ʼgyur Bla-ma Ṅag-dbaṅ-blo-bzaṅ-bstan-ʼdzin-tshul-khrims-rgyal-mtshan." - ], - "uri": "b10000044", - "lccClassification": [ - "BQ942.Y367 R47 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000044" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000011", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2361" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080645" - } - ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080645" - ], - "idBarcode": [ - "33433015080645" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002361" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000046", - "_score": null, - "_source": { - "extent": [ - "[83] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kye rdor rnam bśad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from tracing and manuscripts from the library of Mkhan-po Rin-chen by Trayang and Jamyang Samten.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456", - "Tripiṭaka.", - "Tripiṭaka. -- Commentaries", - "Sa-skya-pa lamas", - "Sa-skya-pa lamas -- Tibet", - "Sa-skya-pa lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Trayang and Jamyang Samten" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tshe-dbaṅ-rdo-rje-rig-ʼdzin, Prince of Sde-dge." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900893" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sangs-rgyas-phun-tshogs, Ngor-chen, 1649-1705." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2362" - }, - { - "type": "nypl:Bnumber", - "value": "10000046" - }, - { - "type": "bf:Lccn", - "value": "77900893" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000022-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100022" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200045" - } - ], - "idOclc": [ - "NYPG001000022-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "New Delhi : Trayang and Jamyang Samten, 1976." - ], - "identifier": [ - "urn:bnum:10000046", - "urn:lccn:77900893", - "urn:oclc:NYPG001000022-B", - "urn:undefined:NNSZ00100022", - "urn:undefined:(WaOLN)nyp0200045" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ngor-chen Kun-dgaʼ-bzang-po, 1382-1456.", - "Tripiṭaka. -- Commentaries.", - "Sa-skya-pa lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Sde-dge Yab-chen Tshe-dbaṅ-rdo-rje-rig-ʼdzin alias Byams-pa-kun-dgaʼ-bstan-paʼi-rgyal-mtshan. 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 : the life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po / by Ṅor-chen Saṅs-rgyas-phun-tshogs." - ], - "uri": "b10000046", - "lccClassification": [ - "BG974.0727 T75" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "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" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000046" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000012", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080413" - } - ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080413" - ], - "idBarcode": [ - "33433015080413" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000048", - "_score": null, - "_source": { - "extent": [ - "[150] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a MS. preserved at Pha-lo-ldiṅ Monastery in Bhutan.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kunzang Topgey" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901012" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2382" - }, - { - "type": "nypl:Bnumber", - "value": "10000048" - }, - { - "type": "bf:Lccn", - "value": "76901012" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000023-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100023" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200047" - } - ], - "idOclc": [ - "NYPG001000023-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Thimphu : Kunzang Topgey, 1976." - ], - "identifier": [ - "urn:bnum:10000048", - "urn:lccn:76901012", - "urn:oclc:NYPG001000023-B", - "urn:undefined:NNSZ00100023", - "urn:undefined:(WaOLN)nyp0200047" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000048", - "lccClassification": [ - "BQ7695 .B55" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Thimphu" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 38 cm." - ] - }, - "sort": [ - "b10000048" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000013", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2382" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080439" - } - ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080439" - ], - "idBarcode": [ - "33433015080439" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002382" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000050", - "_score": null, - "_source": { - "extent": [ - "[188] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a print from the early 16th century western Tibetan blocks by Urgyan Dorje.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas", - "Bkaʼ-brgyud-pa lamas -- Tibet", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography", - "Spiritual life", - "Spiritual life -- Buddhism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Urgyan Dorje" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901747" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2381" - }, - { - "type": "nypl:Bnumber", - "value": "10000050" - }, - { - "type": "bf:Lccn", - "value": "76901747" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000024-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100024" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200049" - } - ], - "idOclc": [ - "NYPG001000024-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "New Delhi : Urgyan Dorje, 1976." - ], - "identifier": [ - "urn:bnum:10000050", - "urn:lccn:76901747", - "urn:oclc:NYPG001000024-B", - "urn:undefined:NNSZ00100024", - "urn:undefined:(WaOLN)nyp0200049" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBaʼ-ra-ba Rgyal-mtshan-dpal-bzaṅ, 1310?-1391?", - "Bkaʼ-brgyud-pa lamas -- Tibet -- Biography.", - "Spiritual life -- Buddhism." - ], - "titleDisplay": [ - "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." - ], - "uri": "b10000050", - "lccClassification": [ - "BQ942.A187 A35 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000050" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000014", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2381" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080421" - } - ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080421" - ], - "idBarcode": [ - "33433015080421" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002381" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000052", - "_score": null, - "_source": { - "extent": [ - "[247] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Gu ruʼi rnam thar ṅo tshar phun tshogs rgya mtsho.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Padma Sambhava, approximately 717-approximately 762", - "Lamas", - "Lamas -- Tibet", - "Lamas -- Tibet -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sherab Gyaltshen Lama" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "*OZ+ 82-2383" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Bkra-śis-stobs-rgyal, Byaṅ-bdag." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76900205" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2383" - }, - { - "type": "nypl:Bnumber", - "value": "10000052" - }, - { - "type": "bf:Lccn", - "value": "76900205" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000025-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100025" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200051" - } - ], - "idOclc": [ - "NYPG001000025-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Gangtog : Sherab Gyaltshen Lama, 1976." - ], - "identifier": [ - "urn:bnum:10000052", - "urn:lccn:76900205", - "urn:oclc:NYPG001000025-B", - "urn:undefined:NNSZ00100025", - "urn:undefined:(WaOLN)nyp0200051" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Padma Sambhava, approximately 717-approximately 762.", - "Lamas -- Tibet -- Biography." - ], - "titleDisplay": [ - "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 / by Byaṅ-bdag Bkra-śis-stobs-rgyal." - ], - "uri": "b10000052", - "lccClassification": [ - "BQ7950.P327 B55 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Gangtog" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 x 37 cm." - ] - }, - "sort": [ - "b10000052" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000015", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2383" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2383", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080447" - } - ], - "physicalLocation": [ - "*OZ+ 82-2383" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080447" - ], - "idBarcode": [ - "33433015080447" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002383" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000054", - "_score": null, - "_source": { - "extent": [ - "[161] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Reproduced from a one volume collection of the writings from the library of Rtogs-ldan Rin-po-che of Sgaṅ-sṅon.\"", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBri-gung-pa (Sect)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tsondu Senghe" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Collected works (gsun ʼbum) of ʼBri-guṅ Skyob-pa ʼJig-rten-mgon-po Pin-chen-dpal." - ], - "shelfMark": [ - "*OZ+ 82-2384" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "ʼBri-gung Chos-rje ʼJig-rten-mgon-po, 1143-1217." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "77900734" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2384" - }, - { - "type": "nypl:Bnumber", - "value": "10000054" - }, - { - "type": "bf:Lccn", - "value": "77900734" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000026-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100026" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200053" - } - ], - "idOclc": [ - "NYPG001000026-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Bir, H.P. : Tsondu Senghe, 1976." - ], - "identifier": [ - "urn:bnum:10000054", - "urn:lccn:77900734", - "urn:oclc:NYPG001000026-B", - "urn:undefined:NNSZ00100026", - "urn:undefined:(WaOLN)nyp0200053" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBri-gung-pa (Sect)" - ], - "titleDisplay": [ - "Collected works (gsun ʼbum) of ʼBri-guṅ Skyob-pa ʼJig-rten-mgon-po Pin-chen-dpal." - ], - "uri": "b10000054", - "lccClassification": [ - "BQ7684 .B74 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bir, H.P." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000054" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000016", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2384" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2384", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080454" - } - ], - "physicalLocation": [ - "*OZ+ 82-2384" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080454" - ], - "idBarcode": [ - "33433015080454" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002384" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000056", - "_score": null, - "_source": { - "extent": [ - "[155] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Half title: Pha rin po che Ratna-badzra gyi mgyur ʼbum zab don rdo rje ʼphreṅ ba bźugs so.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced from a rare manuscript from Dzong-khul Monastery in Zangskar.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʼBrug-pa (Sect)", - "ʼBrug-pa (Sect) -- Prayer books and devotions", - "ʼBrug-pa (Sect) -- Prayer books and devotions -- Tibetan" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Kargyud Sungrab Nyamso Khang" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Collected songs (mgur) of esoteric realisation of Ratna-badzra (Rin-chen-rdo-rje)." - ], - "shelfMark": [ - "*OZ+ 82-2385" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rad-na-badzra." - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "76901741" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-2385" - }, - { - "type": "nypl:Bnumber", - "value": "10000056" - }, - { - "type": "bf:Lccn", - "value": "76901741" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000027-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100027" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200055" - } - ], - "idOclc": [ - "NYPG001000027-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Darjeeling : Kargyud Sungrab Nyamso Khang, 1976." - ], - "identifier": [ - "urn:bnum:10000056", - "urn:lccn:76901741", - "urn:oclc:NYPG001000027-B", - "urn:undefined:NNSZ00100027", - "urn:undefined:(WaOLN)nyp0200055" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʼBrug-pa (Sect) -- Prayer books and devotions -- Tibetan." - ], - "titleDisplay": [ - "Collected songs (mgur) of esoteric realisation of Ratna-badzra (Rin-chen-rdo-rje)." - ], - "uri": "b10000056", - "lccClassification": [ - "BQ7683.6 .R37 1976" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Darjeeling" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000056" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000017", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-2385" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-2385", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080462" - } - ], - "physicalLocation": [ - "*OZ+ 82-2385" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080462" - ], - "idBarcode": [ - "33433015080462" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-002385" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000058", - "_score": null, - "_source": { - "extent": [ - "[132] p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on spine: Rdzogs chen yaṅ ti nag po gser ʼbru chos skor.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Reproduced photographically from a rare manuscript from the collection of Brag-thog Monastery in Ladakh by Pema Choden.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rnying-ma-pa (Sect)", - "Rnying-ma-pa (Sect) -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "S.W. Tashigangpa" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Yaṅ ti nag po gser gyi ʼbru gcig paʼi chos skor : a collection of Nyingmapa Dzogchen teachings" - ], - "shelfMark": [ - "*OZ+ 82-5174" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Duṅ-mtsho-ras-pa, active 14th century." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "72908332" - ], - "seriesStatement": [ - "Smanrtsis shesrig spendzod; v. 41" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-5174" - }, - { - "type": "nypl:Bnumber", - "value": "10000058" - }, - { - "type": "bf:Lccn", - "value": "72908332" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000028-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100028" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200057" - } - ], - "idOclc": [ - "NYPG001000028-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Leh : S.W. Tashigangpa, 1972." - ], - "identifier": [ - "urn:bnum:10000058", - "urn:lccn:72908332", - "urn:oclc:NYPG001000028-B", - "urn:undefined:NNSZ00100028", - "urn:undefined:(WaOLN)nyp0200057" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rnying-ma-pa (Sect) -- Rituals." - ], - "titleDisplay": [ - "Yaṅ ti nag po gser gyi ʼbru gcig paʼi chos skor : a collection of Nyingmapa Dzogchen teachings / rediscovered by Duṅ-mtsho-ras-pa (Phyi-ma)." - ], - "uri": "b10000058", - "lccClassification": [ - "BQ7662.4 .D86 1972" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Leh" - ], - "titleAlt": [ - "Rdzogs chen yaṅ ti nag po gser ʼbru chos skor." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 x 37 cm." - ] - }, - "sort": [ - "b10000058" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000018", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-5174" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-5174", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433012357756" - } - ], - "physicalLocation": [ - "*OZ+ 82-5174" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433012357756" - ], - "idBarcode": [ - "33433012357756" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-005174" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000060", - "_score": null, - "_source": { - "extent": [ - "1 v. (unpaged)" - ], - "note": [ - { - "noteType": "Note", - "label": "Photographic reproduction of a Tashilhunpo xylograph.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tibetan; introd. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The autobiography of the First Panchen Lama Blo-bzang-chos-kyi-rgyal-mtsho." - ], - "shelfMark": [ - "*OZ+ 82-5074" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "70908872" - ], - "seriesStatement": [ - "Gedan sungrab minyam gyunphel series, v. 12" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Demo, Ngawang Gelek, 1939-" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-5074" - }, - { - "type": "nypl:Bnumber", - "value": "10000060" - }, - { - "type": "bf:Lccn", - "value": "70908872" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000029-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100029" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200059" - } - ], - "idOclc": [ - "NYPG001000029-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[New Delhi, 1969]" - ], - "identifier": [ - "urn:bnum:10000060", - "urn:lccn:70908872", - "urn:oclc:NYPG001000029-B", - "urn:undefined:NNSZ00100029", - "urn:undefined:(WaOLN)nyp0200059" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Blo-bzang-chos-kyi-rgyal-mtshan, Panchen Lama IV, 1570-1662." - ], - "titleDisplay": [ - "The autobiography of the First Panchen Lama Blo-bzang-chos-kyi-rgyal-mtsho. Edited and reproduced by Ngawang Gelek Demo, with an English introd. by E. Gene Smith." - ], - "uri": "b10000060", - "lccClassification": [ - "BQ7945.B547 A33" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[New Delhi" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 x 43 cm." - ] - }, - "sort": [ - "b10000060" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000019", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-5074" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-5074", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433015080363" - } - ], - "physicalLocation": [ - "*OZ+ 82-5074" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433015080363" - ], - "idBarcode": [ - "33433015080363" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-005074" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000062", - "_score": null, - "_source": { - "extent": [ - "1 v. (unpaged)" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Gnas-chung chos spyod.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tibetan; pref. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhism", - "Buddhism -- Rituals" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[Can be obtained from Tibet House, New Delhi]" - ], - "language": [ - { - "id": "lang:tib", - "label": "Tibetan" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OZ+ 82-5073" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "74906111" - ], - "seriesStatement": [ - "Ngagyur Ngingmay Sungrab, v. 3" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Sonam Topgay Kazi." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OZ+ 82-5073" - }, - { - "type": "nypl:Bnumber", - "value": "10000062" - }, - { - "type": "bf:Lccn", - "value": "74906111" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000030-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100030" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200061" - } - ], - "idOclc": [ - "NYPG001000030-B" - ], - "uniformTitle": [ - "Gnas-chuṅ chos spyod." - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Gangtok [Can be obtained from Tibet House, New Delhi] 1969." - ], - "identifier": [ - "urn:bnum:10000062", - "urn:lccn:74906111", - "urn:oclc:NYPG001000030-B", - "urn:undefined:NNSZ00100030", - "urn:undefined:(WaOLN)nyp0200061" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhism -- Rituals." - ], - "titleDisplay": [ - "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. Reproduced photographically from Bskal-bzang-rin-chenʼs xylographic edition of 1845 by Sonam Topgay Kazi, with an English pref. by E. Gene Smith." - ], - "uri": "b10000062", - "lccClassification": [ - "BQ7695 .G58 1969" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Gangtok" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "29 x 44 cm." - ] - }, - "sort": [ - "b10000062" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000020", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OZ+ 82-5073" - ], - "identifierV2": [ - { - "value": "*OZ+ 82-5073", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030669448" - } - ], - "physicalLocation": [ - "*OZ+ 82-5073" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433030669448" - ], - "idBarcode": [ - "33433030669448" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OZ+ 82-005073" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000064", - "_score": null, - "_source": { - "extent": [ - "168 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Shiʻr an-Nmir ibn Tawlab.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 159-168.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maṭbaʻat al-Maʻārif" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Shiʻr" - ], - "shelfMark": [ - "*OFA 82-2370" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Namir ibn Tawlab." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "76240902" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Qaysī, Nūrī Ḥammūdī." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-2370" - }, - { - "type": "nypl:Bnumber", - "value": "10000064" - }, - { - "type": "bf:Lccn", - "value": "76240902" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000031-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100031" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200063" - } - ], - "idOclc": [ - "NYPG001000031-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Baghdād, Maṭbaʻat al-Maʻārif [1969]" - ], - "identifier": [ - "urn:bnum:10000064", - "urn:lccn:76240902", - "urn:oclc:NYPG001000031-B", - "urn:undefined:NNSZ00100031", - "urn:undefined:(WaOLN)nyp0200063" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Shiʻr, al-Namir ibn Tawlab. Ṣanʻat Nūrī ʻHammūdī al-Qaysī." - ], - "uri": "b10000064", - "lccClassification": [ - "PJ7696.N3 S5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baghdād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000064" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000021", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-2370" - ], - "identifierV2": [ - { - "value": "*OFA 82-2370", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000481" - } - ], - "physicalLocation": [ - "*OFA 82-2370" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000481" - ], - "idBarcode": [ - "33433002000481" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-002370" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000066", - "_score": null, - "_source": { - "extent": [ - "70, 272 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sāhitya Bhaṇḍāra" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1962 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kālidāsa." - ], - "createdString": [ - "1962" - ], - "idLccn": [ - "sa 65007611" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Mallinātha.", - "Shastri, S. R." - ], - "dateStartYear": [ - 1962 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 82-2129" - }, - { - "type": "nypl:Bnumber", - "value": "10000066" - }, - { - "type": "bf:Lccn", - "value": "sa 65007611" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000032-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100032" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200065" - } - ], - "idOclc": [ - "NYPG001000032-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Meraṭha, Sāhitya Bhaṇḍāra, 1962." - ], - "identifier": [ - "urn:bnum:10000066", - "urn:lccn:sa 65007611", - "urn:oclc:NYPG001000032-B", - "urn:undefined:NNSZ00100032", - "urn:undefined:(WaOLN)nyp0200065" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1962" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "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. Mahākavikālidāsapraṇita. Śivarāja Śāstrī dvārā sampādita evaṃ saṃśodhita." - ], - "uri": "b10000066", - "lccClassification": [ - "PK3796 .M5 1962" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Meraṭha" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000066" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783793", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 82-2129" - ], - "identifierV2": [ - { - "value": "*OKP 82-2129", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058152988" - } - ], - "physicalLocation": [ - "*OKP 82-2129" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058152988" - ], - "idBarcode": [ - "33433058152988" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 82-002129" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000068", - "_score": null, - "_source": { - "extent": [ - "228 p. port." - ], - "note": [ - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Urdu language", - "Urdu language -- Rhyme" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Qavāfī-yi Kāmil ; ʻilm-i qāfīyah bi-qānūn-i qadīm va jadīd." - ], - "shelfMark": [ - "*OKTX 82-2129" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kāmil Jūnāgaṛhī." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "72932110" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 82-2129" - }, - { - "type": "nypl:Bnumber", - "value": "10000068" - }, - { - "type": "bf:Lccn", - "value": "72932110" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000033-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100033" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200067" - } - ], - "idOclc": [ - "NYPG001000033-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "[Karācī, 1970]" - ], - "identifier": [ - "urn:bnum:10000068", - "urn:lccn:72932110", - "urn:oclc:NYPG001000033-B", - "urn:undefined:NNSZ00100033", - "urn:undefined:(WaOLN)nyp0200067" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Urdu language -- Rhyme." - ], - "titleDisplay": [ - "Qavāfī-yi Kāmil ; ʻilm-i qāfīyah bi-qānūn-i qadīm va jadīd. Muʼallifah-yi Kāmil Jūnāgaṛhī." - ], - "uri": "b10000068", - "lccClassification": [ - "PK1979 .K3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Karācī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000068" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000022", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-2129" - ], - "identifierV2": [ - { - "value": "*OKTX 82-2129", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004672303" - } - ], - "physicalLocation": [ - "*OKTX 82-2129" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004672303" - ], - "idBarcode": [ - "33433004672303" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-002129" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000070", - "_score": null, - "_source": { - "extent": [ - "2 v. in 1." - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 2 published by Ke. Bṟadērsȧ, Kōḻikkōṭȧ.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Malayalam literature", - "Malayalam literature -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Vidyārtthimitṟaṃ Bukkuḍippō" - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Gadyamañjari." - ], - "shelfMark": [ - "*OLD 82-2140" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kumāran, Mūrkkōttȧ, 1874-1941." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "sa 68007302" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLD 82-2140" - }, - { - "type": "nypl:Bnumber", - "value": "10000070" - }, - { - "type": "bf:Lccn", - "value": "sa 68007302" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000034-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100034" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200069" - } - ], - "idOclc": [ - "NYPG001000034-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Kōṭṭayaṃ, Vidyārtthimitṟaṃ Bukkuḍippō [1967]" - ], - "identifier": [ - "urn:bnum:10000070", - "urn:lccn:sa 68007302", - "urn:oclc:NYPG001000034-B", - "urn:undefined:NNSZ00100034", - "urn:undefined:(WaOLN)nyp0200069" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Malayalam literature -- History and criticism." - ], - "titleDisplay": [ - "Gadyamañjari. Granthakarttā Mūrkkōttu Kumāran." - ], - "uri": "b10000070", - "lccClassification": [ - "PL4718.O5 .K77" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōṭṭayaṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000070" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLD 82-2140" - ], - "identifierV2": [ - { - "value": "*OLD 82-2140", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004314914" - } - ], - "physicalLocation": [ - "*OLD 82-2140" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004314914" - ], - "idBarcode": [ - "33433004314914" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLD 82-002140" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000072", - "_score": null, - "_source": { - "extent": [ - "54 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Primers, Persian" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Āgāh" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Fārsī nivīsī barā-yi kūdakān" - ], - "shelfMark": [ - "*OMP 82-2194" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ibrāhīmī, Nādir." - ], - "createdString": [ - "1977" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 82-2194" - }, - { - "type": "nypl:Bnumber", - "value": "10000072" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000035-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100035" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200071" - } - ], - "idOclc": [ - "NYPG001000035-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Tihrān : Intishārāt-i Āgāh, 2536 [1977]" - ], - "identifier": [ - "urn:bnum:10000072", - "urn:oclc:NYPG001000035-B", - "urn:undefined:NNSZ00100035", - "urn:undefined:(WaOLN)nyp0200071" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Primers, Persian." - ], - "titleDisplay": [ - "Fārsī nivīsī barā-yi kūdakān / Nādir Ibrāhīmī." - ], - "uri": "b10000072", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000072" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000024", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 82-2194" - ], - "identifierV2": [ - { - "value": "*OMP 82-2194", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013172402" - } - ], - "physicalLocation": [ - "*OMP 82-2194" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013172402" - ], - "idBarcode": [ - "33433013172402" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 82-002194" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000074", - "_score": null, - "_source": { - "extent": [ - "4 v. facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 3-4 edited by M. S. Maʻrūf only.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Text of the diwan is vocalized.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Dār al-Maʻārif" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 4 - ], - "createdYear": [ - 1971 - ], - "dateEndString": [ - "1975" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān al-Bārūdī" - ], - "shelfMark": [ - "*OFA 82-2183" - ], - "numItemVolumesParsed": [ - 4 - ], - "creatorLiteral": [ - "Bārūdī, Maḥmūd Sāmī, 1839-1904." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "74963263" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Jārim, ʻAlī.", - "Maʻrūf, Muḥammad Shafīq." - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-2183" - }, - { - "type": "nypl:Bnumber", - "value": "10000074" - }, - { - "type": "bf:Lccn", - "value": "74963263" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000036-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100036" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200073" - } - ], - "idOclc": [ - "NYPG001000036-B" - ], - "dateEndYear": [ - 1975 - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Miṣr, Dār al-Maʻārif, 1971-1974 i.e. 1975." - ], - "identifier": [ - "urn:bnum:10000074", - "urn:lccn:74963263", - "urn:oclc:NYPG001000036-B", - "urn:undefined:NNSZ00100036", - "urn:undefined:(WaOLN)nyp0200073" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān al-Bārūdī [taʼlīf] Maḥmūd Sāmī al-Bārūdī. Ḥaqqaqahu wa-ṣaḥḥaạhu wa-ḍabaṭahu wa-sharaḥahu ʻAlī al-Jārim [wa]-Muḥammad Shafīq Maʻrūf" - ], - "uri": "b10000074", - "lccClassification": [ - "PJ7816 .A694 1971" - ], - "numItems": [ - 4 - ], - "numAvailable": [ - 4 - ], - "placeOfPublication": [ - "Miṣr" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Juzʼ 1. Qāfiyat al-Hamzah-qāfiyat al-Dhāl. -- Juzʼ 2. Qāfiyat al-Rāʼ - qāfiyat al-Kāf. -- Juzʼ 3. Qāfiyat al-Lām - qāfiyat al-Mīm. -- Juzʼ 4. Qāfiyat al-Nūn-qā fiyat al-yāʼ." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000074" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 4, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i10000028", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-2183 v. 4" - ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000465" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "*OFA 82-2183" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000465" - ], - "idBarcode": [ - "33433002000465" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10000027", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-2183 v. 3" - ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000457" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "*OFA 82-2183" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000457" - ], - "idBarcode": [ - "33433002000457" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10000026", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-2183 v. 2" - ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000440" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OFA 82-2183" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000440" - ], - "idBarcode": [ - "33433002000440" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000025", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-2183 v. 1" - ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000432" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OFA 82-2183" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000432" - ], - "idBarcode": [ - "33433002000432" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000076", - "_score": null, - "_source": { - "extent": [ - "132 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Mujibur Rahman, Sheikh, 1922-1975", - "Finance, Public", - "Finance, Public -- Pakistan", - "Pakistan", - "Pakistan -- Politics and government" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktab-i Urdū Ḍaʼjist" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Chah nikāt kī saccī taṣvīr." - ], - "shelfMark": [ - "*OKTX 82-2408" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Quraishī, Al̤tāf Ḥasan." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "78932499" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 82-2408" - }, - { - "type": "nypl:Bnumber", - "value": "10000076" - }, - { - "type": "bf:Lccn", - "value": "78932499" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000037-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100037" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200075" - } - ], - "idOclc": [ - "NYPG001000037-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Lāhaur, Maktab-i Urdū Ḍaʼjist [1969]" - ], - "identifier": [ - "urn:bnum:10000076", - "urn:lccn:78932499", - "urn:oclc:NYPG001000037-B", - "urn:undefined:NNSZ00100037", - "urn:undefined:(WaOLN)nyp0200075" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Mujibur Rahman, Sheikh, 1922-1975.", - "Finance, Public -- Pakistan.", - "Pakistan -- Politics and government." - ], - "titleDisplay": [ - "Chah nikāt kī saccī taṣvīr. [Muṣannif] Al̤tāf Ḥasan Quraishī." - ], - "uri": "b10000076", - "lccClassification": [ - "JQ543 1969 .Q87" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lāhaur" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000076" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000029", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-2408" - ], - "identifierV2": [ - { - "value": "*OKTX 82-2408", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004672238" - } - ], - "physicalLocation": [ - "*OKTX 82-2408" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004672238" - ], - "idBarcode": [ - "33433004672238" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-002408" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000078", - "_score": null, - "_source": { - "extent": [ - "144 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rājakamala Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Raśmibandha." - ], - "shelfMark": [ - "*OKTN 82-2402" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pant, Sumitra Nandan, 1900-" - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "sa 67003708" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTN 82-2402" - }, - { - "type": "nypl:Bnumber", - "value": "10000078" - }, - { - "type": "bf:Lccn", - "value": "sa 67003708" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000038-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100038" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200077" - } - ], - "idOclc": [ - "NYPG001000038-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Dillī] Rājakamala Prakāśana [1966]" - ], - "identifier": [ - "urn:bnum:10000078", - "urn:lccn:sa 67003708", - "urn:oclc:NYPG001000038-B", - "urn:undefined:NNSZ00100038", - "urn:undefined:(WaOLN)nyp0200077" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Raśmibandha. [Lekhaka] Sumitrānandana Panta." - ], - "uri": "b10000078", - "lccClassification": [ - "PK2098.P32 R3 1966" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000078" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000030", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTN 82-2402" - ], - "identifierV2": [ - { - "value": "*OKTN 82-2402", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011745118" - } - ], - "physicalLocation": [ - "*OKTN 82-2402" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011745118" - ], - "idBarcode": [ - "33433011745118" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTN 82-002402" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000081", - "_score": null, - "_source": { - "extent": [ - "80 p. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "Added title: Urdu kī pahili seerrhi", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Urdu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Primers, Urdu" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Maktab-i Mīrī Laʼibrīrī" - ], - "language": [ - { - "id": "lang:urd", - "label": "Urdu" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Urdū kī pahlī sīṛhī; jadīd uslūb ʻāhil mabādī." - ], - "shelfMark": [ - "*OKTX 82-2414" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Alifulmiḥrā̲s, 1919-" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "76932355" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTX 82-2414" - }, - { - "type": "nypl:Bnumber", - "value": "10000081" - }, - { - "type": "bf:Lccn", - "value": "76932355" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000040-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100040" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200080" - } - ], - "idOclc": [ - "NYPG001000040-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Lāhaur, Maktab-i Mīrī Laʼibrīrī [1969]" - ], - "identifier": [ - "urn:bnum:10000081", - "urn:lccn:76932355", - "urn:oclc:NYPG001000040-B", - "urn:undefined:NNSZ00100040", - "urn:undefined:(WaOLN)nyp0200080" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Primers, Urdu." - ], - "titleDisplay": [ - "Urdū kī pahlī sīṛhī; jadīd uslūb ʻāhil mabādī. Az Alifulmiḥrā̲s." - ], - "uri": "b10000081", - "lccClassification": [ - "PK1972 .A53" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lāhaur" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000081" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000031", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTX 82-2414" - ], - "identifierV2": [ - { - "value": "*OKTX 82-2414", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433004672246" - } - ], - "physicalLocation": [ - "*OKTX 82-2414" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004672246" - ], - "idBarcode": [ - "33433004672246" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTX 82-002414" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000083", - "_score": null, - "_source": { - "extent": [ - "4, 41, 4, 456 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Includes commentary of Namisādhu.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Although some scholars (Aufrecht, Weber) have identified the author with Rudrabhaṭṭa, the bulk of evidence produced by others (Peterson, Jacobi) seems to prove that they are not the same. The editor also concludes that they are different persons.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 456.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Hindi and Sanskrit; introd. in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sanskrit poetry", - "Sanskrit poetry -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Hindī-Anusandhāna-Parishad, Dillī Viśvavidyālaya ke nimitta Vāsudeva Prakāśana dvārā prakāśita" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita." - ], - "shelfMark": [ - "*OKP 82-2410" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rudraṭa, active 9th century." - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "sa 66001274" - ], - "seriesStatement": [ - "Hindī Anusandhāna Parishad granthamālā, 33" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Namisādhu, active 1068.", - "Chaudhary, S. D." - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKP 82-2410" - }, - { - "type": "nypl:Bnumber", - "value": "10000083" - }, - { - "type": "bf:Lccn", - "value": "sa 66001274" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000041-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100041" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200082" - } - ], - "idOclc": [ - "NYPG001000041-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Dillī, Hindī-Anusandhāna-Parishad, Dillī Viśvavidyālaya ke nimitta Vāsudeva Prakāśana dvārā prakāśita [1965]" - ], - "identifier": [ - "urn:bnum:10000083", - "urn:lccn:sa 66001274", - "urn:oclc:NYPG001000041-B", - "urn:undefined:NNSZ00100041", - "urn:undefined:(WaOLN)nyp0200082" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sanskrit poetry -- History and criticism." - ], - "titleDisplay": [ - "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita. Rudraṭa praṇīta. Hindīvyākhyākāra Satyadeva Chaudharī." - ], - "uri": "b10000083", - "lccClassification": [ - "PK2916 .R8 1965" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000083" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783794", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKP 82-2410" - ], - "identifierV2": [ - { - "value": "*OKP 82-2410", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058153028" - } - ], - "physicalLocation": [ - "*OKP 82-2410" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433058153028" - ], - "idBarcode": [ - "33433058153028" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKP 82-002410" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000085", - "_score": null, - "_source": { - "extent": [ - "11, 321, 87 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Abridged version of Jayasi's Padamāvata-Sāra: p. [1]-87 (3d group)", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Hindī Bhavana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa." - ], - "shelfMark": [ - "*OKTM 82-2424" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Narang, Indra Chandra, 1907-" - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 68005298" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Malika Mohammada Jāyasī, active 1540." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTM 82-2424" - }, - { - "type": "nypl:Bnumber", - "value": "10000085" - }, - { - "type": "bf:Lccn", - "value": "sa 68005298" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000042-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100042" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200084" - } - ], - "idOclc": [ - "NYPG001000042-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Jālandhara, Hindī Bhavana, 1964." - ], - "identifier": [ - "urn:bnum:10000085", - "urn:lccn:sa 68005298", - "urn:oclc:NYPG001000042-B", - "urn:undefined:NNSZ00100042", - "urn:undefined:(WaOLN)nyp0200084" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa. Sampādaka Indracandra Nāranga." - ], - "uri": "b10000085", - "lccClassification": [ - "PK2095.M3 P36" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Jālandhara" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000085" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000032", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTM 82-2424" - ], - "identifierV2": [ - { - "value": "*OKTM 82-2424", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011108135" - } - ], - "physicalLocation": [ - "*OKTM 82-2424" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011108135" - ], - "idBarcode": [ - "33433011108135" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTM 82-002424" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000087", - "_score": null, - "_source": { - "extent": [ - "12, 195 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindi drama" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Iṇḍiyāna Presa (Pablikeśansa)" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āṭha ekāṅkī." - ], - "shelfMark": [ - "*OKTN 82-2423" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Śarma, Nityānanda" - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "sa 67003777" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKTN 82-2423" - }, - { - "type": "nypl:Bnumber", - "value": "10000087" - }, - { - "type": "bf:Lccn", - "value": "sa 67003777" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000043-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100043" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200086" - } - ], - "idOclc": [ - "NYPG001000043-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Ilāhābāda, Iṇḍiyāna Presa (Pablikeśansa) [1965]" - ], - "identifier": [ - "urn:bnum:10000087", - "urn:lccn:sa 67003777", - "urn:oclc:NYPG001000043-B", - "urn:undefined:NNSZ00100043", - "urn:undefined:(WaOLN)nyp0200086" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindi drama." - ], - "titleDisplay": [ - "Āṭha ekāṅkī. Sampādaka Nityānanda Śarmā." - ], - "uri": "b10000087", - "lccClassification": [ - "PK2071 .S2" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ilāhābāda" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000087" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000033", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKTN 82-2423" - ], - "identifierV2": [ - { - "value": "*OKTN 82-2423", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011745134" - } - ], - "physicalLocation": [ - "*OKTN 82-2423" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011745134" - ], - "idBarcode": [ - "33433011745134" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKTN 82-002423" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000089", - "_score": null, - "_source": { - "extent": [ - "351 p." - ], - "note": [ - { - "noteType": "Note", - "label": "A novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Bengali.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Beṅgala Pābaliśārsa" - ], - "language": [ - { - "id": "lang:ben", - "label": "Bengali" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bāghinī." - ], - "shelfMark": [ - "*OKV 82-2420" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Basu, Samaresh, 1921-" - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "79903322" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKV 82-2420" - }, - { - "type": "nypl:Bnumber", - "value": "10000089" - }, - { - "type": "bf:Lccn", - "value": "79903322" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000044-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100044" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200088" - } - ], - "idOclc": [ - "NYPG001000044-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "Kalikātā, Beṅgala Pābaliśārsa [1967]" - ], - "identifier": [ - "urn:bnum:10000089", - "urn:lccn:79903322", - "urn:oclc:NYPG001000044-B", - "urn:undefined:NNSZ00100044", - "urn:undefined:(WaOLN)nyp0200088" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Bāghinī. [Lekhaka] Samareśa Basu." - ], - "uri": "b10000089", - "lccClassification": [ - "Pk1718.B39 B3 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalikātā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000089" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000034", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OKV 82-2420" - ], - "identifierV2": [ - { - "value": "*OKV 82-2420", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011167040" - } - ], - "physicalLocation": [ - "*OKV 82-2420" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433011167040" - ], - "idBarcode": [ - "33433011167040" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKV 82-002420" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000091", - "_score": null, - "_source": { - "extent": [ - "920, 144 p. : ill., map ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Translation of Contributions to the anthropology of Iran.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [817]-838.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Anthropometry", - "Anthropometry -- Iran" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Ibn Sīnā" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mardumʹshināsī-i Īrān" - ], - "shelfMark": [ - "*OMK 82-2419" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Field, Henry, 1902-" - ], - "createdString": [ - "1965" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMK 82-2419" - }, - { - "type": "nypl:Bnumber", - "value": "10000091" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000045-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100045" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200090" - } - ], - "idOclc": [ - "NYPG001000045-B" - ], - "uniformTitle": [ - "Contributions to the anthropology of Iran. Persian" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "Tihrān : Intishārāt-i Ibn Sīnā, 1343 [1965]" - ], - "identifier": [ - "urn:bnum:10000091", - "urn:oclc:NYPG001000045-B", - "urn:undefined:NNSZ00100045", - "urn:undefined:(WaOLN)nyp0200090" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Anthropometry -- Iran." - ], - "titleDisplay": [ - "Mardumʹshināsī-i Īrān / Hinrī Fīld. Tarjumah-ʼi ʻAbd Allāh Faryār." - ], - "uri": "b10000091", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Contributions to the anthropology of Iran." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000091" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000036", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMK 82-2419" - ], - "identifierV2": [ - { - "value": "*OMK 82-2419", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013106327" - } - ], - "physicalLocation": [ - "*OMK 82-2419" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013106327" - ], - "idBarcode": [ - "33433013106327" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMK 82-002419" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000093", - "_score": null, - "_source": { - "extent": [ - "90 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Kuṟaḷ neṟi cittaneṟi.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tiruvaḷḷuvar", - "Tamil Siddhas" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Civāṉantā Cittaneṟip Payiṟcik Kaḻkamm; inn̄ūl kiṭaikkum iṭam: S. Caṅkaraṉār, Ceṉṉai" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuṟaḷ neṟiyum Citta neṟiyum; ārāyccik kaṭṭurai." - ], - "shelfMark": [ - "*OLB 82-5144" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pasumporkizhar, N., 1936-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "74902781" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLB 82-5144" - }, - { - "type": "nypl:Bnumber", - "value": "10000093" - }, - { - "type": "bf:Lccn", - "value": "74902781" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000046-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100046" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200092" - } - ], - "idOclc": [ - "NYPG001000046-B" - ], - "updatedAt": 1674870747855, - "publicationStatement": [ - "Pacumpoṉ, Irāmanātapuram Māvaṭṭam, Civāṉantā Cittaneṟip Payiṟcik Kaḻkamm; inn̄ūl kiṭaikkum iṭam: S. Caṅkaraṉār, Ceṉṉai, 1974." - ], - "identifier": [ - "urn:bnum:10000093", - "urn:lccn:74902781", - "urn:oclc:NYPG001000046-B", - "urn:undefined:NNSZ00100046", - "urn:undefined:(WaOLN)nyp0200092" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tiruvaḷḷuvar.", - "Tamil Siddhas." - ], - "titleDisplay": [ - "Kuṟaḷ neṟiyum Citta neṟiyum; ārāyccik kaṭṭurai. Ākkiyōṉ Nā. Pacumpoṟkiḻār." - ], - "uri": "b10000093", - "lccClassification": [ - "PL4758.9.T5 P3" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Pacumpoṉ, Irāmanātapuram Māvaṭṭam" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Kuṟaḷ neṟi cittaneṟi." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10000093" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000037", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OLB 82-5144" - ], - "identifierV2": [ - { - "value": "*OLB 82-5144", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001838980" - } - ], - "physicalLocation": [ - "*OLB 82-5144" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001838980" - ], - "idBarcode": [ - "33433001838980" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLB 82-005144" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000095", - "_score": null, - "_source": { - "extent": [ - "17, 504, xi p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Sources de l'histoire du Yemen à l'époque musulmane", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Introduction in Arabic and French.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [437]-467.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Yemen (Republic)", - "Yemen (Republic) -- History", - "Yemen (Republic) -- History -- Bibliography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Maʻhad al-ʻIlmī al-Faransī lil-Āthār al-Sharqīyah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Maṣādir tārīkh al-Yaman fī al-ʻaṣr al-Islāmī" - ], - "shelfMark": [ - "*OFK 82-5143" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sayyid, Ayman Fuʼād." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75960138" - ], - "seriesStatement": [ - "Nuṣūṣ wa-tarjamāt -- al-Maʻhad al-ʻIlmī al-Faransī lil-Āthar al-Sharqīyah; al-mujallad 7" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFK 82-5143" - }, - { - "type": "nypl:Bnumber", - "value": "10000095" - }, - { - "type": "bf:Lccn", - "value": "75960138" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000047-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100047" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200094" - } - ], - "idOclc": [ - "NYPG001000047-B" - ], - "uniformTitle": [ - "Textes et traductions d'auteurs orientaux ; t. 7." - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Qāhirah : al-Maʻhad al-ʻIlmī al-Faransī lil-Āthār al-Sharqīyah, 1974." - ], - "identifier": [ - "urn:bnum:10000095", - "urn:lccn:75960138", - "urn:oclc:NYPG001000047-B", - "urn:undefined:NNSZ00100047", - "urn:undefined:(WaOLN)nyp0200094" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Yemen (Republic) -- History -- Bibliography." - ], - "titleDisplay": [ - "Maṣādir tārīkh al-Yaman fī al-ʻaṣr al-Islāmī / waḍaʻahā Ayman Fuʼād Sayyid." - ], - "uri": "b10000095", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah" - ], - "titleAlt": [ - "Sources de l'histoire de Yemen à l'époque musulmane." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000095" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000038", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFK 82-5143" - ], - "identifierV2": [ - { - "value": "*OFK 82-5143", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433005548338" - } - ], - "physicalLocation": [ - "*OFK 82-5143" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433005548338" - ], - "idBarcode": [ - "33433005548338" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFK 82-005143" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000097", - "_score": null, - "_source": { - "extent": [ - "218 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Anti Laylāy" - ], - "shelfMark": [ - "*OFA 82-5142" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kharfī, Ṣāliḥ." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75960362" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-5142" - }, - { - "type": "nypl:Bnumber", - "value": "10000097" - }, - { - "type": "bf:Lccn", - "value": "75960362" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000048-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100048" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200096" - } - ], - "idOclc": [ - "NYPG001000048-B" - ], - "updatedAt": 1674870752089, - "publicationStatement": [ - "al-Jazāʼir : al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1974." - ], - "identifier": [ - "urn:bnum:10000097", - "urn:lccn:75960362", - "urn:oclc:NYPG001000048-B", - "urn:undefined:NNSZ00100048", - "urn:undefined:(WaOLN)nyp0200096" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Anti Laylāy / Ṣāliḥ Kharfī." - ], - "uri": "b10000097", - "lccClassification": [ - "PJ7842.H3245 A83" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Jazāʼir" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000097" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000039", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-5142" - ], - "identifierV2": [ - { - "value": "*OFA 82-5142", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000689" - } - ], - "physicalLocation": [ - "*OFA 82-5142" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000689" - ], - "idBarcode": [ - "33433002000689" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-005142" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000099", - "_score": null, - "_source": { - "extent": [ - "520 p. : facsims. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Originally presented as the author's thesis (M. A.) Kullīyat Dār al-ʻUlūm.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 507-515.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ibn Rashīq al-Qayrawānī, al-Ḥasan, -1064?", - "Arabic poetry", - "Arabic poetry -- 750-1258", - "Arabic poetry -- 750-1258 -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Wakālat al-Maṭbūʻāt" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ibn Rashīq wa-naqd al-shiʻr : dirāsah naqdīyah taḥlīlīyah muqāranah" - ], - "shelfMark": [ - "*OFS 82-5141" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Makhlūf, ʻAbd al-Raʼūf." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75960190" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFS 82-5141" - }, - { - "type": "nypl:Bnumber", - "value": "10000099" - }, - { - "type": "bf:Lccn", - "value": "75960190" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000049-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100049" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200098" - } - ], - "idOclc": [ - "NYPG001000049-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "al-Kuwayt : Wakālat al-Maṭbūʻāt, 1973." - ], - "identifier": [ - "urn:bnum:10000099", - "urn:lccn:75960190", - "urn:oclc:NYPG001000049-B", - "urn:undefined:NNSZ00100049", - "urn:undefined:(WaOLN)nyp0200098" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ibn Rashīq al-Qayrawānī, al-Ḥasan, -1064?", - "Arabic poetry -- 750-1258 -- History and criticism." - ], - "titleDisplay": [ - "Ibn Rashīq wa-naqd al-shiʻr : dirāsah naqdīyah taḥlīlīyah muqāranah / bi-qalam ʻAbd al-Raʼūf ʻAbd al-ʻAzīz Makhlūf." - ], - "uri": "b10000099", - "lccClassification": [ - "PJ7750.I27 Z82 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Kuwayt" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000099" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000040", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFS 82-5141" - ], - "identifierV2": [ - { - "value": "*OFS 82-5141", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014514545" - } - ], - "physicalLocation": [ - "*OFS 82-5141" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014514545" - ], - "idBarcode": [ - "33433014514545" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFS 82-005141" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000101", - "_score": null, - "_source": { - "extent": [ - "7, 237 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "An abridgment of the thesis originally submitted to Jāmiʻat al-Qāhirah, 1963.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 225-229", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Arameans", - "Arameans -- Egypt" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "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." - ], - "shelfMark": [ - "*OFP 82-5140" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ayad, Boulos Ayad." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "75960565" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-5140" - }, - { - "type": "nypl:Bnumber", - "value": "10000101" - }, - { - "type": "bf:Lccn", - "value": "75960565" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000050-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100050" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200100" - } - ], - "idOclc": [ - "NYPG001000050-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "[al-Qāhirah : s.n., al-muqaddimah 1975]" - ], - "identifier": [ - "urn:bnum:10000101", - "urn:lccn:75960565", - "urn:oclc:NYPG001000050-B", - "urn:undefined:NNSZ00100050", - "urn:undefined:(WaOLN)nyp0200100" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Arameans -- Egypt." - ], - "titleDisplay": [ - "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. / Taʼlīf Būlus ʻAyyād ʻAyyād." - ], - "uri": "b10000101", - "lccClassification": [ - "DT72.A73 A92" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000101" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000041", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFP 82-5140" - ], - "identifierV2": [ - { - "value": "*OFP 82-5140", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001937568" - } - ], - "physicalLocation": [ - "*OFP 82-5140" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001937568" - ], - "idBarcode": [ - "33433001937568" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFP 82-005140" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000103", - "_score": null, - "_source": { - "extent": [ - "11, 602 p.: port.;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1967 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." - ], - "createdString": [ - "1967" - ], - "idLccn": [ - "75960366" - ], - "seriesStatement": [ - "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1967 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFA 82-5137" - }, - { - "type": "nypl:Bnumber", - "value": "10000103" - }, - { - "type": "bf:Lccn", - "value": "75960366" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000051-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100051" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200102" - } - ], - "idOclc": [ - "NYPG001000051-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." - ], - "identifier": [ - "urn:bnum:10000103", - "urn:lccn:75960366", - "urn:oclc:NYPG001000051-B", - "urn:undefined:NNSZ00100051", - "urn:undefined:(WaOLN)nyp0200102" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1967" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." - ], - "uri": "b10000103", - "lccClassification": [ - "PJ7842.H2937 A17 1967" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Jazāʼir]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000103" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000042", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFA 82-5137" - ], - "identifierV2": [ - { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433002000671" - } - ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433002000671" - ], - "idBarcode": [ - "33433002000671" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFA 82-005137" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json b/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json index eae8b338..f58c2cd2 100644 --- a/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json +++ b/test/fixtures/query-e208ec0c3f3bf953053d1573fd11b700.json @@ -1,378 +1,426 @@ { - "took": 7, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.956224, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10015541", - "_score": 14.956224, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 has title: A history and genealogy of the families of Howland, Brown, Follett, Van Dyke, Lamb, Spaulding, and Davidson with related lines of Treat, Botsford, Parker, Burwell, Clark, Andrews, Symmonds, Burnaman, Ashbaugh, and Smith from Holland, England, Scotland, and France to Massachusetts, Connecticut, New York, New Jersey, Ohio, Iowa, Indiana, Nebraska, Kansas, and Texas from \"The Mayflower\" pilgrims in 1620 to the 1980s / by Dorothy Davidson Symmonds.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jacobs family", - "Pritchard family", - "Rimmer family" - ], - "publisherLiteral": [ - "D. Symmonds," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "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" - ], - "shelfMark": [ - "APV (Pritchett) 87-2820" - ], - "creatorLiteral": [ - "Symmonds, Dorothy." - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "85239758" - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "APV (Pritchett) 87-2820" - }, - { - "type": "nypl:Bnumber", - "value": "10015541" - }, - { - "type": "bf:Lccn", - "value": "85239758" + "body": { + "took": 55, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 15.044935, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10015541", + "_score": 15.044935, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Vol. 2 has title: A history and genealogy of the families of Howland, Brown, Follett, Van Dyke, Lamb, Spaulding, and Davidson with related lines of Treat, Botsford, Parker, Burwell, Clark, Andrews, Symmonds, Burnaman, Ashbaugh, and Smith from Holland, England, Scotland, and France to Massachusetts, Connecticut, New York, New Jersey, Ohio, Iowa, Indiana, Nebraska, Kansas, and Texas from \"The Mayflower\" pilgrims in 1620 to the 1980s / by Dorothy Davidson Symmonds.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jacobs family", + "Pritchard family", + "Rimmer family" + ], + "publisherLiteral": [ + "D. Symmonds," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "APV (Pritchett) 87-2820" + ], + "creatorLiteral": [ + "Symmonds, Dorothy." + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "85239758" + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Pritchett) 87-2820" + }, + { + "type": "nypl:Bnumber", + "value": "10015541" + }, + { + "type": "bf:Lccn", + "value": "85239758" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0215498" + } + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1636069238906, + "publicationStatement": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) : D. Symmonds, c1985-" + ], + "identifier": [ + "urn:bnum:10015541", + "urn:lccn:85239758", + "urn:undefined:(WaOLN)nyp0215498" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jacobs family.", + "Pritchard family.", + "Rimmer family." + ], + "titleDisplay": [ + "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 / by Dorothy Symmonds." + ], + "uri": "b10015541", + "lccClassification": [ + "CS71.P9615 1985" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0215498" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636069238906, - "publicationStatement": [ - "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) : D. Symmonds, c1985-" - ], - "identifier": [ - "urn:bnum:10015541", - "urn:lccn:85239758", - "urn:undefined:(WaOLN)nyp0215498" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433065651741" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000002", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14747616", + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 2" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060936147" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000001", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i35838326", + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 1" + ], + "identifierV2": [ + { + "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" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } + ] + }, + "sort": [ + null + ] + } + ] + } } - ], - "dateString": [ - "1985" - ], - "mediaType": [ + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "mediatypes:n", - "label": "unmediated" + "key": "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121", + "doc_count": 2 } - ], - "subjectLiteral": [ - "Jacobs family.", - "Pritchard family.", - "Rimmer family." - ], - "titleDisplay": [ - "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 / by Dorothy Symmonds." - ], - "uri": "b10015541", - "lccClassification": [ - "CS71.P9615 1985" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Bellaire, Tex. (P.O. Box 26, Bellaire 77401) :" - ], - "issuance": [ + ] + } + }, + "item_format": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [] + } + }, + "item_status": { + "doc_count": 2, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "key": "status:a||Available", + "doc_count": 2 } - ], - "dimensions": [ - "28 cm." ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433065651741" - ], - "physicalLocation": [ - "APV (Pritchett) 87-2820" - ], - "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000002", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i14747616", - "shelfMark": [ - "APV (Pritchett) 87-2820 v. 2" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433060936147" - ], - "physicalLocation": [ - "APV (Pritchett) 87-2820" - ], - "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000001", - "m2CustomerCode": [ - "XA" - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i35838326", - "shelfMark": [ - "APV (Pritchett) 87-2820 v. 1" - ], - "identifierV2": [ - { - "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" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } } } - ] + } }, - "aggregations": { - "item_location": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121", - "doc_count": 2 - } - ] - } + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:55 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "5556", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10015541\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "917" + }, + "timeout": 30000 + }, + "options": {}, + "id": 26 }, - "item_format": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [] + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false } }, - "item_status": { - "doc_count": 2, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "status:a||Available", - "doc_count": 2 - } - ] - } - } + "attempts": 0, + "aborted": false } } \ No newline at end of file diff --git a/test/fixtures/query-e4b879a0948f7f28c8daf7cb132886f1.json b/test/fixtures/query-e4b879a0948f7f28c8daf7cb132886f1.json new file mode 100644 index 00000000..21239d9c --- /dev/null +++ b/test/fixtures/query-e4b879a0948f7f28c8daf7cb132886f1.json @@ -0,0 +1,21111 @@ +{ + "body": { + "took": 355, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 787355, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001080", + "_score": null, + "_source": { + "extent": [ + "577 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"The first printed book in Malayalam\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Facsimile reproduction of old Malayalam and transcription, paraphrase, and notes in modern Malayalam, on opposite pages.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Original t.p. reads: Nasṟāṇikaḷ okkakkuṃ aṟiyeṇṭunna saṅkṣepavedārtthaṃ=Compendiosa legis explanatio omnibus Christianis scitu necessaria. Malabarico idiomate. Romāyilninn Miśihā pirṟannīṭṭ 1772 śṟȧṣṭa melpaṭṭakkāraruṭe anuvādattāl=Romae An. A nativit. Christi 1772, praisidum facultate\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Catholic Church. Syro-Malabar rite", + "Christianity", + "Christianity -- Philosophy" + ], + "publisherLiteral": [ + "Ḍi. Ṣi. Buks ; Kārmel Pabḷiṣiṅg Senṟar," + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "dateEndString": [ + "1772" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" + ], + "shelfMark": [ + "*OLD 84-299" + ], + "creatorLiteral": [ + "Piyāniyas, Kḷemanṟ, 1731-1782." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82904075" + ], + "contributorLiteral": [ + "Choondal, Chummar, 1940-", + "Mathew, Ulakamthara." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-299" + }, + { + "type": "nypl:Bnumber", + "value": "10001080" + }, + { + "type": "bf:Lccn", + "value": "82904075" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201091" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201079" + } + ], + "dateEndYear": [ + 1772 + ], + "updatedAt": 1636128328325, + "publicationStatement": [ + "Kōṭṭayaṃ : Ḍi. Ṣi. Buks ; Tiruvanantapuraṃ : Kārmel Pabḷiṣiṅg Senṟar, 1980." + ], + "identifier": [ + "urn:bnum:10001080", + "urn:lccn:82904075", + "urn:undefined:NNSZ00201091", + "urn:undefined:(WaOLN)nyp0201079" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Catholic Church. Syro-Malabar rite.", + "Christianity -- Philosophy." + ], + "titleDisplay": [ + "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp / Kḷemanṟ Piyāniyas = Samkshepa vedartham / by Clement Pianius ; introduction by Chummar Choondel ; commentary by Mathew Ulakamthara." + ], + "uri": "b10001080", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōṭṭayaṃ : Tiruvanantapuraṃ :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10001080" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011099029" + ], + "physicalLocation": [ + "*OLD 84-299" + ], + "shelfMark_sort": "a*OLD 84-000299", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000682", + "shelfMark": [ + "*OLD 84-299" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-299" + }, + { + "type": "bf:Barcode", + "value": "33433011099029" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011099029" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003158", + "_score": null, + "_source": { + "extent": [ + "608 p. in various pagings ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint ed.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Chinese.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Medicine, Chinese" + ], + "publisherLiteral": [ + "Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si," + ], + "language": [ + { + "id": "lang:chi", + "label": "Chinese" + } + ], + "dateEndString": [ + "1670" + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zheng yin mo zhi : [4 juan]" + ], + "shelfMark": [ + "*OVL 84-1330" + ], + "creatorLiteral": [ + "Qin, Changyu, active 17th century." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "77839836" + ], + "seriesStatement": [ + "zhongguo yi yao zong shu." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" + }, + { + "type": "nypl:Bnumber", + "value": "10003158" + }, + { + "type": "bf:Lccn", + "value": "77839836" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303509" + } + ], + "dateEndYear": [ + 1670 + ], + "updatedAt": 1641391919318, + "publicationStatement": [ + "Taipei xian yonghe zhen : Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si, Min'Guo 61[1972]" + ], + "identifier": [ + "urn:bnum:10003158", + "urn:lccn:77839836", + "urn:undefined:NNSZ00303509" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Medicine, Chinese." + ], + "titleDisplay": [ + "Zheng yin mo zhi : [4 juan] / Qin Jingming [Changyu] zhu ; Qin Zhizheng ji ; [Cao Binzhang quan dian]." + ], + "uri": "b10003158", + "lccClassification": [ + "R128.7 .C545" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Taipei xian yonghe zhen :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10003158" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001746852" + ], + "physicalLocation": [ + "*OVL 84-1330" + ], + "shelfMark_sort": "a*OVL 84-001330", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002193", + "shelfMark": [ + "*OVL 84-1330" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" + }, + { + "type": "bf:Barcode", + "value": "33433001746852" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001746852" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003190", + "_score": null, + "_source": { + "extent": [ + "606 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Basavapurāṇavu.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Kannaḍa sāhitya caritre.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Basava, active 1160", + "Basava, active 1160 -- Poetry", + "Lingayats", + "Lingayats -- Poetry" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Basavapurāṇavu" + ], + "shelfMark": [ + "*OLA+ 82-1360" + ], + "creatorLiteral": [ + "Palakuriki Somanatha, active 13th century." + ], + "createdString": [ + "1800" + ], + "contributorLiteral": [ + "Bhīmakavi, active 1369." + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 82-1360" + }, + { + "type": "nypl:Bnumber", + "value": "10003190" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303541" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203183" + } + ], + "uniformTitle": [ + "Basavapurāṇamu. Kannada" + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1636076831370, + "publicationStatement": [ + "[S.1. : s.n., 18--?]" + ], + "identifier": [ + "urn:bnum:10003190", + "urn:undefined:NNSZ00303541", + "urn:undefined:(WaOLN)nyp0203183" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Basava, active 1160 -- Poetry.", + "Lingayats -- Poetry." + ], + "titleDisplay": [ + "Basavapurāṇavu / [Bhīmakavi viracita ; Sōmanātha kaviya Telugu Basavapurāṇamuvina Kannaḍa anuvāda]." + ], + "uri": "b10003190", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.1. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Basavapurāṇamu." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10003190" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433069579674" + ], + "shelfMark_sort": "a*OLA+ 82-001360", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784381", + "shelfMark": [ + "*OLA+ 82-1360" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433069579674" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433069579674" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003301", + "_score": null, + "_source": { + "extent": [ + "v. : ill., map, facsims. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kurds", + "Kurds -- Iran", + "Kurds -- Iran -- History" + ], + "publisherLiteral": [ + "Chāpkhānah-ʼi Kūshish," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" + ], + "shelfMark": [ + "*OMR 84-1145" + ], + "creatorLiteral": [ + "Tavaḥḥudī Awghāzī, Kalīm Allāh." + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145" + }, + { + "type": "nypl:Bnumber", + "value": "10003301" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303655" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000007" + } + ], + "dateEndYear": [ + 999 + ], + "updatedAt": 1636103985760, + "publicationStatement": [ + "Mashhad : Chāpkhānah-ʼi Kūshish, 1359- [1981- ]" + ], + "identifier": [ + "urn:bnum:10003301", + "urn:undefined:NNSZ00303655", + "urn:undefined:(WaOLN)nyp0000007" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kurds -- Iran -- History." + ], + "titleDisplay": [ + "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān / taʼlīf-i Kalīm Allāh Tavaḥḥudī (Awghāzi)" + ], + "uri": "b10003301", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Mashhad :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003301" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013135854" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002283", + "shelfMark": [ + "*OMR 84-1145 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013135854" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013135854" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013135847" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002282", + "shelfMark": [ + "*OMR 84-1145 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013135847" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433013135847" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013136530" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002281", + "shelfMark": [ + "*OMR 84-1145 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013136530" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013136530" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003857", + "_score": null, + "_source": { + "extent": [ + "319 p. : ill., plates, maps ;" + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "‏بيروت : دار مكتبة الحياة, [196-؟]" + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "‏بيروت :" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Yemen (Republic)" + ], + "publisherLiteral": [ + "Dār Maktabat al-Ḥayāh," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 196 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah /" + ], + "parallelTitle": [ + "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة /" + ], + "shelfMark": [ + "*OFI 82-4419" + ], + "creatorLiteral": [ + "Tarsīsī, ʻAdnān." + ], + "createdString": [ + "196" + ], + "parallelPublisher": [ + "‏دار مكتبة الحياة," + ], + "idLccn": [ + "ne 64003290" + ], + "dateStartYear": [ + 196 + ], + "parallelCreatorLiteral": [ + "‏ترسيسي, عدنان." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" + }, + { + "type": "nypl:Bnumber", + "value": "10003857" + }, + { + "type": "bf:Lccn", + "value": "ne 64003290" + }, + { + "type": "nypl:Oclc", + "value": "11272192" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11272192" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)221366702" + } + ], + "idOclc": [ + "11272192" + ], + "updatedAt": 1649121307527, + "publicationStatement": [ + "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" + ], + "identifier": [ + "urn:bnum:10003857", + "urn:lccn:ne 64003290", + "urn:oclc:11272192", + "urn:undefined:(OCoLC)11272192", + "urn:undefined:(OCoLC)221366702" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "196" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Yemen (Republic)" + ], + "titleDisplay": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah / [taʼlīf] ʻAdnān Tarsīsī." + ], + "uri": "b10003857", + "lccClassification": [ + "DS247.Y4 T3" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "parallelTitleDisplay": [ + "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة / [تاليف] عدنان ترسيسي." + ], + "placeOfPublication": [ + "Bayrūt :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Includes musical score of national anthem of Yemen Arab Republic." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003857" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433101143836" + ], + "physicalLocation": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + ], + "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i29202258", + "shelfMark": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + }, + { + "type": "bf:Barcode", + "value": "33433101143836" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433101143836" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433002023293" + ], + "physicalLocation": [ + "*OFI 82-4419" + ], + "shelfMark_sort": "a*OFI 82-004419", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002714", + "shelfMark": [ + "*OFI 82-4419" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" + }, + { + "type": "bf:Barcode", + "value": "33433002023293" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002023293" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004080", + "_score": null, + "_source": { + "extent": [ + "2v." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Esosiẏeṭeḍa Pābaliśārsa" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "dateEndString": [ + "62" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Junāpura Sṭīla." + ], + "shelfMark": [ + "*OKV 82-3891" + ], + "creatorLiteral": [ + "Mānnā, Guṇamaẏa, 1925-2010." + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "sa 63003864" + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891" + }, + { + "type": "nypl:Bnumber", + "value": "10004080" + }, + { + "type": "bf:Lccn", + "value": "sa 63003864" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304442" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204072" + } + ], + "dateEndYear": [ + 62 + ], + "updatedAt": 1636108800927, + "publicationStatement": [ + "[Kalakātā] Esosiẏeṭeḍa Pābaliśārsa [1960-1962]" + ], + "identifier": [ + "urn:bnum:10004080", + "urn:lccn:sa 63003864", + "urn:undefined:NNSZ00304442", + "urn:undefined:(WaOLN)nyp0204072" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Junāpura Sṭīla. [Lekhaka] Guṇamaẏa Mānnā." + ], + "uri": "b10004080", + "lccClassification": [ + "PK1718.M253 53" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Kalakātā]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10004080" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011168402" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002917", + "shelfMark": [ + "*OKV 82-3891 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011168402" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433011168402" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011168394" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002916", + "shelfMark": [ + "*OKV 82-3891 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011168394" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433011168394" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004504", + "_score": null, + "_source": { + "extent": [ + "34 p.;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Pronunciation" + ], + "publisherLiteral": [ + "Naṭarācaṉ," + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 197 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" + ], + "shelfMark": [ + "*OLB 83-2757" + ], + "creatorLiteral": [ + "Natarajan, Subbiah, 1911-" + ], + "createdString": [ + "197" + ], + "idLccn": [ + "75906338" + ], + "dateStartYear": [ + 197 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" + }, + { + "type": "nypl:Bnumber", + "value": "10004504" + }, + { + "type": "bf:Lccn", + "value": "75906338" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304869" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204496" + } + ], + "updatedAt": 1636132308475, + "publicationStatement": [ + "[Tūttukkuṭi]: Naṭarācaṉ, 1974." + ], + "identifier": [ + "urn:bnum:10004504", + "urn:lccn:75906338", + "urn:undefined:NNSZ00304869", + "urn:undefined:(WaOLN)nyp0204496" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "197" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Pronunciation." + ], + "titleDisplay": [ + "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum/ Cu. Naṭarājaṉ." + ], + "uri": "b10004504", + "lccClassification": [ + "PL4754 .N33 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tūttukkuṭi]:" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10004504" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061296681" + ], + "physicalLocation": [ + "*OLB 83-2757" + ], + "shelfMark_sort": "a*OLB 83-002757", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784546", + "shelfMark": [ + "*OLB 83-2757" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" + }, + { + "type": "bf:Barcode", + "value": "33433061296681" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296681" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004672", + "_score": null, + "_source": { + "extent": [ + "106 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "P. Vaillant," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1775 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "All in the wrong [microform] : a comedy, as it is acted at the Theatre-Royal in Drury-Lane" + ], + "shelfMark": [ + "*ZC-177" + ], + "creatorLiteral": [ + "Murphy, Arthur, 1727-1805." + ], + "createdString": [ + "1775" + ], + "dateStartYear": [ + 1775 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZC-177" + }, + { + "type": "nypl:Bnumber", + "value": "10004672" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405783" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204664" + } + ], + "updatedAt": 1636073146019, + "publicationStatement": [ + "London : P. Vaillant, 1775." + ], + "identifier": [ + "urn:bnum:10004672", + "urn:undefined:NNSZ00405783", + "urn:undefined:(WaOLN)nyp0204664" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1775" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "All in the wrong [microform] : a comedy, as it is acted at the Theatre-Royal in Drury-Lane / by Mr. Murphy." + ], + "uri": "b10004672", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "London :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "12⁰." + ] + }, + "sort": [ + "b10004672" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004849", + "_score": null, + "_source": { + "extent": [ + "[8], 48 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Samaritans" + ], + "publisherLiteral": [ + "Sumtu Io. Bielckii," + ], + "language": [ + { + "id": "lang:lat", + "label": "Latin" + } + ], + "createdYear": [ + 1688 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Christophori Cellarii Collectanea historiae Samaritanae : quibus praeter res geographicas, tam politia huius gentis, quam religio et res litteraria explicantur." + ], + "shelfMark": [ + "**P 07-283" + ], + "creatorLiteral": [ + "Cellarius, Christoph, 1638-1707." + ], + "createdString": [ + "1688" + ], + "dateStartYear": [ + 1688 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "**P 07-283" + }, + { + "type": "nypl:Bnumber", + "value": "10004849" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405962" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204839" + } + ], + "updatedAt": 1636081486226, + "publicationStatement": [ + "Cizae : Sumtu Io. Bielckii, 1688." + ], + "identifier": [ + "urn:bnum:10004849", + "urn:undefined:NNSZ00405962", + "urn:undefined:(WaOLN)nyp0204839" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1688" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Samaritans." + ], + "titleDisplay": [ + "Christophori Cellarii Collectanea historiae Samaritanae : quibus praeter res geographicas, tam politia huius gentis, quam religio et res litteraria explicantur." + ], + "uri": "b10004849", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Cizae :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Collectanea historiae Samaritanae." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10004849" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746564", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:maf88", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf88||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "shelfMark": [ + "**P 07-283" + ], + "identifierV2": [ + { + "value": "**P 07-283", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433075470579" + } + ], + "physicalLocation": [ + "**P 07-283" + ], + "identifier": [ + "urn:barcode:33433075470579" + ], + "idBarcode": [ + "33433075470579" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:a", + "label": "By appointment only" + } + ], + "accessMessage_packed": [ + "accessMessage:a||By appointment only" + ], + "shelfMark_sort": "a**P 07-000283" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005935", + "_score": null, + "_source": { + "extent": [ + "[12] leaves : col. ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J. Vlieger" + ], + "language": [ + { + "id": "lang:dut", + "label": "Dutch" + } + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "De 10 kleine nikkertjes." + ], + "shelfMark": [ + "Sc Rare F 83-57" + ], + "createdString": [ + "1800" + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare F 83-57" + }, + { + "type": "nypl:Bnumber", + "value": "10005935" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507149" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205924" + } + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1654777212731, + "publicationStatement": [ + "Amsterdam : J. Vlieger, [18--?]" + ], + "identifier": [ + "urn:bnum:10005935", + "urn:undefined:NNSZ00507149", + "urn:undefined:(WaOLN)nyp0205924" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "De 10 kleine nikkertjes." + ], + "uri": "b10005935", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Tien Kleine nikkertjes." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10005935" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10005935-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+10+kleine+nikkertjes.&Site=SCHRB&CallNumber=Sc+Rare+F+83-57&ItemPlace=Amsterdam+:&ItemPublisher=J.+Vlieger,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10005935&ReferenceNumber=b100059351&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926669&ItemISxN=i119005189&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10005935-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900518", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare F 83-57" + ], + "identifierV2": [ + { + "value": "Sc Rare F 83-57", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036926669" + } + ], + "physicalLocation": [ + "Sc Rare F 83-57" + ], + "identifier": [ + "urn:barcode:33433036926669" + ], + "idBarcode": [ + "33433036926669" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+10+kleine+nikkertjes.&Site=SCHRB&CallNumber=Sc+Rare+F+83-57&ItemPlace=Amsterdam+:&ItemPublisher=J.+Vlieger,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10005935&ReferenceNumber=b100059351&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926669&ItemISxN=i119005189&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare F 83-000057" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005945", + "_score": null, + "_source": { + "extent": [ + "[4], iv, 5-62 p. ;" + ], + "note": [ + { + "noteType": "Indexed In", + "label": "Sabin", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "of Sidney Lapidus; ", + "type": "bf:Note" + }, + { + "noteType": "Binding", + "label": "Copy in Sc Rare E 16-46 (Lapidus Collection) disbound.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Slave-trade", + "Slave-trade -- West Indies, British.", + "Slave-trade -- West Indies, British. -- Early works to 1800", + "Slavery", + "Slavery -- West Indies, British.", + "Slavery -- West Indies, British. -- Early works to 1800", + "Slavery -- Law and legislation", + "Slavery -- Law and legislation -- Jamaica", + "Slavery -- Law and legislation -- Jamaica -- Early works to 1800" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Printed and sold by James Philips" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 4 + ], + "createdYear": [ + 1789 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "Sc Rare F 83-78" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Fuller, Stephen, 1716-1808." + ], + "createdString": [ + "1789" + ], + "numElectronicResources": [ + 2 + ], + "contributorLiteral": [ + "Jamaica. Assembly." + ], + "dateStartYear": [ + 1789 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare F 83-78" + }, + { + "type": "nypl:Bnumber", + "value": "10005945" + }, + { + "type": "nypl:Oclc", + "value": "NYPG005000087-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507159" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205933" + } + ], + "idOclc": [ + "NYPG005000087-B" + ], + "updatedAt": 1675264202226, + "publicationStatement": [ + "London : Printed and sold by James Philips, 1789." + ], + "identifier": [ + "urn:bnum:10005945", + "urn:oclc:NYPG005000087-B", + "urn:undefined:NNSZ00507159", + "urn:undefined:(WaOLN)nyp0205933" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1789" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Slave-trade -- West Indies, British. -- Early works to 1800.", + "Slavery -- West Indies, British. -- Early works to 1800.", + "Slavery -- Law and legislation -- Jamaica -- Early works to 1800." + ], + "titleDisplay": [ + "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. / by a Jamaica planter." + ], + "uri": "b10005945", + "numItems": [ + 4 + ], + "numAvailable": [ + 4 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10005945" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": 1, + "_source": { + "uri": "i10005945-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", + "label": "Request access to this item in the Schwarzman Rare Books Collection" + }, + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=Sc+Rare+F+83-78&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10005945-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 4, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i10003913", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare F 83-78" + ], + "identifierV2": [ + { + "value": "Sc Rare F 83-78", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076159494" + } + ], + "physicalLocation": [ + "Sc Rare F 83-78" + ], + "identifier": [ + "urn:barcode:33433076159494" + ], + "idBarcode": [ + "33433076159494" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare F 83-000078" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i34051315", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare E 16-46 (Lapidus Collection)" + ], + "identifierV2": [ + { + "value": "Sc Rare E 16-46 (Lapidus Collection)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433117263263" + } + ], + "physicalLocation": [ + "Sc Rare E 16-46 (Lapidus Collection)" + ], + "identifier": [ + "urn:barcode:33433117263263" + ], + "idBarcode": [ + "33433117263263" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SCHRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare E 16-46 (Lapidus Collection)" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10003915", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "shelfMark": [ + "8-*KF 1789 (Notes on the two reports)" + ], + "identifierV2": [ + { + "value": "8-*KF 1789 (Notes on the two reports)", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "8-*KF 1789 (Notes on the two reports)" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a8-*KF 1789 (Notes on the two reports)" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10003914", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "shelfMark": [ + "*KF 1789 (Notes on the two reports)" + ], + "identifierV2": [ + { + "value": "*KF 1789 (Notes on the two reports)", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*KF 1789 (Notes on the two reports)" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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,andc.andc.andc.+/&Site=SASRB&CallNumber=8-*KF+1789+(Notes+on+the+two+reports)+*KF+1789+(Notes+on+the+two+reports)&Author=Fuller,+Stephen,&ItemPlace=London+:&ItemPublisher=Printed+and+sold+by+James+Philips,&Date=1789.&ItemInfo3=https://catalog.nypl.org/record=b10005945&ReferenceNumber=b100059454&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*KF 1789 (Notes on the two reports)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005951", + "_score": null, + "_source": { + "extent": [ + "150, [10] p. : folded col. map ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Bound in leather.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Almanacs, Jamaican", + "Jamaica", + "Jamaica -- Registers" + ], + "publisherLiteral": [ + "Printed by David Dickson for Thomas Stevenson" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1794 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Jamaica almanack, and register ... for the year of Our Lord 1795 ... ." + ], + "shelfMark": [ + "Sc Rare B 83-2" + ], + "createdString": [ + "1794" + ], + "dateStartYear": [ + 1794 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare B 83-2" + }, + { + "type": "nypl:Bnumber", + "value": "10005951" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507166" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205940" + } + ], + "updatedAt": 1654777211068, + "publicationStatement": [ + "Kingston : Printed by David Dickson for Thomas Stevenson, [1794?]" + ], + "identifier": [ + "urn:bnum:10005951", + "urn:undefined:NNSZ00507166", + "urn:undefined:(WaOLN)nyp0205940" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1794" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Almanacs, Jamaican.", + "Jamaica -- Registers." + ], + "titleDisplay": [ + "The New Jamaica almanack, and register ... for the year of Our Lord 1795 ... ." + ], + "uri": "b10005951", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kingston" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "15 cm." + ] + }, + "sort": [ + "b10005951" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10005951-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+New+Jamaica+almanack,+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Site=SCHRB&CallNumber=Sc+Rare+B+83-2&ItemPlace=Kingston+:&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson,&Date=[1794?]&ItemInfo3=https://catalog.nypl.org/record=b10005951&ReferenceNumber=b10005951x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926776&ItemISxN=i119005281&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10005951-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11900528", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare B 83-2" + ], + "identifierV2": [ + { + "value": "Sc Rare B 83-2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036926776" + } + ], + "physicalLocation": [ + "Sc Rare B 83-2" + ], + "identifier": [ + "urn:barcode:33433036926776" + ], + "idBarcode": [ + "33433036926776" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+New+Jamaica+almanack,+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Site=SCHRB&CallNumber=Sc+Rare+B+83-2&ItemPlace=Kingston+:&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson,&Date=[1794?]&ItemInfo3=https://catalog.nypl.org/record=b10005951&ReferenceNumber=b10005951x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926776&ItemISxN=i119005281&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare B 83-000002" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10005958", + "_score": null, + "_source": { + "extent": [ + "66 p. ;" + ], + "note": [ + { + "noteType": "Indexed In", + "label": "Sabin", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Garran de Coulon, Jean Philippe, 1748-1816", + "Haiti", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804" + ], + "publisherLiteral": [ + "Se vend chez Maret, Desenne, et chez tous les marchands de nouveautés" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1797 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*KF 1797 (Creuzé-Dufresne, M. P. Lettre de Michel Pascal Creuzé)" + ], + "creatorLiteral": [ + "Creuzé-Dufresne, Michel Pascal." + ], + "createdString": [ + "1797" + ], + "dateStartYear": [ + 1797 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*KF 1797 (Creuzé-Dufresne, M. P. Lettre de Michel Pascal Creuzé)" + }, + { + "type": "nypl:Bnumber", + "value": "10005958" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507175" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0205949" + } + ], + "updatedAt": 1654780361497, + "publicationStatement": [ + "Paris : Se vend chez Maret, Desenne, et chez tous les marchands de nouveautés, an 5 [1797]" + ], + "identifier": [ + "urn:bnum:10005958", + "urn:undefined:NNSZ00507175", + "urn:undefined:(WaOLN)nyp0205949" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1797" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Garran de Coulon, Jean Philippe, 1748-1816.", + "Haiti -- History -- Revolution, 1791-1804." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10005958", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10005958" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10005958-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SASRB&CallNumber=*KF+1797+(Creuzé,+M.+P.+Lettre+de+Michel+Pascal+Creuzé)&Author=Creuzé-Dufresne,+Michel+Pascal.&ItemPlace=Paris+:&ItemPublisher=Se+vend+chez+Maret,+Desenne,+et+chez+tous+les+marchands+de+nouveautés,&Date=an+5+[1797]&ItemInfo3=https://catalog.nypl.org/record=b10005958&ReferenceNumber=b100059582&ItemISxN=i100039182&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", + "label": "Request access to this item in the Schwarzman Rare Books Collection" + } + ], + "shelfMark_sort": "bi10005958-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10003918", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "shelfMark": [ + "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" + ], + "identifierV2": [ + { + "value": "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SASRB&CallNumber=*KF+1797+(Creuzé,+M.+P.+Lettre+de+Michel+Pascal+Creuzé)&Author=Creuzé-Dufresne,+Michel+Pascal.&ItemPlace=Paris+:&ItemPublisher=Se+vend+chez+Maret,+Desenne,+et+chez+tous+les+marchands+de+nouveautés,&Date=an+5+[1797]&ItemInfo3=https://catalog.nypl.org/record=b10005958&ReferenceNumber=b100059582&ItemISxN=i100039182&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "shelfMark_sort": "a*KF 1797 (Creuzé, M. P. Lettre de Michel Pascal Creuzé)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006047", + "_score": null, + "_source": { + "extent": [ + "[12] p. of plates : all col. ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ethiopia", + "Ethiopia -- Pictorial works", + "Ethiopia -- Social life and customs" + ], + "publisherLiteral": [ + "A. Vallardi" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Usi e costumi dell' Abissinia e dei dintorni di Massaua" + ], + "shelfMark": [ + "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" + ], + "createdString": [ + "1800" + ], + "contributorLiteral": [ + "Pasini, Lazzaro." + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" + }, + { + "type": "nypl:Bnumber", + "value": "10006047" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00507270" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206040" + } + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1654777378164, + "publicationStatement": [ + "Milano : A. Vallardi, [18--]" + ], + "identifier": [ + "urn:bnum:10006047", + "urn:undefined:NNSZ00507270", + "urn:undefined:(WaOLN)nyp0206040" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ethiopia -- Pictorial works.", + "Ethiopia -- Social life and customs." + ], + "titleDisplay": [ + "Usi e costumi dell' Abissinia e dei dintorni di Massaua / da originali acquarelli di un indigeno, riprodotti da Laz. Pasini." + ], + "uri": "b10006047", + "numItems": [ + 3 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Milano" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 x 21 cm." + ] + }, + "sort": [ + "b10006047" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 1, + "_source": { + "uri": "i10006047-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Usi+e+costumi+dell'+Abissinia+e+dei+dintorni+di+Massaua+/&Site=SCHRB&CallNumber=Sc+Rare+C+84-8&ItemPlace=Milano+:&ItemPublisher=A.+Vallardi,&Date=[18--]&ItemInfo3=https://catalog.nypl.org/record=b10006047&ReferenceNumber=b10006047x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433076137185&ItemISxN=i10003925x&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10006047-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i10003925", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 84-8" + ], + "identifierV2": [ + { + "value": "Sc Rare C 84-8", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076137185" + } + ], + "physicalLocation": [ + "Sc Rare C 84-8" + ], + "identifier": [ + "urn:barcode:33433076137185" + ], + "idBarcode": [ + "33433076137185" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Usi+e+costumi+dell'+Abissinia+e+dei+dintorni+di+Massaua+/&Site=SCHRB&CallNumber=Sc+Rare+C+84-8&ItemPlace=Milano+:&ItemPublisher=A.+Vallardi,&Date=[18--]&ItemInfo3=https://catalog.nypl.org/record=b10006047&ReferenceNumber=b10006047x&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433076137185&ItemISxN=i10003925x&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare C 84-000008" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10003926", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" + ], + "identifierV2": [ + { + "value": "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433019684897" + } + ], + "physicalLocation": [ + "Sc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" + ], + "identifier": [ + "urn:barcode:33433019684897" + ], + "idBarcode": [ + "33433019684897" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "shelfMark_sort": "aSc 916.3-P (Pasini, L. Usi e costumi dell'Abissinia)" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006718", + "_score": null, + "_source": { + "extent": [ + "106 pages ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At head of title: Regie- und Souffleurbuch.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Musical revues, comedies, etc.", + "Musical revues, comedies, etc. -- Librettos", + "Musical revues, comedies, etc. -- Stage guides", + "Musicals", + "Theaters", + "Theaters -- Stage-setting and scenery" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Doremi" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 193 + ], + "title": [ + "Liebelei : ein Wiener Stück mit Musik : nach dem gleichnamigen Schauspiel von Arthur Schnitzler" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JMC 84-130" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "193u" + ], + "creatorLiteral": [ + "Straus, Oscar, 1870-1954." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Schnitzler, Arthur, 1862-1931." + ], + "dateStartYear": [ + 193 + ], + "idOclc": [ + "80791734" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 84-130" + }, + { + "type": "nypl:Bnumber", + "value": "10006718" + }, + { + "type": "nypl:Oclc", + "value": "80791734" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)80791734" + } + ], + "uniformTitle": [ + "Liebelei. Libretto" + ], + "updatedAt": 1709776820556, + "publicationStatement": [ + "Basel : Doremi, [193-?]" + ], + "genreForm": [ + "Librettos." + ], + "identifier": [ + "urn:shelfmark:JMC 84-130", + "urn:bnum:10006718", + "urn:oclc:80791734", + "urn:identifier:(OCoLC)80791734" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "193u" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Musical revues, comedies, etc. -- Librettos.", + "Musical revues, comedies, etc. -- Stage guides.", + "Musicals.", + "Theaters -- Stage-setting and scenery." + ], + "titleDisplay": [ + "Liebelei : ein Wiener Stück mit Musik : nach dem gleichnamigen Schauspiel von Arthur Schnitzler / Musik von Oscar Straus." + ], + "uri": "b10006718", + "placeOfPublication": [ + "Basel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Liebelei." + ], + "dimensions": [ + "20 cm" + ] + }, + "sort": [ + "b10006718" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004734608" + ], + "identifier": [ + "urn:shelfmark:JMC 84-130", + "urn:barcode:33433004734608" + ], + "identifierV2": [ + { + "value": "JMC 84-130", + "type": "bf:ShelfMark" + }, + { + "value": "33433004734608", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "physicalLocation": [ + "JMC 84-130" + ], + "recapCustomerCode": [ + "NP" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JMC 84-130" + ], + "shelfMark_sort": "aJMC 84-000130", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10003952" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10006816", + "_score": null, + "_source": { + "extent": [ + "[11], 144 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Nella stamperia di Gennaro Muzio," + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "createdYear": [ + 1725 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "La somiglianza [microform] : commedia" + ], + "shelfMark": [ + "*Z-3500" + ], + "creatorLiteral": [ + "Amenta, Niccolò, 1659-1719." + ], + "createdString": [ + "1725" + ], + "dateStartYear": [ + 1725 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3500" + }, + { + "type": "nypl:Bnumber", + "value": "10006816" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00508052" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0206802" + } + ], + "updatedAt": 1636111583127, + "publicationStatement": [ + "In Napoli : Nella stamperia di Gennaro Muzio, 1725." + ], + "identifier": [ + "urn:bnum:10006816", + "urn:undefined:NNSZ00508052", + "urn:undefined:(WaOLN)nyp0206802" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1725" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "La somiglianza [microform] : commedia / del dottor ... Niccolò Amenta ..." + ], + "uri": "b10006816", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "In Napoli :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + "b10006816" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433107660718" + ], + "physicalLocation": [ + "*Z-3500" + ], + "shelfMark_sort": "a*Z-003500", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10003967", + "shelfMark": [ + "*Z-3500" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3500" + }, + { + "type": "bf:Barcode", + "value": "33433107660718" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433107660718" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10007423", + "_score": null, + "_source": { + "extent": [ + "184 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Muʼassisah-ʼi Khāvar" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1334" + ], + "createdYear": [ + 1333 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "ʻĀlam va Ādam" + ], + "shelfMark": [ + "*OMO 84-2676" + ], + "creatorLiteral": [ + "Vafā ʻAlī Shāh." + ], + "createdString": [ + "1333" + ], + "dateStartYear": [ + 1333 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMO 84-2676" + }, + { + "type": "nypl:Bnumber", + "value": "10007423" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00508668" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0207407" + } + ], + "dateEndYear": [ + 1334 + ], + "updatedAt": 1653404639396, + "publicationStatement": [ + "Tihrān : Muʼassisah-ʼi Khāvar, 1312 [1933 or 1934]" + ], + "identifier": [ + "urn:bnum:10007423", + "urn:undefined:NNSZ00508668", + "urn:undefined:(WaOLN)nyp0207407" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1333" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "ʻĀlam va Ādam / a̲sar-i khāmah-ʼi Mīrzā Hādī Mawlavī Rash̄tī ; bi-himmat-i Muḥammad Ramazānī." + ], + "uri": "b10007423", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10007423" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001898570" + ], + "physicalLocation": [ + "*OMO 84-2676" + ], + "shelfMark_sort": "a*OMO 84-002676", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004294", + "shelfMark": [ + "*OMO 84-2676" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMO 84-2676" + }, + { + "type": "bf:Barcode", + "value": "33433001898570" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433001898570" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10007812", + "_score": null, + "_source": { + "extent": [ + "176 p. : ill. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "French wit and humor", + "French wit and humor -- France" + ], + "publisherLiteral": [ + "A. Pierret," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sac à juifs [microform] : recueil de scènes et récits satiriques et humoristiques" + ], + "shelfMark": [ + "*ZP-687 no. 9" + ], + "creatorLiteral": [ + "La Badine, C. de." + ], + "createdString": [ + "1800" + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZP-687 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10007812" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00609209" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0207795" + } + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1637634877781, + "publicationStatement": [ + "Paris : A. Pierret, [18--?]" + ], + "identifier": [ + "urn:bnum:10007812", + "urn:undefined:NNSZ00609209", + "urn:undefined:(WaOLN)nyp0207795" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "French wit and humor -- France." + ], + "titleDisplay": [ + "Sac à juifs [microform] : recueil de scènes et récits satiriques et humoristiques / par C. de La Badine ; illus. de Bocardho." + ], + "uri": "b10007812", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Paris :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "12⁰." + ] + }, + "sort": [ + "b10007812" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10008934", + "_score": null, + "_source": { + "extent": [ + "536 p. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Aristotle", + "Porphyry, approximately 234-approximately 305" + ], + "publisherLiteral": [ + "G. Olms," + ], + "language": [ + { + "id": "lang:lat", + "label": "Latin" + } + ], + "dateEndString": [ + "1597" + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "In Porphyrii Isagogen et Aristotelis Organum : commentarius analyticus" + ], + "shelfMark": [ + "JFD 85-2807" + ], + "creatorLiteral": [ + "Pace, Giulio, 1550-1635." + ], + "createdString": [ + "1966" + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 85-2807" + }, + { + "type": "nypl:Bnumber", + "value": "10008934" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00810450" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0208909" + } + ], + "dateEndYear": [ + 1597 + ], + "updatedAt": 1636105378000, + "publicationStatement": [ + "Hildesheim : G. Olms, 1966." + ], + "identifier": [ + "urn:bnum:10008934", + "urn:undefined:NNSZ00810450", + "urn:undefined:(WaOLN)nyp0208909" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Aristotle.", + "Porphyry, approximately 234-approximately 305." + ], + "titleDisplay": [ + "In Porphyrii Isagogen et Aristotelis Organum : commentarius analyticus / Julius Pacius." + ], + "uri": "b10008934", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Hildesheim :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10008934" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433038876987" + ], + "physicalLocation": [ + "JFD 85-2807" + ], + "shelfMark_sort": "aJFD 85-002807", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i12858678", + "shelfMark": [ + "JFD 85-2807" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 85-2807" + }, + { + "type": "bf:Barcode", + "value": "33433038876987" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433038876987" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009127", + "_score": null, + "_source": { + "extent": [ + "84 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "God (Islam)", + "God (Islam) -- Attributes" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1268" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Fatwá al-Ḥamawīyah al-kubrá," + ], + "shelfMark": [ + "*OGM 85-1727" + ], + "creatorLiteral": [ + "Ibn Taymīyah, Aḥmad ibn ʻAbd al-Ḥalīm, 1263-1328." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "76961126" + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 85-1727" + }, + { + "type": "nypl:Bnumber", + "value": "10009127" + }, + { + "type": "bf:Lccn", + "value": "76961126" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00810649" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209102" + } + ], + "dateEndYear": [ + 1268 + ], + "updatedAt": 1636072369613, + "publicationStatement": [ + "[al-Qāhirah, al-Maṭbaʻah al-Salafīyah wa-Maktabatuhā, 1967 or 8]" + ], + "identifier": [ + "urn:bnum:10009127", + "urn:lccn:76961126", + "urn:undefined:NNSZ00810649", + "urn:undefined:(WaOLN)nyp0209102" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "God (Islam) -- Attributes." + ], + "titleDisplay": [ + "al-Fatwá al-Ḥamawīyah al-kubrá, taʼlīf Taqī al-Dīn Aḥmad ibn Taymīyah. Nasharahā Quṣay Muḥibb al-Dīn al-Khaṭīb." + ], + "uri": "b10009127", + "lccClassification": [ + "BP166.2 .I24 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah, al-Maṭbaʻah al-Salafīyah wa-Maktabatuhā, 1967 or 8]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10009127" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001945694" + ], + "physicalLocation": [ + "*OGM 85-1727" + ], + "shelfMark_sort": "a*OGM 85-001727", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10004965", + "shelfMark": [ + "*OGM 85-1727" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 85-1727" + }, + { + "type": "bf:Barcode", + "value": "33433001945694" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001945694" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009912", + "_score": null, + "_source": { + "extent": [ + "[4] p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Alva, Juan de" + ], + "publisherLiteral": [ + "Imprenta de Alonso del Riego" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "dateEndString": [ + "1799" + ], + "createdYear": [ + 1700 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "Sc Rare+ F 82-61" + ], + "createdString": [ + "1700" + ], + "dateStartYear": [ + 1700 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare+ F 82-61" + }, + { + "type": "nypl:Bnumber", + "value": "10009912" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00911389" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209888" + } + ], + "dateEndYear": [ + 1799 + ], + "updatedAt": 1654777211068, + "publicationStatement": [ + "Valladolid : Imprenta de Alonso del Riego, [17--?]" + ], + "identifier": [ + "urn:bnum:10009912", + "urn:undefined:NNSZ00911389", + "urn:undefined:(WaOLN)nyp0209888" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1700" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Alva, Juan de." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10009912", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Valladolid" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10009912" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10009912-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-61&ItemPlace=Valladolid+:&ItemPublisher=Imprenta+de+Alonso+del+Riego,&Date=[17--?]&ItemInfo3=https://catalog.nypl.org/record=b10009912&ReferenceNumber=b100099129&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926867&ItemISxN=i11901001x&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10009912-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare+ F 82-61" + ], + "identifierV2": [ + { + "value": "Sc Rare+ F 82-61", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036926867" + } + ], + "physicalLocation": [ + "Sc Rare+ F 82-61" + ], + "identifier": [ + "urn:barcode:33433036926867" + ], + "idBarcode": [ + "33433036926867" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-61&ItemPlace=Valladolid+:&ItemPublisher=Imprenta+de+Alonso+del+Riego,&Date=[17--?]&ItemInfo3=https://catalog.nypl.org/record=b10009912&ReferenceNumber=b100099129&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036926867&ItemISxN=i11901001x&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare+ F 82-000061" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10009988", + "_score": null, + "_source": { + "extent": [ + "5 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Coutilien Coutard, Philippe-Jérome", + "Haiti", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804", + "Haiti -- History -- 1804-1844" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Impr. du gouvernement" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Discours aux Haïtiens, ou, Hommage au dévouement patriotique de Coutillien" + ], + "shelfMark": [ + "Sc Micro F-10834" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Marion, Ignace Despontreaux." + ], + "createdString": [ + "1800" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Micro F-10834" + }, + { + "type": "nypl:Bnumber", + "value": "10009988" + }, + { + "type": "nypl:Oclc", + "value": "NYPG009000688-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0209965" + } + ], + "idOclc": [ + "NYPG009000688-B" + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1681930860859, + "publicationStatement": [ + "Aux Cayes : Impr. du gouvernement, [185-?]" + ], + "identifier": [ + "urn:bnum:10009988", + "urn:oclc:NYPG009000688-B", + "urn:undefined:(WaOLN)nyp0209965" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Coutilien Coutard, Philippe-Jérome.", + "Haiti -- History -- Revolution, 1791-1804.", + "Haiti -- History -- 1804-1844." + ], + "titleDisplay": [ + "Discours aux Haïtiens, ou, Hommage au dévouement patriotique de Coutillien [microform] / par A.J. Despontreau Marion." + ], + "uri": "b10009988", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Aux Cayes" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Hommage au dévouement patriotique de Coutillien" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10009988" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i13965122", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "shelfMark": [ + "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" + ], + "identifierV2": [ + { + "value": "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058298906" + } + ], + "physicalLocation": [ + "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" + ], + "identifier": [ + "urn:barcode:33433058298906" + ], + "idBarcode": [ + "33433058298906" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro F-10900 Library has: Vol. 3, no. 000005-v. 3, no. 7 (June-Aug. 1919)" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13785539", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:26", + "label": "microfiche" + } + ], + "catalogItemType_packed": [ + "catalogItemType:26||microfiche" + ], + "holdingLocation": [ + { + "id": "loc:scff3", + "label": "Schomburg Center - Research & Reference - Desk" + } + ], + "holdingLocation_packed": [ + "loc:scff3||Schomburg Center - Research & Reference - Desk" + ], + "shelfMark": [ + "Sc Micro F-10834" + ], + "identifierV2": [ + { + "value": "Sc Micro F-10834", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058299276" + } + ], + "physicalLocation": [ + "Sc Micro F-10834" + ], + "identifier": [ + "urn:barcode:33433058299276" + ], + "idBarcode": [ + "33433058299276" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Micro F-010834" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010385", + "_score": null, + "_source": { + "extent": [ + "1 microfilm reel ;" + ], + "note": [ + { + "noteType": "Note", + "label": "On reel with: Jamaica 1871-1943 (except 1934), Panama Canal Zone 1912", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "United States Virgin Islands", + "United States Virgin Islands -- Census" + ], + "publisherLiteral": [ + "Research Publications," + ], + "language": [ + { + "id": "lang:und", + "label": "Undetermined" + } + ], + "createdYear": [ + 198 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "U.S. Virgin Islands--Census 1901, pt. 1, 1911, pt. 1 [microform]." + ], + "shelfMark": [ + "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + ], + "createdString": [ + "198" + ], + "seriesStatement": [ + "International population census publications [pre-1945]. Latin America" + ], + "dateStartYear": [ + 198 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + }, + { + "type": "nypl:Bnumber", + "value": "10010385" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01012026" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210361" + } + ], + "updatedAt": 1636140635056, + "publicationStatement": [ + "Woodbridge, Conn. : Research Publications, [1983]" + ], + "identifier": [ + "urn:bnum:10010385", + "urn:undefined:NNSZ01012026", + "urn:undefined:(WaOLN)nyp0210361" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "198" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "United States Virgin Islands -- Census." + ], + "titleDisplay": [ + "U.S. Virgin Islands--Census 1901, pt. 1, 1911, pt. 1 [microform]." + ], + "uri": "b10010385", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Woodbridge, Conn. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 mm." + ] + }, + "sort": [ + "b10010385" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i27849993", + "shelfMark": [ + "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + }, + { + "type": "bf:Barcode", + "value": "33433094813171" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433094813171" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010607", + "_score": null, + "_source": { + "extent": [ + "1 broadside ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Facsimile reproduction (photoreproduction).", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Diderot, Denis, 1713-1784", + "Alembert, Jean Le Rond d', 1717-1783", + "Encyclopédie" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ex Typographia Reverendae Camerae Apostolicae" + ], + "language": [ + { + "id": "lang:lat", + "label": "Latin" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1759 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*Z-3852 no. 26" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Catholic Church. Pope (1758-1769 : Clement XIII)" + ], + "createdString": [ + "1759" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1759 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3852 no. 26" + }, + { + "type": "nypl:Bnumber", + "value": "10010607" + }, + { + "type": "nypl:Oclc", + "value": "13888170" + }, + { + "type": "nypl:Oclc", + "value": "13888170 " + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)13888170" + } + ], + "idOclc": [ + "13888170", + "13888170 " + ], + "updatedAt": 1689282257929, + "publicationStatement": [ + "Romae : Ex Typographia Reverendae Camerae Apostolicae, 1759." + ], + "identifier": [ + "urn:bnum:10010607", + "urn:oclc:13888170", + "urn:oclc:13888170 ", + "urn:undefined:(OCoLC)13888170" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1759" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Diderot, Denis, 1713-1784.", + "Alembert, Jean Le Rond d', 1717-1783.", + "Encyclopédie." + ], + "titleDisplay": [ + "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 [microform] / Clemens Papa XIII ad futuram rei memoriam." + ], + "uri": "b10010607", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Romae" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "37 cm" + ] + }, + "sort": [ + "b10010607" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30458802", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*Z-3852 no. 1-27" + ], + "identifierV2": [ + { + "value": "*Z-3852 no. 1-27", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433107973277" + } + ], + "enumerationChronology": [ + "no. 1-27" + ], + "physicalLocation": [ + "*Z-3852" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433107973277" + ], + "idBarcode": [ + "33433107973277" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 27 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*Z-3852 no. 000001-27" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10010675", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Description based on: No. 2 (1975).", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "English or Spanish.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "American literature", + "American literature -- Mexican American authors", + "American literature -- Mexican American authors -- Periodicals", + "American poetry", + "American poetry -- Mexican American authors", + "American poetry -- Mexican American authors -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Pajarito Publications." + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "19" + ], + "createdYear": [ + 19 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Flor y canto." + ], + "shelfMark": [ + "JFL 81-111" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "19" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 19 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 81-111" + }, + { + "type": "nypl:Bnumber", + "value": "10010675" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0110-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0210651" + } + ], + "idOclc": [ + "NYPG0110-S" + ], + "dateEndYear": [ + 19 + ], + "updatedAt": 1669925867950, + "publicationStatement": [ + "Albuquerque : Pajarito Publications." + ], + "identifier": [ + "urn:bnum:10010675", + "urn:oclc:NYPG0110-S", + "urn:undefined:(WaOLN)nyp0210651" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "19" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "American literature -- Mexican American authors -- Periodicals.", + "American poetry -- Mexican American authors -- Periodicals." + ], + "titleDisplay": [ + "Flor y canto." + ], + "uri": "b10010675", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Albuquerque" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10010675" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10005340", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JFL 81-111 v. 2-5 1975-78" + ], + "identifierV2": [ + { + "value": "JFL 81-111 v. 2-5 1975-78", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005304187" + } + ], + "enumerationChronology": [ + "v. 2-5 1975-78" + ], + "physicalLocation": [ + "JFL 81-111" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005304187" + ], + "idBarcode": [ + "33433005304187" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 5 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFL 81-111 v. 000002-5 1975-78" + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011031", + "_score": null, + "_source": { + "extent": [ + "v. ill." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "State universities and colleges", + "State universities and colleges -- United States", + "State universities and colleges -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 999 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "AASCU studies." + ], + "shelfMark": [ + "JLM 81-389" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "American Association of State Colleges and Universities." + ], + "createdString": [ + "999" + ], + "idLccn": [ + "72621307" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 999 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLM 81-389" + }, + { + "type": "nypl:Bnumber", + "value": "10011031" + }, + { + "type": "bf:Lccn", + "value": "72621307" + }, + { + "type": "nypl:Oclc", + "value": "7994181" + }, + { + "type": "nypl:Oclc", + "value": "7994181" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0111-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211007" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)7994181" + } + ], + "idOclc": [ + "7994181", + "NYPG0111-S" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1669918566353, + "publicationStatement": [ + "[Washington]" + ], + "identifier": [ + "urn:bnum:10011031", + "urn:lccn:72621307", + "urn:oclc:7994181", + "urn:oclc:NYPG0111-S", + "urn:undefined:(WaOLN)nyp0211007", + "urn:undefined:(OCoLC)7994181" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "State universities and colleges -- United States -- Periodicals." + ], + "titleDisplay": [ + "AASCU studies." + ], + "uri": "b10011031", + "lccClassification": [ + "LB2329.5.A43" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Washington]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "A. A. S. C. U. studies." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10011031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540542", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JLM 81-389 1970-1974" + ], + "identifierV2": [ + { + "value": "JLM 81-389 1970-1974", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017529995" + } + ], + "enumerationChronology": [ + "1970-1974" + ], + "physicalLocation": [ + "JLM 81-389" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433017529995" + ], + "idBarcode": [ + "33433017529995" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJLM 81-389 1970-001974" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011036", + "_score": null, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Numbering", + "label": "Vols. for 1980- called 1st- annual supplement.", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Continues: Equal employment opportunity court cases, ISSN 0272-278x, issued by: United States. Civil Service Commission. Bureau of Intergovernmental Personnel Programs. (Earlier title cataloged as monograph. See entry under: United States. Civil Service Commission. Bureau of Intergovernmental Personnel Programs).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Discrimination in employment", + "Discrimination in employment -- Digests", + "Discrimination in employment -- Digests -- United States", + "Discrimination in employment -- Digests -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "U.S. Office of Personnel Management, Office of Intergovernmental Programs : For sale by the Supt. of Docs., U.S. G.P.O." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 999 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Equal employment opportunity court cases." + ], + "shelfMark": [ + "JLM 81-385" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "999" + ], + "idLccn": [ + "80647817" + ], + "seriesStatement": [ + "OIPP" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "United States. Office of Intergovernmental Personnel Programs." + ], + "dateStartYear": [ + 999 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLM 81-385" + }, + { + "type": "nypl:Bnumber", + "value": "10011036" + }, + { + "type": "bf:Lccn", + "value": "80647817" + }, + { + "type": "nypl:Oclc", + "value": "6784164" + }, + { + "type": "nypl:Oclc", + "value": "6784164" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0116-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0011050" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000038" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)6784164" + }, + { + "type": "bf:Identifier", + "value": "RCON-EPA" + } + ], + "idOclc": [ + "6784164", + "NYPG0116-S" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1670012393617, + "publicationStatement": [ + "Washington : U.S. Office of Personnel Management, Office of Intergovernmental Programs : For sale by the Supt. of Docs., U.S. G.P.O." + ], + "identifier": [ + "urn:bnum:10011036", + "urn:lccn:80647817", + "urn:oclc:6784164", + "urn:oclc:NYPG0116-S", + "urn:undefined:(WaOLN)nyp0011050", + "urn:undefined:(WaOLN)nyp0000038", + "urn:undefined:(OCoLC)6784164", + "urn:undefined:RCON-EPA" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Discrimination in employment -- Digests -- United States -- Periodicals." + ], + "titleDisplay": [ + "Equal employment opportunity court cases." + ], + "uri": "b10011036", + "lccClassification": [ + "PAR" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Washington" + ], + "titleAlt": [ + "Equal employment opportunity court cases" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10011036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540547", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JLM 81-385 1980" + ], + "identifierV2": [ + { + "value": "JLM 81-385 1980", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433017529912" + } + ], + "enumerationChronology": [ + "1980" + ], + "physicalLocation": [ + "JLM 81-385" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433017529912" + ], + "idBarcode": [ + "33433017529912" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJLM 81-385 001980" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011041", + "_score": null, + "_source": { + "extent": [ + "v. ill., ports." + ], + "note": [ + { + "noteType": "Supplement", + "label": "Supplement accompany some issues.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Journalism", + "Journalism -- Periodicals" + ], + "numItemDatesParsed": [ + 9 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 9 + ], + "createdYear": [ + 999 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bulletin." + ], + "shelfMark": [ + "M-10 3102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "American Society of Newspaper Editors." + ], + "createdString": [ + "999" + ], + "idLccn": [ + "59037860 //r82" + ], + "idIssn": [ + "0003-1178" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 999 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "M-10 3102" + }, + { + "type": "nypl:Bnumber", + "value": "10011041" + }, + { + "type": "bf:Issn", + "value": "0003-1178" + }, + { + "type": "bf:Lccn", + "value": "59037860 //r82" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0120-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0011055" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000039" + } + ], + "idOclc": [ + "NYPG0120-S" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1675264982433, + "publicationStatement": [ + "Easton, Pa. [etc.]" + ], + "identifier": [ + "urn:bnum:10011041", + "urn:issn:0003-1178", + "urn:lccn:59037860 //r82", + "urn:oclc:NYPG0120-S", + "urn:undefined:(WaOLN)nyp0011055", + "urn:undefined:(WaOLN)nyp0000039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Journalism -- Periodicals." + ], + "titleDisplay": [ + "Bulletin." + ], + "uri": "b10011041", + "lccClassification": [ + "PN4700 .A58" + ], + "numItems": [ + 9 + ], + "numAvailable": [ + 9 + ], + "placeOfPublication": [ + "Easton, Pa. [etc.]" + ], + "titleAlt": [ + "The Bulletin of the American Society of Newspaper Editors" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10011041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 9, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "uri": "i11901117", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676884" + } + ], + "enumerationChronology": [ + "nos. 601-629 Jan. 1977-Jan. 1980" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676884" + ], + "idBarcode": [ + "33433010676884" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1977", + "lte": "1980" + } + ], + "enumerationChronology_sort": [ + " -1977" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 601-629 Jan. 1977-Jan. 001980" + }, + "sort": [ + " -1977" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "uri": "i11901116", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 574-600 1974-76" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 574-600 1974-76", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676876" + } + ], + "enumerationChronology": [ + "nos. 574-600 1974-76" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676876" + ], + "idBarcode": [ + "33433010676876" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1974", + "lte": "1976" + } + ], + "enumerationChronology_sort": [ + " -1974" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 574-600 1974-000076" + }, + "sort": [ + " -1974" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "uri": "i11901115", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 547-57 1971-73" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 547-57 1971-73", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676868" + } + ], + "enumerationChronology": [ + "nos. 547-57 1971-73" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676868" + ], + "idBarcode": [ + "33433010676868" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1971", + "lte": "1973" + } + ], + "enumerationChronology_sort": [ + " -1971" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 547-57 1971-000073" + }, + "sort": [ + " -1971" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i11901114", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 515-546 1968-70" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 515-546 1968-70", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676850" + } + ], + "enumerationChronology": [ + "nos. 515-546 1968-70" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676850" + ], + "idBarcode": [ + "33433010676850" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1968", + "lte": "1970" + } + ], + "enumerationChronology_sort": [ + " -1968" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 515-546 1968-000070" + }, + "sort": [ + " -1968" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i11901113", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 482-514 1965-67" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 482-514 1965-67", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676843" + } + ], + "enumerationChronology": [ + "nos. 482-514 1965-67" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676843" + ], + "idBarcode": [ + "33433010676843" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1965", + "lte": "1967" + } + ], + "enumerationChronology_sort": [ + " -1965" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 482-514 1965-000067" + }, + "sort": [ + " -1965" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i11901112", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 460-481 1963-64" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 460-481 1963-64", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676835" + } + ], + "enumerationChronology": [ + "nos. 460-481 1963-64" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676835" + ], + "idBarcode": [ + "33433010676835" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1963", + "lte": "1964" + } + ], + "enumerationChronology_sort": [ + " -1963" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 460-481 1963-000064" + }, + "sort": [ + " -1963" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i11901111", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 438-459 1961-62" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 438-459 1961-62", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676827" + } + ], + "enumerationChronology": [ + "nos. 438-459 1961-62" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676827" + ], + "idBarcode": [ + "33433010676827" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1961", + "lte": "1962" + } + ], + "enumerationChronology_sort": [ + " -1961" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 438-459 1961-000062" + }, + "sort": [ + " -1961" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i11901110", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 416-437 1959-60" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 416-437 1959-60", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676819" + } + ], + "enumerationChronology": [ + "nos. 416-437 1959-60" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676819" + ], + "idBarcode": [ + "33433010676819" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1959", + "lte": "1960" + } + ], + "enumerationChronology_sort": [ + " -1959" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 416-437 1959-000060" + }, + "sort": [ + " -1959" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901109", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "M-10 3102 nos. 383-415 1956-58" + ], + "identifierV2": [ + { + "value": "M-10 3102 nos. 383-415 1956-58", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010676801" + } + ], + "enumerationChronology": [ + "nos. 383-415 1956-58" + ], + "physicalLocation": [ + "M-10 3102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010676801" + ], + "idBarcode": [ + "33433010676801" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1956", + "lte": "1958" + } + ], + "enumerationChronology_sort": [ + " -1956" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aM-10 3102 nos. 383-415 1956-000058" + }, + "sort": [ + " -1956" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011321", + "_score": null, + "_source": { + "extent": [ + "[6], 72 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "German and Hebrew.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrew language", + "Hebrew language -- Grammar", + "Aramaic language", + "Aramaic language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wittwe Vandenhöck" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1770 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Johann Ernst Fabers Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." + ], + "shelfMark": [ + "*PCQ 85-1669" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Faber, Johann Ernst, 1746-1774." + ], + "createdString": [ + "1770" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1770 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PCQ 85-1669" + }, + { + "type": "nypl:Bnumber", + "value": "10011321" + }, + { + "type": "nypl:Oclc", + "value": "NYPG012000281-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01213287" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211293" + } + ], + "idOclc": [ + "NYPG012000281-B" + ], + "updatedAt": 1692324002636, + "publicationStatement": [ + "Göttingen : Wittwe Vandenhöck, 1770." + ], + "identifier": [ + "urn:bnum:10011321", + "urn:oclc:NYPG012000281-B", + "urn:undefined:NNSZ01213287", + "urn:undefined:(WaOLN)nyp0211293" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1770" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrew language -- Grammar.", + "Aramaic language -- Grammar." + ], + "titleDisplay": [ + "Johann Ernst Fabers Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." + ], + "uri": "b10011321", + "numItems": [ + 1 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Göttingen" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." + ], + "dimensions": [ + "19cm." + ] + }, + "sort": [ + "b10011321" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14747226", + "status": [ + { + "id": "status:k", + "label": "Check with staff" + } + ], + "status_packed": [ + "status:k||Check with staff" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:maf98", + "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf98||Schwarzman Building M2 - Dorot Jewish Division Room 111" + ], + "shelfMark": [ + "**P-*PCQ 85-1669" + ], + "identifierV2": [ + { + "value": "**P-*PCQ 85-1669", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433089858876" + } + ], + "physicalLocation": [ + "**P-*PCQ 85-1669" + ], + "m2CustomerCode": [ + "XH" + ], + "identifier": [ + "urn:barcode:33433089858876" + ], + "idBarcode": [ + "33433089858876" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:a", + "label": "By appointment only" + } + ], + "accessMessage_packed": [ + "accessMessage:a||By appointment only" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a**P-*PCQ 85-001669" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10011751", + "_score": null, + "_source": { + "extent": [ + "v." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Results of a survey of RMA member banks.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "-1987." + ], + "subjectLiteral_exploded": [ + "Robert Morris Associates", + "Robert Morris Associates -- Periodicals", + "Bank loans", + "Bank loans -- United States", + "Bank loans -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Robert Morris Associates." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 198 + ], + "dateEndString": [ + "1987" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Report on domestic and international loan charge-offs." + ], + "shelfMark": [ + "JLM 81-449" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Robert Morris Associates." + ], + "createdString": [ + "198" + ], + "idLccn": [ + "80640293" + ], + "idIssn": [ + "0196-724X" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 198 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLM 81-449" + }, + { + "type": "nypl:Bnumber", + "value": "10011751" + }, + { + "type": "bf:Issn", + "value": "0196-724X" + }, + { + "type": "bf:Lccn", + "value": "80640293" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0129-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0211718" + } + ], + "idOclc": [ + "NYPG0129-S" + ], + "dateEndYear": [ + 1987 + ], + "updatedAt": 1670259686970, + "publicationStatement": [ + "Philadelphia, Robert Morris Associates." + ], + "identifier": [ + "urn:bnum:10011751", + "urn:issn:0196-724X", + "urn:lccn:80640293", + "urn:oclc:NYPG0129-S", + "urn:undefined:(WaOLN)nyp0211718" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "198" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Robert Morris Associates -- Periodicals.", + "Bank loans -- United States -- Periodicals." + ], + "titleDisplay": [ + "Report on domestic and international loan charge-offs." + ], + "uri": "b10011751", + "lccClassification": [ + "HG1642.U5 R58a" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Philadelphia" + ], + "titleAlt": [ + "Report on domestic and international loan charge-offs" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10011751" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540558", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JLM 81-449 1978-1983, 1987." + ], + "identifierV2": [ + { + "value": "JLM 81-449 1978-1983, 1987.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433019908379" + } + ], + "enumerationChronology": [ + "1978-1983, 1987." + ], + "physicalLocation": [ + "JLM 81-449" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433019908379" + ], + "idBarcode": [ + "33433019908379" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJLM 81-449 1978-1983, 1987." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10012379", + "_score": null, + "_source": { + "extent": [ + "712 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "A service book of the Armenian church.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In classical Armenian (Grabar)", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Armenian Church", + "Armenian Church -- Liturgy" + ], + "publisherLiteral": [ + "Tpeal hramanaw Teaṛn Zakʻariay azgasēr ev barekarg Patriargi" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "createdYear": [ + 1795 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kargavorutʻyun Hasarakatsʻ Aghotʻitsʻ Hayastaneaytsʻ Ekeghetsʻwoy." + ], + "shelfMark": [ + "*ONN 86-1887" + ], + "creatorLiteral": [ + "Armenian Church." + ], + "createdString": [ + "1795" + ], + "dateStartYear": [ + 1795 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONN 86-1887" + }, + { + "type": "nypl:Bnumber", + "value": "10012379" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01314364" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0212344" + } + ], + "updatedAt": 1654794066679, + "publicationStatement": [ + "Kostandnupolis : Tpeal hramanaw Teaṛn Zakʻariay azgasēr ev barekarg Patriargi, 1795." + ], + "identifier": [ + "urn:bnum:10012379", + "urn:undefined:NNSZ01314364", + "urn:undefined:(WaOLN)nyp0212344" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1795" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Armenian Church -- Liturgy." + ], + "titleDisplay": [ + "Kargavorutʻyun Hasarakatsʻ Aghotʻitsʻ Hayastaneaytsʻ Ekeghetsʻwoy." + ], + "uri": "b10012379", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kostandnupolis" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "17 cm." + ] + }, + "sort": [ + "b10012379" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10012379-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Kargavorutʻyun+Hasarakatsʻ+Aghotʻitsʻ+Hayastaneaytsʻ+Ekeghetsʻwoy.&Site=SASRB&CallNumber=*ONN+86-1887+(Locked+cage)&Author=Armenian+Church.&ItemPlace=Kostandnupolis+:&ItemPublisher=Tpeal+hramanaw+Teaṛn+Zakʻariay+azgasēr+ev+barekarg+Patriargi,&Date=1795.&ItemInfo3=https://catalog.nypl.org/record=b10012379&ReferenceNumber=b10012379x&ItemNumber=33433057787578&ItemISxN=i125405972&Genre=Book-text&Location=Schwarzman+Rare+Book+Division", + "label": "Request access to this item in the Schwarzman Rare Books Collection" + } + ], + "shelfMark_sort": "bi10012379-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540597", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1108", + "label": "Rare Book Division" + } + ], + "owner_packed": [ + "orgs:1108||Rare Book Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } + ], + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + ], + "shelfMark": [ + "*ONN 86-1887" + ], + "identifierV2": [ + { + "value": "*ONN 86-1887", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057787578" + } + ], + "physicalLocation": [ + "*ONN 86-1887" + ], + "identifier": [ + "urn:barcode:33433057787578" + ], + "idBarcode": [ + "33433057787578" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Kargavorutʻyun+Hasarakatsʻ+Aghotʻitsʻ+Hayastaneaytsʻ+Ekeghetsʻwoy.&Site=SASRB&CallNumber=*ONN+86-1887+(Locked+cage)&Author=Armenian+Church.&ItemPlace=Kostandnupolis+:&ItemPublisher=Tpeal+hramanaw+Teaṛn+Zakʻariay+azgasēr+ev+barekarg+Patriargi,&Date=1795.&ItemInfo3=https://catalog.nypl.org/record=b10012379&ReferenceNumber=b10012379x&ItemNumber=33433057787578&ItemISxN=i125405972&Genre=Book-text&Location=Schwarzman+Rare+Book+Division" + ], + "shelfMark_sort": "a*ONN 86-001887" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10012504", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Description based on: Sept. 1, 1933.", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Issues for 1933-1957 called v. <16-39>.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began in 1918" + ], + "subjectLiteral_exploded": [ + "Labor unions", + "Labor unions -- Miners", + "Labor unions -- Miners -- United States", + "Labor unions -- Miners -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 16 + ], + "publisherLiteral": [ + "Districts No. 1, 7, and 9, United Mine Workers of America" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 16 + ], + "dateEndString": [ + "19" + ], + "createdYear": [ + 1918 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Anthracite tri-district news : official organ for Districts No. 1, 7, and 9, United Mine Workers of America." + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "numItemVolumesParsed": [ + 16 + ], + "createdString": [ + "1918" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "United Mine Workers of America. District No. 1.", + "United Mine Workers of America. District No. 7.", + "United Mine Workers of America. District No. 9." + ], + "dateStartYear": [ + 1918 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "TDRA+++ (Anthracite tri-district news)" + }, + { + "type": "nypl:Bnumber", + "value": "10012504" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0131-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0212468" + } + ], + "idOclc": [ + "NYPG0131-S" + ], + "dateEndYear": [ + 19 + ], + "updatedAt": 1675267526996, + "publicationStatement": [ + "Hazelton, Pa. : Districts No. 1, 7, and 9, United Mine Workers of America" + ], + "identifier": [ + "urn:bnum:10012504", + "urn:oclc:NYPG0131-S", + "urn:undefined:(WaOLN)nyp0212468" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1918" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Labor unions -- Miners -- United States -- Periodicals." + ], + "titleDisplay": [ + "Anthracite tri-district news : official organ for Districts No. 1, 7, and 9, United Mine Workers of America." + ], + "uri": "b10012504", + "numItems": [ + 16 + ], + "numAvailable": [ + 16 + ], + "placeOfPublication": [ + "Hazelton, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "57 cm." + ] + }, + "sort": [ + "b10012504" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 16, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "uri": "i12859081", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 33 (1950)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 33 (1950)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102232" + } + ], + "enumerationChronology": [ + "v. 33 (1950)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102232" + ], + "idBarcode": [ + "33433057102232" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 33, + "lte": 33 + } + ], + "dateRange": [ + { + "gte": "1950", + "lte": "1950" + } + ], + "enumerationChronology_sort": [ + " 33-1950" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000033 (1950)" + }, + "sort": [ + " 33-1950" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "uri": "i12859080", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 32 (1949)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 32 (1949)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102224" + } + ], + "enumerationChronology": [ + "v. 32 (1949)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102224" + ], + "idBarcode": [ + "33433057102224" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 32, + "lte": 32 + } + ], + "dateRange": [ + { + "gte": "1949", + "lte": "1949" + } + ], + "enumerationChronology_sort": [ + " 32-1949" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000032 (1949)" + }, + "sort": [ + " 32-1949" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "uri": "i12859079", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 30 (1947)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 30 (1947)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102216" + } + ], + "enumerationChronology": [ + "v. 30 (1947)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102216" + ], + "idBarcode": [ + "33433057102216" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "dateRange": [ + { + "gte": "1947", + "lte": "1947" + } + ], + "enumerationChronology_sort": [ + " 30-1947" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000030 (1947)" + }, + "sort": [ + " 30-1947" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "uri": "i12859078", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 29 (1946)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 29 (1946)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102208" + } + ], + "enumerationChronology": [ + "v. 29 (1946)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102208" + ], + "idBarcode": [ + "33433057102208" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "dateRange": [ + { + "gte": "1946", + "lte": "1946" + } + ], + "enumerationChronology_sort": [ + " 29-1946" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000029 (1946)" + }, + "sort": [ + " 29-1946" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "uri": "i12859077", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 28 (1945)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 28 (1945)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102190" + } + ], + "enumerationChronology": [ + "v. 28 (1945)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102190" + ], + "idBarcode": [ + "33433057102190" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "dateRange": [ + { + "gte": "1945", + "lte": "1945" + } + ], + "enumerationChronology_sort": [ + " 28-1945" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000028 (1945)" + }, + "sort": [ + " 28-1945" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "uri": "i12859076", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 27 (1944)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 27 (1944)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102182" + } + ], + "enumerationChronology": [ + "v. 27 (1944)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102182" + ], + "idBarcode": [ + "33433057102182" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "dateRange": [ + { + "gte": "1944", + "lte": "1944" + } + ], + "enumerationChronology_sort": [ + " 27-1944" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000027 (1944)" + }, + "sort": [ + " 27-1944" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "uri": "i12859075", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 26 (1943)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 26 (1943)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102174" + } + ], + "enumerationChronology": [ + "v. 26 (1943)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102174" + ], + "idBarcode": [ + "33433057102174" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ], + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "enumerationChronology_sort": [ + " 26-1943" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000026 (1943)" + }, + "sort": [ + " 26-1943" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "uri": "i12859074", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 25 (1942)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 25 (1942)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102166" + } + ], + "enumerationChronology": [ + "v. 25 (1942)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102166" + ], + "idBarcode": [ + "33433057102166" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 25 + } + ], + "dateRange": [ + { + "gte": "1942", + "lte": "1942" + } + ], + "enumerationChronology_sort": [ + " 25-1942" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000025 (1942)" + }, + "sort": [ + " 25-1942" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "uri": "i12859073", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 24 (1941)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 24 (1941)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102158" + } + ], + "enumerationChronology": [ + "v. 24 (1941)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102158" + ], + "idBarcode": [ + "33433057102158" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 24, + "lte": 24 + } + ], + "dateRange": [ + { + "gte": "1941", + "lte": "1941" + } + ], + "enumerationChronology_sort": [ + " 24-1941" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000024 (1941)" + }, + "sort": [ + " 24-1941" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "uri": "i12859072", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 23 (1940)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 23 (1940)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057102141" + } + ], + "enumerationChronology": [ + "v. 23 (1940)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057102141" + ], + "idBarcode": [ + "33433057102141" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 23, + "lte": 23 + } + ], + "dateRange": [ + { + "gte": "1940", + "lte": "1940" + } + ], + "enumerationChronology_sort": [ + " 23-1940" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000023 (1940)" + }, + "sort": [ + " 23-1940" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i12859071", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 22 (1939)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 22 (1939)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100301" + } + ], + "enumerationChronology": [ + "v. 22 (1939)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100301" + ], + "idBarcode": [ + "33433057100301" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 22, + "lte": 22 + } + ], + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "enumerationChronology_sort": [ + " 22-1939" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000022 (1939)" + }, + "sort": [ + " 22-1939" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i12859070", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 21 (1938)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 21 (1938)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100293" + } + ], + "enumerationChronology": [ + "v. 21 (1938)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100293" + ], + "idBarcode": [ + "33433057100293" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 21, + "lte": 21 + } + ], + "dateRange": [ + { + "gte": "1938", + "lte": "1938" + } + ], + "enumerationChronology_sort": [ + " 21-1938" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000021 (1938)" + }, + "sort": [ + " 21-1938" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i12859069", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 20 (1937)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 20 (1937)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100285" + } + ], + "enumerationChronology": [ + "v. 20 (1937)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100285" + ], + "idBarcode": [ + "33433057100285" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 20, + "lte": 20 + } + ], + "dateRange": [ + { + "gte": "1937", + "lte": "1937" + } + ], + "enumerationChronology_sort": [ + " 20-1937" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000020 (1937)" + }, + "sort": [ + " 20-1937" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i12859068", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 19 (1936)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 19 (1936)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100277" + } + ], + "enumerationChronology": [ + "v. 19 (1936)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100277" + ], + "idBarcode": [ + "33433057100277" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 19, + "lte": 19 + } + ], + "dateRange": [ + { + "gte": "1936", + "lte": "1936" + } + ], + "enumerationChronology_sort": [ + " 19-1936" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000019 (1936)" + }, + "sort": [ + " 19-1936" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i12859067", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 18 (1935)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 18 (1935)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100269" + } + ], + "enumerationChronology": [ + "v. 18 (1935)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100269" + ], + "idBarcode": [ + "33433057100269" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 18, + "lte": 18 + } + ], + "dateRange": [ + { + "gte": "1935", + "lte": "1935" + } + ], + "enumerationChronology_sort": [ + " 18-1935" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000018 (1935)" + }, + "sort": [ + " 18-1935" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12859066", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 17 (Jan. 5-Dec. 28, 1934)" + ], + "identifierV2": [ + { + "value": "TDRA+++ (Anthracite tri-district news) v. 17 (Jan. 5-Dec. 28, 1934)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433057100251" + } + ], + "enumerationChronology": [ + "v. 17 (Jan. 5-Dec. 28, 1934)" + ], + "physicalLocation": [ + "TDRA+++ (Anthracite tri-district news)" + ], + "recapCustomerCode": [ + "NL" + ], + "identifier": [ + "urn:barcode:33433057100251" + ], + "idBarcode": [ + "33433057100251" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "accessMessage_packed": [ + "accessMessage:o||Oversize" + ], + "volumeRange": [ + { + "gte": 17, + "lte": 17 + } + ], + "dateRange": [ + { + "gte": "1934", + "lte": "1934" + } + ], + "enumerationChronology_sort": [ + " 17-1934" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000017 (Jan. 5-Dec. 28, 1934)" + }, + "sort": [ + " 17-1934" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10012514", + "_score": null, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Genealogy", + "Clark County (Wash.)", + "Clark County (Wash.) -- Genealogy", + "Clark County (Wash.) -- Genealogy -- Periodicals", + "Washington (State)", + "Washington (State) -- Clark County", + "United States, Washington", + "United States, Washington -- Genealogy", + "United States, Washington -- Genealogy -- Periodicals" + ], + "numItemDatesParsed": [ + 25 + ], + "publisherLiteral": [ + "Clark County Genealogical Society." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 25 + ], + "createdYear": [ + 999 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Trail breakers." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "numItemVolumesParsed": [ + 25 + ], + "createdString": [ + "999" + ], + "idLccn": [ + "76641407" + ], + "idIssn": [ + "0362-0344" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Clark County Genealogical Society (Clark County, Wash.)" + ], + "dateStartYear": [ + 999 + ], + "idOclc": [ + "2441280" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APR (Clark Co., Wash.) 81-297" + }, + { + "type": "nypl:Bnumber", + "value": "10012514" + }, + { + "type": "nypl:Oclc", + "value": "2441280" + }, + { + "type": "bf:Lccn", + "value": "76641407" + }, + { + "type": "bf:Issn", + "value": "0362-0344" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)2441280" + } + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 27 No. 1 (Fall 2000)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 27 No. 2 (Winter 2001)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 27 No. 3 (Spring 2001)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 27 No. 4 (Summer 2001)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 28 No. 1-3 (Fall 2001)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 29 No. 1 (Fall 2002)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 29 No. 2 (Winter 2003)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 29 No. 3/4 (Spring 2003)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 30 No. 1 (Fall 2003)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 30 No. 2 (Winter 2004)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 30 No. 3/4 (Spring 2004)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + }, + { + "coverage": "Vol. 31-32 No. 1 (2004)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Out of Print" + }, + { + "coverage": "No. 33 (Jul. 2006 - Jun. 2007)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "status": "Bind Prep" + } + ], + "holdingStatement": [ + "2:1(Sep 1975)-33(Jun. 2006-Jun. 2007).", + "Directory (of society's officers and other sources) 1984/1985 bound with v.10 & v.11" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "APR (Clark Co., Wash.) 81-297" + } + ], + "notes": [ + "QUARTERLY", + "\"Directory\" of same society collected and bound separately under : APR (Clark Co., Wash.) 83-333.", + "ISSN number: 0362-0344" + ], + "physicalLocation": [ + "APR (Clark Co., Wash.) 81-297" + ], + "format": [ + "CURRENT IN U.S. HISTORY & GENEALOGY + HOLDINGS" + ], + "location": [ + { + "code": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "uri": "h1031662" + } + ], + "updatedAt": 1699484922764, + "publicationStatement": [ + "Vancouver, Wash., Clark County Genealogical Society." + ], + "genreForm": [ + "Periodicals." + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297", + "urn:bnum:10012514", + "urn:oclc:2441280", + "urn:lccn:76641407", + "urn:issn:0362-0344", + "urn:identifier:(OCoLC)2441280" + ], + "numCheckinCardItems": [ + 13 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Genealogy.", + "Clark County (Wash.) -- Genealogy -- Periodicals.", + "Washington (State) -- Clark County.", + "United States, Washington -- Genealogy -- Periodicals." + ], + "titleDisplay": [ + "Trail breakers." + ], + "uri": "b10012514", + "lccClassification": [ + "F897.C6 T7" + ], + "placeOfPublication": [ + "Vancouver, Wash." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Trail breakers" + ], + "dimensions": [ + "28 cm" + ] + }, + "sort": [ + "b10012514" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 25, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2006-07-01", + "lte": "2007-06-01" + } + ], + "enumerationChronology": [ + "No. 33 (Jul. 2006 - Jun. 2007)" + ], + "enumerationChronology_sort": [ + " 33-2006-07-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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": [ + " 33-2006-07-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2004-01-01", + "lte": "2004-01-01" + } + ], + "enumerationChronology": [ + "Vol. 31-32 No. 1 (2004)" + ], + "enumerationChronology_sort": [ + " 31-2004-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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": [ + " 31-2004-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2004-04-01", + "lte": "2004-04-01" + } + ], + "enumerationChronology": [ + "Vol. 30 No. 3/4 (Spring 2004)" + ], + "enumerationChronology_sort": [ + " 30-2004-04-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-9", + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "volumeRaw": [ + "Vol. 30 No. 3/4" + ] + }, + "sort": [ + " 30-2004-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2004-01-01", + "lte": "2004-01-01" + } + ], + "enumerationChronology": [ + "Vol. 30 No. 2 (Winter 2004)" + ], + "enumerationChronology_sort": [ + " 30-2004-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-8", + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "volumeRaw": [ + "Vol. 30 No. 2" + ] + }, + "sort": [ + " 30-2004-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2003-10-01", + "lte": "2003-10-01" + } + ], + "enumerationChronology": [ + "Vol. 30 No. 1 (Fall 2003)" + ], + "enumerationChronology_sort": [ + " 30-2003-10-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-11", + "volumeRange": [ + { + "gte": 30, + "lte": 30 + } + ], + "volumeRaw": [ + "Vol. 30 No. 1" + ] + }, + "sort": [ + " 30-2003-10-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 17 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2003-04-01", + "lte": "2003-04-01" + } + ], + "enumerationChronology": [ + "Vol. 29 No. 3/4 (Spring 2003)" + ], + "enumerationChronology_sort": [ + " 29-2003-04-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-7", + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "volumeRaw": [ + "Vol. 29 No. 3/4" + ] + }, + "sort": [ + " 29-2003-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 18 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2003-01-01", + "lte": "2003-01-01" + } + ], + "enumerationChronology": [ + "Vol. 29 No. 2 (Winter 2003)" + ], + "enumerationChronology_sort": [ + " 29-2003-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-6", + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "volumeRaw": [ + "Vol. 29 No. 2" + ] + }, + "sort": [ + " 29-2003-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 19 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2002-10-01", + "lte": "2002-10-01" + } + ], + "enumerationChronology": [ + "Vol. 29 No. 1 (Fall 2002)" + ], + "enumerationChronology_sort": [ + " 29-2002-10-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-5", + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "volumeRaw": [ + "Vol. 29 No. 1" + ] + }, + "sort": [ + " 29-2002-10-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 20 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-10-01", + "lte": "2001-10-01" + } + ], + "enumerationChronology": [ + "Vol. 28 No. 1-3 (Fall 2001)" + ], + "enumerationChronology_sort": [ + " 28-2001-10-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-4", + "volumeRange": [ + { + "gte": 28, + "lte": 28 + } + ], + "volumeRaw": [ + "Vol. 28 No. 1-3" + ] + }, + "sort": [ + " 28-2001-10-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 21 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-07-01", + "lte": "2001-07-01" + } + ], + "enumerationChronology": [ + "Vol. 27 No. 4 (Summer 2001)" + ], + "enumerationChronology_sort": [ + " 27-2001-07-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-3", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "Vol. 27 No. 4" + ] + }, + "sort": [ + " 27-2001-07-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 22 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-04-01", + "lte": "2001-04-01" + } + ], + "enumerationChronology": [ + "Vol. 27 No. 3 (Spring 2001)" + ], + "enumerationChronology_sort": [ + " 27-2001-04-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-2", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "Vol. 27 No. 3" + ] + }, + "sort": [ + " 27-2001-04-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2001-01-01", + "lte": "2001-01-01" + } + ], + "enumerationChronology": [ + "Vol. 27 No. 2 (Winter 2001)" + ], + "enumerationChronology_sort": [ + " 27-2001-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-1", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "Vol. 27 No. 2" + ] + }, + "sort": [ + " 27-2001-01-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 24 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2000-10-01", + "lte": "2000-10-01" + } + ], + "enumerationChronology": [ + "Vol. 27 No. 1 (Fall 2000)" + ], + "enumerationChronology_sort": [ + " 27-2000-10-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297", + "type": "bf:ShelfMark" + } + ], + "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-0", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "Vol. 27 No. 1" + ] + }, + "sort": [ + " 27-2000-10-01" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2000", + "lte": "2007" + } + ], + "enumerationChronology": [ + "v. 27-33, inc. (Fall 2000 - July 2006-June 2007)" + ], + "enumerationChronology_sort": [ + " 27-2000" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433089464600" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 27-33, inc. (Fall 2000 - July 2006-June 2007)", + "urn:barcode:33433089464600" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 27-33, inc. (Fall 2000 - July 2006-June 2007)", + "type": "bf:ShelfMark" + }, + { + "value": "33433089464600", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 27-33, inc. (Fall 2000 - July 2006-June 2007)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000027-33, inc. (Fall 2000 - July 2006-June 2007)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 27, + "lte": 33 + } + ], + "uri": "i34246372" + }, + "sort": [ + " 27-2000" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1998", + "lte": "2000" + } + ], + "enumerationChronology": [ + "v. 25-26 (Fall. 1998-Sum. 2000)" + ], + "enumerationChronology_sort": [ + " 25-1998" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433031851227" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 25-26 (Fall. 1998-Sum. 2000)", + "urn:barcode:33433031851227" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 25-26 (Fall. 1998-Sum. 2000)", + "type": "bf:ShelfMark" + }, + { + "value": "33433031851227", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 25-26 (Fall. 1998-Sum. 2000)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000025-26 (Fall. 1998-Sum. 2000)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 25, + "lte": 26 + } + ], + "uri": "i11901144" + }, + "sort": [ + " 25-1998" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1996", + "lte": "1998" + } + ], + "enumerationChronology": [ + "v. 23-24 (Fall. 1996-Sum. 1998)" + ], + "enumerationChronology_sort": [ + " 23-1996" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433031851219" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 23-24 (Fall. 1996-Sum. 1998)", + "urn:barcode:33433031851219" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 23-24 (Fall. 1996-Sum. 1998)", + "type": "bf:ShelfMark" + }, + { + "value": "33433031851219", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 23-24 (Fall. 1996-Sum. 1998)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000023-24 (Fall. 1996-Sum. 1998)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 23, + "lte": 24 + } + ], + "uri": "i11901143" + }, + "sort": [ + " 23-1996" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1994", + "lte": "1996" + } + ], + "enumerationChronology": [ + "v. 21-22 (Fall. 1994-Sum. 1996)" + ], + "enumerationChronology_sort": [ + " 21-1994" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480177" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 21-22 (Fall. 1994-Sum. 1996)", + "urn:barcode:33433062480177" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 21-22 (Fall. 1994-Sum. 1996)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480177", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 21-22 (Fall. 1994-Sum. 1996)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000021-22 (Fall. 1994-Sum. 1996)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 21, + "lte": 22 + } + ], + "uri": "i14747357" + }, + "sort": [ + " 21-1994" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1991", + "lte": "1994" + } + ], + "enumerationChronology": [ + "v. 18-20 (Fall. 1991-Sum. 1994)" + ], + "enumerationChronology_sort": [ + " 18-1991" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480169" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 18-20 (Fall. 1991-Sum. 1994)", + "urn:barcode:33433062480169" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 18-20 (Fall. 1991-Sum. 1994)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480169", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 18-20 (Fall. 1991-Sum. 1994)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000018-20 (Fall. 1991-Sum. 1994)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 18, + "lte": 20 + } + ], + "uri": "i14747356" + }, + "sort": [ + " 18-1991" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1989", + "lte": "1991" + } + ], + "enumerationChronology": [ + "v. 16-17 (1989-1991)" + ], + "enumerationChronology_sort": [ + " 16-1989" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480151" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 16-17 (1989-1991)", + "urn:barcode:33433062480151" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 16-17 (1989-1991)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480151", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 16-17 (1989-1991)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000016-17 (1989-1991)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 16, + "lte": 17 + } + ], + "uri": "i14747355" + }, + "sort": [ + " 16-1989" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1989" + } + ], + "enumerationChronology": [ + "v. 14-15 (1987-1989)" + ], + "enumerationChronology_sort": [ + " 14-1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480144" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 14-15 (1987-1989)", + "urn:barcode:33433062480144" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 14-15 (1987-1989)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480144", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 14-15 (1987-1989)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000014-15 (1987-1989)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 14, + "lte": 15 + } + ], + "uri": "i14747354" + }, + "sort": [ + " 14-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1987" + } + ], + "enumerationChronology": [ + "v. 12-13 (Fall. 1985-Sum. 1987)" + ], + "enumerationChronology_sort": [ + " 12-1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480136" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 12-13 (Fall. 1985-Sum. 1987)", + "urn:barcode:33433062480136" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 12-13 (Fall. 1985-Sum. 1987)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480136", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 12-13 (Fall. 1985-Sum. 1987)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000012-13 (Fall. 1985-Sum. 1987)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 13 + } + ], + "uri": "i14747353" + }, + "sort": [ + " 12-1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1983", + "lte": "1985" + } + ], + "enumerationChronology": [ + "v. 10-11 (1983-1985)" + ], + "enumerationChronology_sort": [ + " 10-1983" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480128" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 10-11 (1983-1985)", + "urn:barcode:33433062480128" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 10-11 (1983-1985)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480128", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 10-11 (1983-1985)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000010-11 (1983-1985)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 11 + } + ], + "uri": "i14747352" + }, + "sort": [ + " 10-1983" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1981", + "lte": "1983" + } + ], + "enumerationChronology": [ + "v. 8-9 (1981-1983)" + ], + "enumerationChronology_sort": [ + " 8-1981" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480110" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 8-9 (1981-1983)", + "urn:barcode:33433062480110" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 8-9 (1981-1983)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480110", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 8-9 (1981-1983)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000008-9 (1981-1983)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 9 + } + ], + "uri": "i14747351" + }, + "sort": [ + " 8-1981" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1978", + "lte": "1981" + } + ], + "enumerationChronology": [ + "v. 5-7 (Sep. 1978-Sum. 1981)" + ], + "enumerationChronology_sort": [ + " 5-1978" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480102" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 5-7 (Sep. 1978-Sum. 1981)", + "urn:barcode:33433062480102" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 5-7 (Sep. 1978-Sum. 1981)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480102", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 5-7 (Sep. 1978-Sum. 1981)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000005-7 (Sep. 1978-Sum. 1981)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 7 + } + ], + "uri": "i14747350" + }, + "sort": [ + " 5-1978" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "1975", + "lte": "1978" + } + ], + "enumerationChronology": [ + "v. 2-4 (1975-1978)" + ], + "enumerationChronology_sort": [ + " 2-1975" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } + ], + "holdingLocation_packed": [ + "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" + ], + "idBarcode": [ + "33433062480094" + ], + "identifier": [ + "urn:shelfmark:APR (Clark Co., Wash.) 81-297 v. 2-4 (1975-1978)", + "urn:barcode:33433062480094" + ], + "identifierV2": [ + { + "value": "APR (Clark Co., Wash.) 81-297 v. 2-4 (1975-1978)", + "type": "bf:ShelfMark" + }, + { + "value": "33433062480094", + "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 (Clark Co., Wash.) 81-297" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297 v. 2-4 (1975-1978)" + ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-297 v. 000002-4 (1975-1978)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 4 + } + ], + "uri": "i14747349" + }, + "sort": [ + " 2-1975" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10012515", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Numbering", + "label": "Feb.-June 1928 also called year 3.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "no. -123; -June 22, 1928" + ], + "subjectLiteral_exploded": [ + "Jews", + "Jews -- Periodicals" + ], + "numItemDatesParsed": [ + 1 + ], + "publisherLiteral": [ + "Jewish Graphic, Ltd." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 192 + ], + "dateEndString": [ + "1928" + ], + "title": [ + "The Jewish graphic." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZAN-*P519" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "192" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 192 + ], + "idOclc": [ + "NYPG0140-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-*P519" + }, + { + "type": "nypl:Bnumber", + "value": "10012515" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0140-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0212479" + } + ], + "dateEndYear": [ + 1928 + ], + "updatedAt": 1709140563618, + "publicationStatement": [ + "London : Jewish Graphic, Ltd." + ], + "identifier": [ + "urn:shelfmark:*ZAN-*P519", + "urn:bnum:10012515", + "urn:oclc:NYPG0140-S", + "urn:identifier:(WaOLN)nyp0212479" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "192" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews -- Periodicals." + ], + "titleDisplay": [ + "The Jewish graphic." + ], + "uri": "b10012515", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "42 cm." + ] + }, + "sort": [ + "b10012515" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "dateRange": [ + { + "gte": "1927", + "lte": "1928" + } + ], + "enumerationChronology": [ + "Sept. 23, 1927-Jun 22, 1928 (Inc.)" + ], + "enumerationChronology_sort": [ + " -1927" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "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.)" + ], + "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" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013199", + "_score": null, + "_source": { + "extent": [ + "1 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Volume 1 only. No more published.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Administrative agencies", + "Administrative agencies -- Argentina", + "Argentina", + "Argentina -- Politics and government", + "Argentina -- Politics and government -- 1983-" + ], + "publisherLiteral": [ + "Asociación Argentina de Egresados en Ciencias Políticas," + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "dateEndString": [ + "999" + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "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]" + ], + "shelfMark": [ + "JLK 86-206" + ], + "creatorLiteral": [ + "Fardeso, José Horacio." + ], + "createdString": [ + "1985" + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLK 86-206" + }, + { + "type": "nypl:Bnumber", + "value": "10013199" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415604" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213163" + } + ], + "dateEndYear": [ + 999 + ], + "updatedAt": 1636094229907, + "publicationStatement": [ + "Buenos Aires : Asociación Argentina de Egresados en Ciencias Políticas, 1985." + ], + "identifier": [ + "urn:bnum:10013199", + "urn:undefined:NNSZ01415604", + "urn:undefined:(WaOLN)nyp0213163" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Administrative agencies -- Argentina.", + "Argentina -- Politics and government -- 1983-" + ], + "titleDisplay": [ + "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] / José Horacio Fardeso." + ], + "uri": "b10013199", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Buenos Aires :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10013199" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433063254944" + ], + "physicalLocation": [ + "JLK 86-206" + ], + "shelfMark_sort": "aJLK 86-206 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i14747397", + "shelfMark": [ + "JLK 86-206 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLK 86-206 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433063254944" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433063254944" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013321", + "_score": null, + "_source": { + "extent": [ + "5 v. in 1." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Logic", + "Logic -- Early works to 1800" + ], + "publisherLiteral": [ + "Minerva," + ], + "language": [ + { + "id": "lang:lat", + "label": "Latin" + } + ], + "dateEndString": [ + "1597" + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Problemata logica. Marburg 1597." + ], + "shelfMark": [ + "JFB 86-112" + ], + "creatorLiteral": [ + "Goclenius, Rudolph, 1547-1628." + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "68110653" + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 86-112" + }, + { + "type": "nypl:Bnumber", + "value": "10013321" + }, + { + "type": "bf:Lccn", + "value": "68110653" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415735" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213284" + } + ], + "dateEndYear": [ + 1597 + ], + "updatedAt": 1636123523500, + "publicationStatement": [ + "Frankfurt, Minerva, 1967." + ], + "identifier": [ + "urn:bnum:10013321", + "urn:lccn:68110653", + "urn:undefined:NNSZ01415735", + "urn:undefined:(WaOLN)nyp0213284" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Logic -- Early works to 1800." + ], + "titleDisplay": [ + "Problemata logica. Marburg 1597." + ], + "uri": "b10013321", + "lccClassification": [ + "BC60 .G62" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Frankfurt," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "15 cm." + ] + }, + "sort": [ + "b10013321" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005151620" + ], + "physicalLocation": [ + "JFB 86-112" + ], + "shelfMark_sort": "aJFB 86-000112", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10006744", + "shelfMark": [ + "JFB 86-112" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 86-112" + }, + { + "type": "bf:Barcode", + "value": "33433005151620" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005151620" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013473", + "_score": null, + "_source": { + "extent": [ + "155 p. : ill. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Perspective" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "M. Tavernier" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1643 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "La perspective speculative, et pratique ou sont demonstrez les fondemens de cet art, & de tout ce qui en a esté enseigné jusqu'ā present ..." + ], + "shelfMark": [ + "*ZM-189" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Aleaume, Jacques, -approximately 1627." + ], + "createdString": [ + "1643" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1643 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZM-189" + }, + { + "type": "nypl:Bnumber", + "value": "10013473" + }, + { + "type": "nypl:Oclc", + "value": "NYPG014000922-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415893" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213436" + } + ], + "idOclc": [ + "NYPG014000922-B" + ], + "updatedAt": 1683684587377, + "publicationStatement": [ + "Paris : M. Tavernier, 1643." + ], + "identifier": [ + "urn:bnum:10013473", + "urn:oclc:NYPG014000922-B", + "urn:undefined:NNSZ01415893", + "urn:undefined:(WaOLN)nyp0213436" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1643" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Perspective." + ], + "titleDisplay": [ + "La perspective speculative, et pratique [microform] : ou sont demonstrez les fondemens de cet art, & de tout ce qui en a esté enseigné jusqu'ā present ... / de l'invention du feu sieur Aleaume ..." + ], + "uri": "b10013473", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10013473" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:barcode:33433090700216" + ], + "physicalLocation": [ + "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + ], + "shelfMark_sort": "a3-MBF (Aleaume, J. Perspective speculative, et pratique)", + "m2CustomerCode": [ + "XG" + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10006752", + "shelfMark": [ + "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + }, + { + "type": "bf:Barcode", + "value": "33433090700216" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433090700216" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433110386137" + ], + "physicalLocation": [ + "*ZM-189" + ], + "shelfMark_sort": "a*ZM-000189", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10006750", + "shelfMark": [ + "*ZM-189" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZM-189" + }, + { + "type": "bf:Barcode", + "value": "33433110386137" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433110386137" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013537", + "_score": null, + "_source": { + "extent": [ + "12 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Colonies. No. 10.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signatures: A⁶.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Bibliothèque nationale (France). Catalogue de l’histoire de la Révolution française", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Racially mixed people", + "Racially mixed people -- Haiti", + "Racially mixed people -- Haiti -- Early works to 1800", + "Slavery", + "Slavery -- Haiti", + "Slavery -- Haiti -- Early works to 1800", + "Haiti", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804", + "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800", + "Haiti -- Politics and government", + "Haiti -- Politics and government -- Early works to 1800", + "France", + "France -- Administration", + "France -- Administration -- Early works to 1800" + ], + "publisherLiteral": [ + "De l'Imprimerie nationale" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1791 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Opinion de Jean-François Ducos sur l'exécution provisoire du concordat, & des arrêtés de l'Assemblée coloniale confirmatifs de cet accord : imprimée par ordre de l'Assemblée nationale." + ], + "shelfMark": [ + "Sc Rare C 86-7" + ], + "creatorLiteral": [ + "Ducos, Jean François, 1765-1793." + ], + "createdString": [ + "1791" + ], + "contributorLiteral": [ + "France. Assemblée nationale constituante (1789-1791)", + "Imprimerie nationale (France), publisher." + ], + "dateStartYear": [ + 1791 + ], + "donor": [ + "Home to Harlem Project funded by the Andrew W. Mellon Foundation." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-7" + }, + { + "type": "nypl:Bnumber", + "value": "10013537" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415958" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213499" + } + ], + "updatedAt": 1654777211240, + "publicationStatement": [ + "A Paris : De l'Imprimerie nationale, 1791." + ], + "identifier": [ + "urn:bnum:10013537", + "urn:undefined:NNSZ01415958", + "urn:undefined:(WaOLN)nyp0213499" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1791" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Racially mixed people -- Haiti -- Early works to 1800.", + "Slavery -- Haiti -- Early works to 1800.", + "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800.", + "Haiti -- Politics and government -- Early works to 1800.", + "France -- Administration -- Early works to 1800." + ], + "titleDisplay": [ + "Opinion de Jean-François Ducos sur l'exécution provisoire du concordat, & des arrêtés de l'Assemblée coloniale confirmatifs de cet accord : imprimée par ordre de l'Assemblée nationale." + ], + "uri": "b10013537", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "A Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10013537" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013537-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Opinion+de+Jean-François+Ducos+sur+l'exécution+provisoire+du+concordat,+and+des+arrêtés+de+l'Assemblée+coloniale+confirmatifs+de+cet+accord+:+imprimée+par+ordre+de+l'Assemblée+nationale.&Site=SCHRB&CallNumber=Sc+Rare+C+86-7&Author=Ducos,+Jean+François,&ItemPlace=A+Paris+:&ItemPublisher=De+l'Imprimerie+nationale,&Date=1791.&ItemInfo3=https://catalog.nypl.org/record=b10013537&ReferenceNumber=b100135377&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927121&ItemISxN=i11901189x&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10013537-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901189", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-7" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-7", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927121" + } + ], + "physicalLocation": [ + "Sc Rare C 86-7" + ], + "identifier": [ + "urn:barcode:33433036927121" + ], + "idBarcode": [ + "33433036927121" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Opinion+de+Jean-François+Ducos+sur+l'exécution+provisoire+du+concordat,+and+des+arrêtés+de+l'Assemblée+coloniale+confirmatifs+de+cet+accord+:+imprimée+par+ordre+de+l'Assemblée+nationale.&Site=SCHRB&CallNumber=Sc+Rare+C+86-7&Author=Ducos,+Jean+François,&ItemPlace=A+Paris+:&ItemPublisher=De+l'Imprimerie+nationale,&Date=1791.&ItemInfo3=https://catalog.nypl.org/record=b10013537&ReferenceNumber=b100135377&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927121&ItemISxN=i11901189x&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare C 86-000007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013539", + "_score": null, + "_source": { + "extent": [ + "48 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "With a half-title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Avertissement. Quoique le titre de cet ouvrage semble announcer qu'on présentera la situation actuelle de toutes les colonies, je dois cependant prévenir le lecteur que, n'ayant en que des matériaux incomplets, j'ai été forcé pour le moment, de ne parler que de Saint-Domingue.\"--p. [2] (verso of half-title page). ", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signatures: A-C⁸.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Bibliothèque nationale (France). Catalogue de l’histoire de la Révolution française", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "France. Marine", + "France. Marine -- Early works to 1800", + "Racially mixed people", + "Racially mixed people -- Haiti", + "Racially mixed people -- Haiti -- Early works to 1800", + "Haiti", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804", + "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800", + "Haiti -- Politics and government", + "Haiti -- Politics and government -- Early works to 1800" + ], + "publisherLiteral": [ + "de le Imprimerie de L.-P. Couret, rue Christine, no. 2" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1792 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "De l'état actuel de la marine et des colonies" + ], + "shelfMark": [ + "Sc Rare C 86-4" + ], + "creatorLiteral": [ + "Brasseur." + ], + "createdString": [ + "1792" + ], + "contributorLiteral": [ + "Couret de Villeneuve, Louis-Pierre, 1749-1806" + ], + "dateStartYear": [ + 1792 + ], + "donor": [ + "Home to Harlem Project funded by the Andrew W. Mellon Foundation." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-4" + }, + { + "type": "nypl:Bnumber", + "value": "10013539" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415960" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213501" + } + ], + "updatedAt": 1654777211068, + "publicationStatement": [ + "A Paris : de le Imprimerie de L.-P. Couret, rue Christine, no. 2, 1792." + ], + "identifier": [ + "urn:bnum:10013539", + "urn:undefined:NNSZ01415960", + "urn:undefined:(WaOLN)nyp0213501" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1792" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "France. Marine -- Early works to 1800.", + "Racially mixed people -- Haiti -- Early works to 1800.", + "Haiti -- History -- Revolution, 1791-1804 -- Early works to 1800.", + "Haiti -- Politics and government -- Early works to 1800." + ], + "titleDisplay": [ + "De l'état actuel de la marine et des colonies / par M. Le Brasseur, ci-devant intendant-général de la Marine." + ], + "uri": "b10013539", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "A Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10013539" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013539-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+l'état+actuel+de+la+marine+et+des+colonies+/&Site=SCHRB&CallNumber=Sc+Rare+C+86-4&Author=Brasseur.&ItemPlace=A+Paris+:&ItemPublisher=de+le+Imprimerie+de+L.-P.+Couret,+rue+Christine,+no.+2,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013539&ReferenceNumber=b100135390&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927147&ItemISxN=i119011918&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10013539-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901191", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-4" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927147" + } + ], + "physicalLocation": [ + "Sc Rare C 86-4" + ], + "identifier": [ + "urn:barcode:33433036927147" + ], + "idBarcode": [ + "33433036927147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=De+l'état+actuel+de+la+marine+et+des+colonies+/&Site=SCHRB&CallNumber=Sc+Rare+C+86-4&Author=Brasseur.&ItemPlace=A+Paris+:&ItemPublisher=de+le+Imprimerie+de+L.-P.+Couret,+rue+Christine,+no.+2,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013539&ReferenceNumber=b100135390&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927147&ItemISxN=i119011918&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare C 86-000004" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013540", + "_score": null, + "_source": { + "extent": [ + "7 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Haiti", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804", + "Haiti -- History -- Revolution, 1791-1804 -- Sources" + ], + "publisherLiteral": [ + "De l'Impr. de P.F. Didot le jeune" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1791 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "Sc Rare C 86-3" + ], + "creatorLiteral": [ + "Saint-Domingue. Assemblée générale Commissaires." + ], + "createdString": [ + "1791" + ], + "contributorLiteral": [ + "France. Assemblée nationale législative (1791-1792)" + ], + "dateStartYear": [ + 1791 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-3" + }, + { + "type": "nypl:Bnumber", + "value": "10013540" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415961" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213502" + } + ], + "updatedAt": 1654777211240, + "publicationStatement": [ + "[Paris?] : De l'Impr. de P.F. Didot le jeune, [1791?]" + ], + "identifier": [ + "urn:bnum:10013540", + "urn:undefined:NNSZ01415961", + "urn:undefined:(WaOLN)nyp0213502" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1791" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Haiti -- History -- Revolution, 1791-1804 -- Sources." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10013540", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Paris?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10013540" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013540-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare+C+86-3&Author=Saint-Domingue.&ItemPlace=[Paris?]+:&ItemPublisher=De+l'Impr.+de+P.F.+Didot+le+jeune,&Date=[1791?]&ItemInfo3=https://catalog.nypl.org/record=b10013540&ReferenceNumber=b100135407&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927154&ItemISxN=i11901192x&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10013540-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901192", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-3" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-3", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927154" + } + ], + "physicalLocation": [ + "Sc Rare C 86-3" + ], + "identifier": [ + "urn:barcode:33433036927154" + ], + "idBarcode": [ + "33433036927154" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&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.&Site=SCHRB&CallNumber=Sc+Rare+C+86-3&Author=Saint-Domingue.&ItemPlace=[Paris?]+:&ItemPublisher=De+l'Impr.+de+P.F.+Didot+le+jeune,&Date=[1791?]&ItemInfo3=https://catalog.nypl.org/record=b10013540&ReferenceNumber=b100135407&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927154&ItemISxN=i11901192x&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare C 86-000003" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013541", + "_score": null, + "_source": { + "extent": [ + "6, [2] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Imprint from colophon.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"No. 1606\" printed to right of head-piece above caption title. ", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Decree of the National Assembly.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signed on p. 6: Louis. Et plus bas, Roland.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Last [2] p. blank.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signatures: [A]⁴ ([A]4 blank)", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suffrage", + "Suffrage -- Haiti", + "Suffrage -- Haiti -- Early works to 1800", + "Racially mixed people", + "Racially mixed people -- Civil rights", + "Racially mixed people -- Civil rights -- Haiti", + "Racially mixed people -- Civil rights -- Haiti -- Early works to 1800", + "Black people", + "Black people -- Civil rights", + "Black people -- Civil rights -- Haiti", + "Black people -- Civil rights -- Haiti -- Early works to 1800", + "France", + "France -- Administration", + "France -- Administration -- Early works to 1800", + "Haiti", + "Haiti -- Politics and government", + "Haiti -- Politics and government -- 1791-1804", + "Haiti -- Politics and government -- 1791-1804 -- Early works to 1800", + "France -- Politics and government", + "France -- Politics and government -- 1789-1799", + "France -- Politics and government -- 1789-1799 -- Early works to 1800", + "Haiti -- History", + "Haiti -- History -- Revolution, 1791-1804", + "Haiti -- History -- Revolution, 1791-1804 -- Sources" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Chez Jean-Baptiste Lefranc-Elies, imprimeur de Dép. des Deux Sèvres" + ], + "description": [ + "Concerns suffrage rights given to men of color and free Blacks in all parish assemblies in all of the French West Indian colonies, specifically Saint-Domingue." + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1792 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Loi relative aux colonies, & aux moyens d'y appaiser les troubles : Donnée à Paris, le 4 avril 1792. " + ], + "shelfMark": [ + "Sc Rare+ F 82-68" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "France." + ], + "createdString": [ + "1792" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Roland de La Platière, Jean-Marie, 1734-1793.", + "Lefranc-Elies, Jean-Baptiste, 1764-", + "France. Sovereign (1774-1792 : Louis XVI)", + "France. Assemblée nationale législative (1791-1792)" + ], + "dateStartYear": [ + 1792 + ], + "donor": [ + "Home to Harlem Project funded by the Andrew W. Mellon Foundation." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare+ F 82-68" + }, + { + "type": "nypl:Bnumber", + "value": "10013541" + }, + { + "type": "nypl:Oclc", + "value": "NYPG014000991-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415962" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213503" + } + ], + "idOclc": [ + "NYPG014000991-B" + ], + "updatedAt": 1671650997886, + "publicationStatement": [ + "A Niort : Chez Jean-Baptiste Lefranc-Elies, imprimeur de Dép. des Deux Sèvres, 1792." + ], + "identifier": [ + "urn:bnum:10013541", + "urn:oclc:NYPG014000991-B", + "urn:undefined:NNSZ01415962", + "urn:undefined:(WaOLN)nyp0213503" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1792" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suffrage -- Haiti -- Early works to 1800.", + "Racially mixed people -- Civil rights -- Haiti -- Early works to 1800.", + "Black people -- Civil rights -- Haiti -- Early works to 1800.", + "France -- Administration -- Early works to 1800.", + "Haiti -- Politics and government -- 1791-1804 -- Early works to 1800.", + "France -- Politics and government -- 1789-1799 -- Early works to 1800.", + "Haiti -- History -- Revolution, 1791-1804 -- Sources." + ], + "titleDisplay": [ + "Loi relative aux colonies, & aux moyens d'y appaiser les troubles : Donnée à Paris, le 4 avril 1792. " + ], + "uri": "b10013541", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "A Niort" + ], + "titleAlt": [ + "Loi relative aux colonies, et aux moyens d'y appaiser les troubles" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10013541" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013541-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Loi+relative+aux+colonies,+and+aux+moyens+d'y+appaiser+les+troubles+:+Donnée+à+Paris,+le+4+avril+1792.+&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-68&Author=France.&ItemPlace=A+Niort+:&ItemPublisher=Chez+Jean-Baptiste+Lefranc-Elies,+imprimeur+de+Dép.+des+Deux+Sèvres,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013541&ReferenceNumber=b100135419&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927162&ItemISxN=i119011931&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10013541-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901193", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare+ F 82-68" + ], + "identifierV2": [ + { + "value": "Sc Rare+ F 82-68", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927162" + } + ], + "physicalLocation": [ + "Sc Rare+ F 82-68" + ], + "identifier": [ + "urn:barcode:33433036927162" + ], + "idBarcode": [ + "33433036927162" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Loi+relative+aux+colonies,+and+aux+moyens+d'y+appaiser+les+troubles+:+Donnée+à+Paris,+le+4+avril+1792.+&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-68&Author=France.&ItemPlace=A+Niort+:&ItemPublisher=Chez+Jean-Baptiste+Lefranc-Elies,+imprimeur+de+Dép.+des+Deux+Sèvres,&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013541&ReferenceNumber=b100135419&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927162&ItemISxN=i119011931&Genre=Book-text&Location=Schomburg+Center" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare+ F 82-000068" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013542", + "_score": null, + "_source": { + "extent": [ + "3, [1] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signed at end: Fait à Laon, le 6 Floréal, seconde année républicaine. Signé Lefevre, Président; Lelarge, Regnault, Partis, Caignart, Tranchant, Duchateau, Clouard, administrateurs. Contresigné M. J. J. P. Leleu, Secrétaire-Général du Département.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Pour copie conforme à l'Exemplaire qui nous a été adressé, certifié par l'Administration du Département de l'Aisne.\"--p. [3].", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Imprint from colophon.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At side of title: No. 3443.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Last page blank.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Signatures: [A]²", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Enslaved persons", + "Enslaved persons -- Colonies", + "Enslaved persons -- Colonies -- France", + "Enslaved persons -- Colonies -- France -- Early works to 1800", + "Slavery", + "Slavery -- France", + "Slavery -- France -- Colonies", + "Slavery -- France -- Colonies -- Early works to 1800", + "France", + "France -- Administration", + "France -- Administration -- Early works to 1800", + "France -- Politics and government", + "France -- Politics and government -- Early works to 1800" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "De l'Imprimerie de Veuve Melleville & fils, imprimeurs du Dép. de l'Aisne" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1794 + ], + "dateEndString": [ + "1795" + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "Sc Rare+ F 82-67" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "France. Convention nationale." + ], + "createdString": [ + "1794" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Veuve Melleville & fils, printer." + ], + "dateStartYear": [ + 1794 + ], + "donor": [ + "Home to Harlem Project funded by the Andrew W. Mellon Foundation." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare+ F 82-67" + }, + { + "type": "nypl:Bnumber", + "value": "10013542" + }, + { + "type": "nypl:Oclc", + "value": "NYPG014000992-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415963" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213504" + } + ], + "idOclc": [ + "NYPG014000992-B" + ], + "dateEndYear": [ + 1795 + ], + "updatedAt": 1679123316618, + "publicationStatement": [ + "A Laon : De l'Imprimerie de Veuve Melleville & fils, imprimeurs du Dép. de l'Aisne, An 3 de la Républ. [1794 or 1795]" + ], + "identifier": [ + "urn:bnum:10013542", + "urn:oclc:NYPG014000992-B", + "urn:undefined:NNSZ01415963", + "urn:undefined:(WaOLN)nyp0213504" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1794" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Enslaved persons -- Colonies -- France -- Early works to 1800.", + "Slavery -- France -- Colonies -- Early works to 1800.", + "France -- Administration -- Early works to 1800.", + "France -- Politics and government -- Early works to 1800." + ], + "titleDisplay": [ + "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." + ], + "uri": "b10013542", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "A Laon" + ], + "titleAlt": [ + "Abolit l'esclavage des Nègres dans les colonies." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10013542" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013542-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Decret+de+la+Convention+nationale,+du+16.e+jour+de+pluviôse,+an+2.e+de+la+République+françoise,+une+and+indivisible,+qui+abolit+l'esclavage+des+Nègres+dans+les+colonies.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-67&Author=France.&ItemPlace=A+Laon+:&ItemPublisher=De+l'Imprimerie+de+Veuve+Melleville+and+fils,+imprimeurs+du+Dép.+de+l'Aisne,&Date=An+3+de+la+Républ.+[1794+or+1795]&ItemInfo3=https://catalog.nypl.org/record=b10013542&ReferenceNumber=b100135420&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927170&ItemISxN=i119011943&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10013542-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901194", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare+ F 82-67" + ], + "identifierV2": [ + { + "value": "Sc Rare+ F 82-67", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927170" + } + ], + "physicalLocation": [ + "Sc Rare+ F 82-67" + ], + "identifier": [ + "urn:barcode:33433036927170" + ], + "idBarcode": [ + "33433036927170" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Decret+de+la+Convention+nationale,+du+16.e+jour+de+pluviôse,+an+2.e+de+la+République+françoise,+une+and+indivisible,+qui+abolit+l'esclavage+des+Nègres+dans+les+colonies.&Site=SCHRB&CallNumber=Sc+Rare%2b+F+82-67&Author=France.&ItemPlace=A+Laon+:&ItemPublisher=De+l'Imprimerie+de+Veuve+Melleville+and+fils,+imprimeurs+du+Dép.+de+l'Aisne,&Date=An+3+de+la+Républ.+[1794+or+1795]&ItemInfo3=https://catalog.nypl.org/record=b10013542&ReferenceNumber=b100135420&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927170&ItemISxN=i119011943&Genre=Book-text&Location=Schomburg+Center" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare+ F 82-000067" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013544", + "_score": null, + "_source": { + "extent": [ + "[23], 334 p., 81 leaves ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Suma del privilegio\" refers to the book under title: De instauranda aethiopum salute. Running title: Tract[atus] de inst[auranda] ethiop[um] sal[ute]", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jesuits", + "Jesuits -- Missions", + "Catholic Church", + "Catholic Church -- Missions", + "Black people", + "Black people -- Missions", + "Black people -- South America", + "Slave-trade", + "Slave-trade -- Africa", + "Africa", + "Africa -- Social life and customs" + ], + "publisherLiteral": [ + "Por Francisco de Lira, impresor" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "createdYear": [ + 1627 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Naturaleza, policia sagrada i profana, costumbres i ritos, disciplina i catechismo evangelico de todos etiopes" + ], + "shelfMark": [ + "Sc Rare F 82-70" + ], + "creatorLiteral": [ + "Sandoval, Alonso de, 1576-1652." + ], + "createdString": [ + "1627" + ], + "dateStartYear": [ + 1627 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare F 82-70" + }, + { + "type": "nypl:Bnumber", + "value": "10013544" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01415965" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213506" + } + ], + "updatedAt": 1654777211068, + "publicationStatement": [ + "En Sevilla : Por Francisco de Lira, impresor, 1627." + ], + "identifier": [ + "urn:bnum:10013544", + "urn:undefined:NNSZ01415965", + "urn:undefined:(WaOLN)nyp0213506" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1627" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jesuits -- Missions.", + "Catholic Church -- Missions.", + "Black people -- Missions.", + "Black people -- South America.", + "Slave-trade -- Africa.", + "Africa -- Social life and customs." + ], + "titleDisplay": [ + "Naturaleza, policia sagrada i profana, costumbres i ritos, disciplina i catechismo evangelico de todos etiopes / por el p. Alonso, de Sandoval ..." + ], + "uri": "b10013544", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "En Sevilla" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "De instauranda aethiopum salute.", + "Tractatus de instauranda ethiopum salute." + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10013544" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013544-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Naturaleza,+policia+sagrada+i+profana,+costumbres+i+ritos,+disciplina+i+catechismo+evangelico+de+todos+etiopes+/&Site=SCHRB&CallNumber=Sc+Rare+F+82-70&Author=Sandoval,+Alonso+de,&ItemPlace=En+Sevilla+:&ItemPublisher=Por+Francisco+de+Lira,+impresor,&Date=1627.&ItemInfo3=https://catalog.nypl.org/record=b10013544&ReferenceNumber=b100135444&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927188&ItemISxN=i119011955&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10013544-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901195", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare F 82-70" + ], + "identifierV2": [ + { + "value": "Sc Rare F 82-70", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927188" + } + ], + "physicalLocation": [ + "Sc Rare F 82-70" + ], + "identifier": [ + "urn:barcode:33433036927188" + ], + "idBarcode": [ + "33433036927188" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Naturaleza,+policia+sagrada+i+profana,+costumbres+i+ritos,+disciplina+i+catechismo+evangelico+de+todos+etiopes+/&Site=SCHRB&CallNumber=Sc+Rare+F+82-70&Author=Sandoval,+Alonso+de,&ItemPlace=En+Sevilla+:&ItemPublisher=Por+Francisco+de+Lira,+impresor,&Date=1627.&ItemInfo3=https://catalog.nypl.org/record=b10013544&ReferenceNumber=b100135444&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927188&ItemISxN=i119011955&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare F 82-000070" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013584", + "_score": null, + "_source": { + "extent": [ + "6 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Seventeen \"books\" in six vols.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Colonization", + "Colonization -- History", + "Commerce", + "Commerce -- History", + "East Indies", + "America", + "America -- Discovery and exploration" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[s.n.]" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1770 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Histoire philosophique et politique des établissemens & du commerce des Européens dans les deux Indes." + ], + "shelfMark": [ + "Sc Rare C 86-2" + ], + "numItemVolumesParsed": [ + 3 + ], + "creatorLiteral": [ + "Raynal, abbé (Guillaume-Thomas-François), 1713-1796." + ], + "createdString": [ + "1770" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1770 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-2" + }, + { + "type": "nypl:Bnumber", + "value": "10013584" + }, + { + "type": "nypl:Oclc", + "value": "NYPG014001035-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01416007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213546" + } + ], + "idOclc": [ + "NYPG014001035-B" + ], + "updatedAt": 1679335512910, + "publicationStatement": [ + "A Amsterdam : [s.n.], 1770." + ], + "identifier": [ + "urn:bnum:10013584", + "urn:oclc:NYPG014001035-B", + "urn:undefined:NNSZ01416007", + "urn:undefined:(WaOLN)nyp0213546" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1770" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Colonization -- History.", + "Commerce -- History.", + "East Indies.", + "America -- Discovery and exploration." + ], + "titleDisplay": [ + "Histoire philosophique et politique des établissemens & du commerce des Européens dans les deux Indes." + ], + "uri": "b10013584", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "A Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10013584" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": 1, + "_source": { + "uri": "i10013584-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10013584-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i32196084", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-2 v. 6" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-2 v. 6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076137243" + } + ], + "enumerationChronology": [ + "v. 6" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "identifier": [ + "urn:barcode:33433076137243" + ], + "idBarcode": [ + "33433076137243" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "enumerationChronology_sort": [ + " 6-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000006" + }, + "sort": [ + " 6-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i32196083", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-2 v. 2" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-2 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433076137235" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "identifier": [ + "urn:barcode:33433076137235" + ], + "idBarcode": [ + "33433076137235" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901467", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare C 86-2 v. 1" + ], + "identifierV2": [ + { + "value": "Sc Rare C 86-2 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927279" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "identifier": [ + "urn:barcode:33433036927279" + ], + "idBarcode": [ + "33433036927279" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Histoire+philosophique+et+politique+des+établissemens+and+du+commerce+des+Européens+dans+les+deux+Indes.&Site=SCHRB&CallNumber=Sc+Rare+C+86-2&Author=Raynal,&ItemPlace=A+Amsterdam+:&ItemPublisher=[s.n.],&Date=1770.&ItemInfo3=https://catalog.nypl.org/record=b10013584&ReferenceNumber=b100135845&Genre=Book-text&Location=Schomburg+Center" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013594", + "_score": null, + "_source": { + "extent": [ + "20 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Slavery", + "Slavery -- West Indies, British", + "Sugar trade", + "Sugar trade -- West Indies, British" + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1792 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "An Address to Her Royal Highness the Dutchess of York, against the use of sugar." + ], + "shelfMark": [ + "Sc Rare+ G 86-31" + ], + "createdString": [ + "1792" + ], + "contributorLiteral": [ + "Frederica Charlotte Ulrica Catherina, Duchess of York, 1767-1820." + ], + "dateStartYear": [ + 1792 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc Rare+ G 86-31" + }, + { + "type": "nypl:Bnumber", + "value": "10013594" + }, + { + "type": "bf:Identifier", + "value": "NNSZ01416017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213556" + } + ], + "updatedAt": 1654777212731, + "publicationStatement": [ + "[London? : s.n.], 1792." + ], + "identifier": [ + "urn:bnum:10013594", + "urn:undefined:NNSZ01416017", + "urn:undefined:(WaOLN)nyp0213556" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1792" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Slavery -- West Indies, British.", + "Sugar trade -- West Indies, British." + ], + "titleDisplay": [ + "An Address to Her Royal Highness the Dutchess of York, against the use of sugar." + ], + "uri": "b10013594", + "numItems": [ + 2 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[London?" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10013594" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10013594-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York,+against+the+use+of+sugar.&Site=SCHRB&CallNumber=Sc+Rare%2b+G+86-31&ItemPlace=[London?+:&ItemPublisher=s.n.],&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013594&ReferenceNumber=b100135948&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927360&ItemISxN=i119014762&Genre=Book-text&Location=Schomburg+Center", + "label": "Request Access to Special Collections Material" + } + ], + "shelfMark_sort": "bi10013594-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i11901476", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } + ], + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "shelfMark": [ + "Sc Rare+ G 86-31" + ], + "identifierV2": [ + { + "value": "Sc Rare+ G 86-31", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433036927360" + } + ], + "physicalLocation": [ + "Sc Rare+ G 86-31" + ], + "identifier": [ + "urn:barcode:33433036927360" + ], + "idBarcode": [ + "33433036927360" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York,+against+the+use+of+sugar.&Site=SCHRB&CallNumber=Sc+Rare%2b+G+86-31&ItemPlace=[London?+:&ItemPublisher=s.n.],&Date=1792.&ItemInfo3=https://catalog.nypl.org/record=b10013594&ReferenceNumber=b100135948&ItemInfo1=USE+IN+LIBRARY&ItemNumber=33433036927360&ItemISxN=i119014762&Genre=Book-text&Location=Schomburg+Center" + ], + "shelfMark_sort": "aSc Rare+ G 86-000031" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013625", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Magazine for Filipinos.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Vol. 8, no. 1 (Oct. 1978)-" + ], + "subjectLiteral_exploded": [ + "Filipino Americans", + "Filipino Americans -- Periodicals", + "Philippines", + "Philippines -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ningas Corp." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "19" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ningas." + ], + "shelfMark": [ + "JFM 85-295" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1978" + ], + "idIssn": [ + "0164-6966" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFM 85-295" + }, + { + "type": "nypl:Bnumber", + "value": "10013625" + }, + { + "type": "bf:Issn", + "value": "0164-6966" + }, + { + "type": "nypl:Oclc", + "value": "4417290" + }, + { + "type": "nypl:Oclc", + "value": "4417290" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0144-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213587" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)4417290" + } + ], + "idOclc": [ + "4417290", + "NYPG0144-S" + ], + "dateEndYear": [ + 19 + ], + "updatedAt": 1669926832642, + "publicationStatement": [ + "New York : Ningas Corp., 1978-" + ], + "identifier": [ + "urn:bnum:10013625", + "urn:issn:0164-6966", + "urn:oclc:4417290", + "urn:oclc:NYPG0144-S", + "urn:undefined:(WaOLN)nyp0213587", + "urn:undefined:(OCoLC)4417290" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Filipino Americans -- Periodicals.", + "Philippines -- Periodicals." + ], + "titleDisplay": [ + "Ningas." + ], + "uri": "b10013625", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10013625" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10006769", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JFM 85-295 v. 8 oct 1978- ma y1979" + ], + "identifierV2": [ + { + "value": "JFM 85-295 v. 8 oct 1978- ma y1979", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005091180" + } + ], + "enumerationChronology": [ + "v. 8 oct 1978- ma y1979" + ], + "physicalLocation": [ + "JFM 85-295" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005091180" + ], + "idBarcode": [ + "33433005091180" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "enumerationChronology_sort": [ + " 8-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFM 85-295 v. 000008 oct 1978- ma y1979" + }, + "sort": [ + " 8-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013626", + "_score": null, + "_source": { + "extent": [ + "v. : ill., plans ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Edited by M. Bontempelli and P.M. Bardi.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "3 (luglio [1933])-" + ], + "subjectLiteral_exploded": [ + "Architecture", + "Architecture -- Italy", + "Architecture -- Italy -- Periodicals", + "Fascism and architecture", + "Fascism and architecture -- Italy", + "Fascism and architecture -- Italy -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[s.n.]" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1933 + ], + "dateEndString": [ + "19" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Quadrante" + ], + "shelfMark": [ + "*ZAN-M114" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1933" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Bontempelli, Massimo, 1878-1960.", + "Bardi, P. M. (Pietro Maria), 1900-" + ], + "dateStartYear": [ + 1933 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-M114" + }, + { + "type": "nypl:Bnumber", + "value": "10013626" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0145-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213588" + } + ], + "idOclc": [ + "NYPG0145-S" + ], + "uniformTitle": [ + "Quadrante (Milan, Italy)" + ], + "dateEndYear": [ + 19 + ], + "updatedAt": 1669925121957, + "publicationStatement": [ + "Milano : [s.n.], 1933-" + ], + "identifier": [ + "urn:bnum:10013626", + "urn:oclc:NYPG0145-S", + "urn:undefined:(WaOLN)nyp0213588" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1933" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Architecture -- Italy -- Periodicals.", + "Fascism and architecture -- Italy -- Periodicals." + ], + "titleDisplay": [ + "Quadrante [microform]." + ], + "uri": "b10013626", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Milano" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10013626" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30719650", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-M114 July 1933-July/Aug. 1935, inc." + ], + "identifierV2": [ + { + "value": "*ZAN-M114 July 1933-July/Aug. 1935, inc.", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433110459025" + } + ], + "enumerationChronology": [ + "July 1933-July/Aug. 1935, inc." + ], + "physicalLocation": [ + "*ZAN-M114" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433110459025" + ], + "idBarcode": [ + "33433110459025" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-M114 July 1933-July/Aug. 1935, inc." + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013628", + "_score": null, + "_source": { + "extent": [ + "13 v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Description based on: Vol. 1, no. 22 (July 21, 1977).", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 4, no. 24 repeated in numbering.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "-v. 13, no. 27 (May 22, 1989)." + ], + "subjectLiteral_exploded": [ + "Savings and loan associations", + "Savings and loan associations -- United States", + "Savings and loan associations -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 17 + ], + "publisherLiteral": [ + "National Thrift News" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 17 + ], + "createdYear": [ + 198 + ], + "dateEndString": [ + "1989" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "National thrift news" + ], + "shelfMark": [ + "*ZAN-T5363" + ], + "numItemVolumesParsed": [ + 15 + ], + "createdString": [ + "198" + ], + "idLccn": [ + "79005118 /sn" + ], + "idIssn": [ + "0193-287X" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 198 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-T5363" + }, + { + "type": "nypl:Bnumber", + "value": "10013628" + }, + { + "type": "bf:Issn", + "value": "0193-287X" + }, + { + "type": "bf:Lccn", + "value": "79005118 /sn" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0147-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213589" + } + ], + "idOclc": [ + "NYPG0147-S" + ], + "dateEndYear": [ + 1989 + ], + "updatedAt": 1675269962602, + "publicationStatement": [ + "New York : National Thrift News, -1989." + ], + "identifier": [ + "urn:bnum:10013628", + "urn:issn:0193-287X", + "urn:lccn:79005118 /sn", + "urn:oclc:NYPG0147-S", + "urn:undefined:(WaOLN)nyp0213589" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "198" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Savings and loan associations -- United States -- Periodicals." + ], + "titleDisplay": [ + "National thrift news [microform]." + ], + "uri": "b10013628", + "numItems": [ + 17 + ], + "numAvailable": [ + 17 + ], + "placeOfPublication": [ + "New York" + ], + "titleAlt": [ + "National thrift news" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "43 cm." + ] + }, + "sort": [ + "b10013628" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 17, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 16 + }, + "_score": null, + "_source": { + "uri": "i14747442", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mai82||Schwarzman Building M1 - Microforms Room 315" + ], + "shelfMark": [ + "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433062614056" + } + ], + "enumerationChronology": [ + "v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "identifier": [ + "urn:barcode:33433062614056" + ], + "idBarcode": [ + "33433062614056" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1989" + } + ], + "enumerationChronology_sort": [ + " 13-1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000013, no. 1-27 (Oct. 1988-May 22, 1989)" + }, + "sort": [ + " 13-1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 15 + }, + "_score": null, + "_source": { + "uri": "i27646161", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588832" + } + ], + "enumerationChronology": [ + "v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588832" + ], + "idBarcode": [ + "33433093588832" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1989" + } + ], + "enumerationChronology_sort": [ + " 13-1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000013, Issue 1-27, Oct. (1988) - May 22 (1989)" + }, + "sort": [ + " 13-1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 14 + }, + "_score": null, + "_source": { + "uri": "i14747445", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mai82||Schwarzman Building M1 - Microforms Room 315" + ], + "shelfMark": [ + "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433062614098" + } + ], + "enumerationChronology": [ + "v. 13 (Oct. 3, 1988-May 22, 1989)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "identifier": [ + "urn:barcode:33433062614098" + ], + "idBarcode": [ + "33433062614098" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 13, + "lte": 13 + } + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1989" + } + ], + "enumerationChronology_sort": [ + " 13-1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000013 (Oct. 3, 1988-May 22, 1989)" + }, + "sort": [ + " 13-1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 13 + }, + "_score": null, + "_source": { + "uri": "i27646727", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588709" + } + ], + "enumerationChronology": [ + "v. 12 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588709" + ], + "idBarcode": [ + "33433093588709" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "enumerationChronology_sort": [ + " 12-1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000012 Cont., Feb. 1 - Sep. 26 (1988) Incomplete" + }, + "sort": [ + " 12-1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 12 + }, + "_score": null, + "_source": { + "uri": "i14747444", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mai82||Schwarzman Building M1 - Microforms Room 315" + ], + "shelfMark": [ + "*ZAN-T5363 v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433062614080" + } + ], + "enumerationChronology": [ + "v. 12 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "identifier": [ + "urn:barcode:33433062614080" + ], + "idBarcode": [ + "33433062614080" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 12, + "lte": 12 + } + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1988" + } + ], + "enumerationChronology_sort": [ + " 12-1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000012 (cont.) (Feb. 1, 1988-Sep. 26, 1988)" + }, + "sort": [ + " 12-1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 11 + }, + "_score": null, + "_source": { + "uri": "i27646717", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588717" + } + ], + "enumerationChronology": [ + "v. 11-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588717" + ], + "idBarcode": [ + "33433093588717" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "enumerationChronology_sort": [ + " 11-1987" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000011-12, Jan. 8 (1987) - Jan. 25 (1988) Incomplete" + }, + "sort": [ + " 11-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 10 + }, + "_score": null, + "_source": { + "uri": "i14747443", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mai82||Schwarzman Building M1 - Microforms Room 315" + ], + "shelfMark": [ + "*ZAN-T5363 v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433062614072" + } + ], + "enumerationChronology": [ + "v. 11-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "identifier": [ + "urn:barcode:33433062614072" + ], + "idBarcode": [ + "33433062614072" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], + "dateRange": [ + { + "gte": "1987", + "lte": "1988" + } + ], + "enumerationChronology_sort": [ + " 11-1987" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000011-12 (Jun. 8, 1987-Jan. 25, 1988) (inc.)" + }, + "sort": [ + " 11-1987" + ] + }, + { + "_nested": { + "field": "items", + "offset": 9 + }, + "_score": null, + "_source": { + "uri": "i27646742", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588667" + } + ], + "enumerationChronology": [ + "v. 10, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588667" + ], + "idBarcode": [ + "33433093588667" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1986" + } + ], + "enumerationChronology_sort": [ + " 10-1985" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000010, Dec. 16 (1985) - Aug. 25 (1986) Incomplete" + }, + "sort": [ + " 10-1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 8 + }, + "_score": null, + "_source": { + "uri": "i27646739", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 9-10, Mar. 4 - Dec. 9 (1985)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 9-10, Mar. 4 - Dec. 9 (1985)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588675" + } + ], + "enumerationChronology": [ + "v. 9-10, Mar. 4 - Dec. 9 (1985)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588675" + ], + "idBarcode": [ + "33433093588675" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 + } + ], + "dateRange": [ + { + "gte": "1985", + "lte": "1985" + } + ], + "enumerationChronology_sort": [ + " 9-1985" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000009-10, Mar. 4 - Dec. 9 (1985)" + }, + "sort": [ + " 9-1985" + ] + }, + { + "_nested": { + "field": "items", + "offset": 7 + }, + "_score": null, + "_source": { + "uri": "i27646735", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588683" + } + ], + "enumerationChronology": [ + "v. 8-9, July 9 (1984) - Feb. 25 (1985) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588683" + ], + "idBarcode": [ + "33433093588683" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 9 + } + ], + "dateRange": [ + { + "gte": "1984", + "lte": "1985" + } + ], + "enumerationChronology_sort": [ + " 8-1984" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000008-9, July 9 (1984) - Feb. 25 (1985) Incomplete" + }, + "sort": [ + " 8-1984" + ] + }, + { + "_nested": { + "field": "items", + "offset": 6 + }, + "_score": null, + "_source": { + "uri": "i27646705", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588915" + } + ], + "enumerationChronology": [ + "v. 8, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588915" + ], + "idBarcode": [ + "33433093588915" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "dateRange": [ + { + "gte": "1983", + "lte": "1984" + } + ], + "enumerationChronology_sort": [ + " 8-1983" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000008, Oct. 10 (1983) - Jun. 25 (1984) Incomplete" + }, + "sort": [ + " 8-1983" + ] + }, + { + "_nested": { + "field": "items", + "offset": 5 + }, + "_score": null, + "_source": { + "uri": "i27646653", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 6, Feb. 1 - Sep. 20 (1982)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 6, Feb. 1 - Sep. 20 (1982)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588956" + } + ], + "enumerationChronology": [ + "v. 6, Feb. 1 - Sep. 20 (1982)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588956" + ], + "idBarcode": [ + "33433093588956" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 6, + "lte": 6 + } + ], + "dateRange": [ + { + "gte": "1982", + "lte": "1982" + } + ], + "enumerationChronology_sort": [ + " 6-1982" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000006, Feb. 1 - Sep. 20 (1982)" + }, + "sort": [ + " 6-1982" + ] + }, + { + "_nested": { + "field": "items", + "offset": 4 + }, + "_score": null, + "_source": { + "uri": "i27646643", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588824" + } + ], + "enumerationChronology": [ + "v. 5-6, Sep. 25 (1980) - Jan. 25 (1982)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588824" + ], + "idBarcode": [ + "33433093588824" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 5, + "lte": 6 + } + ], + "dateRange": [ + { + "gte": "1980", + "lte": "1982" + } + ], + "enumerationChronology_sort": [ + " 5-1980" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000005-6, Sep. 25 (1980) - Jan. 25 (1982)" + }, + "sort": [ + " 5-1980" + ] + }, + { + "_nested": { + "field": "items", + "offset": 3 + }, + "_score": null, + "_source": { + "uri": "i27646682", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 3-4, July 5 (1979) - Sep. 22 (1980)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 3-4, July 5 (1979) - Sep. 22 (1980)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588931" + } + ], + "enumerationChronology": [ + "v. 3-4, July 5 (1979) - Sep. 22 (1980)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588931" + ], + "idBarcode": [ + "33433093588931" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 3, + "lte": 4 + } + ], + "dateRange": [ + { + "gte": "1979", + "lte": "1980" + } + ], + "enumerationChronology_sort": [ + " 3-1979" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000003-4, July 5 (1979) - Sep. 22 (1980)" + }, + "sort": [ + " 3-1979" + ] + }, + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "uri": "i27646662", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 v. 1-3, July 21 (1977) - June 21 (1979)" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 v. 1-3, July 21 (1977) - June 21 (1979)", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588949" + } + ], + "enumerationChronology": [ + "v. 1-3, July 21 (1977) - June 21 (1979)" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588949" + ], + "idBarcode": [ + "33433093588949" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 3 + } + ], + "dateRange": [ + { + "gte": "1977", + "lte": "1979" + } + ], + "enumerationChronology_sort": [ + " 1-1977" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000001-3, July 21 (1977) - June 21 (1979)" + }, + "sort": [ + " 1-1977" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i27646732", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588691" + } + ], + "enumerationChronology": [ + "Oct. 3 (1988) - May 22 (1989) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588691" + ], + "idBarcode": [ + "33433093588691" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1988", + "lte": "1989" + } + ], + "enumerationChronology_sort": [ + " -1988" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 Oct. 3 (1988) - May 22 (1989) Incomplete" + }, + "sort": [ + " -1988" + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "uri": "i27646689", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete" + ], + "identifierV2": [ + { + "value": "*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093588923" + } + ], + "enumerationChronology": [ + "Sep. 27 (1982) - Sep. 26 (1983) Incomplete" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433093588923" + ], + "idBarcode": [ + "33433093588923" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "dateRange": [ + { + "gte": "1982", + "lte": "1983" + } + ], + "enumerationChronology_sort": [ + " -1982" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-T5363 Sep. 27 (1982) - Sep. 26 (1983) Incomplete" + }, + "sort": [ + " -1982" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013630", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Music", + "Music -- Periodicals", + "Music, Latvian", + "Music, Latvian -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Latvijas muziku biedrība" + ], + "language": [ + { + "id": "lang:lav", + "label": "Latvian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "19" + ], + "createdYear": [ + 19 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Latvijas muzikis" + ], + "shelfMark": [ + "*ZAN-*Q1241" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "19" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Latvijas muziku biedrība." + ], + "dateStartYear": [ + 19 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-*Q1241" + }, + { + "type": "nypl:Bnumber", + "value": "10013630" + }, + { + "type": "nypl:Oclc", + "value": "NYPG0149-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213591" + } + ], + "idOclc": [ + "NYPG0149-S" + ], + "dateEndYear": [ + 19 + ], + "updatedAt": 1670258371750, + "publicationStatement": [ + "Riga : Latvijas muziku biedrība" + ], + "identifier": [ + "urn:bnum:10013630", + "urn:oclc:NYPG0149-S", + "urn:undefined:(WaOLN)nyp0213591" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "19" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Music -- Periodicals.", + "Music, Latvian -- Periodicals." + ], + "titleDisplay": [ + "Latvijas muzikis [microform]." + ], + "uri": "b10013630", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Riga" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10013630" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30780148", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZAN-*Q1241 1929-May 1934" + ], + "identifierV2": [ + { + "value": "*ZAN-*Q1241 1929-May 1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433110389370" + } + ], + "enumerationChronology": [ + "1929-May 1934" + ], + "physicalLocation": [ + "*ZAN-*Q1241" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433110389370" + ], + "idBarcode": [ + "33433110389370" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZAN-*Q1241 1929-May 001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10013632", + "_score": null, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "1-" + ], + "subjectLiteral_exploded": [ + "American poetry", + "American poetry -- Women authors", + "American poetry -- Women authors -- Periodicals" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Brainchild Collective" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "9999" + ], + "createdYear": [ + 999 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brainchild." + ], + "shelfMark": [ + "JFK 81-88" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "999" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brainchild Collective (Springfield, Ill.)" + ], + "dateStartYear": [ + 999 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 81-88" + }, + { + "type": "nypl:Bnumber", + "value": "10013632" + }, + { + "type": "nypl:Oclc", + "value": "NYPG015-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0213593" + } + ], + "idOclc": [ + "NYPG015-S" + ], + "dateEndYear": [ + 9999 + ], + "updatedAt": 1670011705835, + "publicationStatement": [ + "[Springfield, Ill. : Brainchild Collective, 197?- ]" + ], + "identifier": [ + "urn:bnum:10013632", + "urn:oclc:NYPG015-S", + "urn:undefined:(WaOLN)nyp0213593" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "999" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "American poetry -- Women authors -- Periodicals." + ], + "titleDisplay": [ + "Brainchild." + ], + "uri": "b10013632", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Springfield, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10013632" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10006770", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "JFK 81-88 v. 2-4" + ], + "identifierV2": [ + { + "value": "JFK 81-88 v. 2-4", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005347897" + } + ], + "enumerationChronology": [ + "v. 2-4" + ], + "physicalLocation": [ + "JFK 81-88" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005347897" + ], + "idBarcode": [ + "33433005347897" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 4 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFK 81-88 v. 000002-4" + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:02 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "293675", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"lte\":1800}}},{\"range\":{\"dateEndYear\":{\"lte\":1800}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 44 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 2, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-e95f6837773f6991b91fe23ccd1d6d77.json b/test/fixtures/query-e95f6837773f6991b91fe23ccd1d6d77.json new file mode 100644 index 00000000..de5c68ce --- /dev/null +++ b/test/fixtures/query-e95f6837773f6991b91fe23ccd1d6d77.json @@ -0,0 +1,11694 @@ +{ + "body": { + "took": 490, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 20014165, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000002", + "_score": null, + "_source": { + "extent": [ + "ix, 368 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Contributions in German and Italian.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Dante Alighieri, 1265-1321", + "Dante Alighieri, 1265-1321 -- Criticism and interpretation", + "Gmelin, Hermann, 1900-1958" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Stauffenburg" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1985 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1985" + ], + "idLccn": [ + "86124252" + ], + "seriesStatement": [ + "Romanica et comparatistica ; Bd. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gmelin, Hermann, 1900-1958.", + "Baum, Richard.", + "Hirdt, Willi." + ], + "dateStartYear": [ + 1985 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-3252" + }, + { + "type": "nypl:Bnumber", + "value": "10000002" + }, + { + "type": "bf:Isbn", + "value": "3923721544" + }, + { + "type": "bf:Lccn", + "value": "86124252" + }, + { + "type": "nypl:Oclc", + "value": "NYPGNYPG-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200001" + } + ], + "idOclc": [ + "NYPGNYPG-B" + ], + "updatedAt": 1687402640360, + "publicationStatement": [ + "Tübingen : Stauffenburg, c1985." + ], + "identifier": [ + "urn:bnum:10000002", + "urn:isbn:3923721544", + "urn:lccn:86124252", + "urn:oclc:NYPGNYPG-B", + "urn:undefined:(WaOLN)nyp0200001" + ], + "idIsbn": [ + "3923721544" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", + "Gmelin, Hermann, 1900-1958." + ], + "titleDisplay": [ + "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." + ], + "uri": "b10000002", + "lccClassification": [ + "PQ4390 .D274 1985" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tübingen" + ], + "titleAlt": [ + "Dante Alighieri neunzehnhundertfünfundachtzig." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "3923721544" + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000002" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFE 86-3252" + ], + "identifierV2": [ + { + "value": "JFE 86-3252", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433046113795" + } + ], + "physicalLocation": [ + "JFE 86-3252" + ], + "m2CustomerCode": [ + "XF" + ], + "identifier": [ + "urn:barcode:33433046113795" + ], + "idBarcode": [ + "33433046113795" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFE 86-003252" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000003", + "_score": null, + "_source": { + "extent": [ + "199 p. : col. ill. maps ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hebrides (Scotland)", + "Hebrides (Scotland) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Constable" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1989 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Scottish islands" + ], + "shelfMark": [ + "JFF 89-526" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Waite, Charlie." + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "gb 89012970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "donor": [ + "Gift of the Drue Heinz Book Fund for English Literature" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFF 89-526" + }, + { + "type": "nypl:Bnumber", + "value": "10000003" + }, + { + "type": "bf:Isbn", + "value": "0094675708 :" + }, + { + "type": "bf:Lccn", + "value": "gb 89012970" + }, + { + "type": "nypl:Oclc", + "value": "NYPGUKBPGP8917-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200002" + } + ], + "idOclc": [ + "NYPGUKBPGP8917-B" + ], + "updatedAt": 1686707689781, + "publicationStatement": [ + "London : Constable, 1989." + ], + "identifier": [ + "urn:bnum:10000003", + "urn:isbn:0094675708 :", + "urn:lccn:gb 89012970", + "urn:oclc:NYPGUKBPGP8917-B", + "urn:undefined:(WaOLN)nyp0200002" + ], + "idIsbn": [ + "0094675708 " + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hebrides (Scotland) -- Pictorial works." + ], + "titleDisplay": [ + "Scottish islands / Charlie Waite." + ], + "uri": "b10000003", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "0094675708" + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000003" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783780", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "shelfMark": [ + "JFF 89-526" + ], + "identifierV2": [ + { + "value": "JFF 89-526", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433050409147" + } + ], + "physicalLocation": [ + "JFF 89-526" + ], + "m2CustomerCode": [ + "XA" + ], + "identifier": [ + "urn:barcode:33433050409147" + ], + "idBarcode": [ + "33433050409147" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "aJFF 89-000526" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000004", + "_score": null, + "_source": { + "extent": [ + "23, 216 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1956.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mutaṟkuṟaḷ uvamai." + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kothandapani Pillai, K., 1896-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "74915265" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1247" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" + }, + { + "type": "nypl:Bnumber", + "value": "10000004" + }, + { + "type": "bf:Lccn", + "value": "74915265" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100001" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200003" + } + ], + "idOclc": [ + "NYPG001000001-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tirunelvēli, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1965." + ], + "identifier": [ + "urn:bnum:10000004", + "urn:lccn:74915265", + "urn:oclc:NYPG001000001-B", + "urn:undefined:NNSZ00100001", + "urn:undefined:(WaOLN)nyp0200003" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Mutaṟkuṟaḷ uvamai. Āciriyar Ku. Kōtaṇṭapāṇi Piḷḷai." + ], + "uri": "b10000004", + "lccClassification": [ + "PL4758.9.T5 K6 1965" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000004" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783781", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1934" + ], + "identifierV2": [ + { + "value": "*OLB 84-1934", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301556" + } + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301556" + ], + "idBarcode": [ + "33433061301556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001934" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000005", + "_score": null, + "_source": { + "extent": [ + "1 score (43 p.) + 1 part (12 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Acc. arr. for piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Soch. 22\"--Caption.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: 11049.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Concertos (Violin)", + "Concertos (Violin) -- Solo with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muzyka" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" + ], + "shelfMark": [ + "JMF 83-336" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Wieniawski, Henri, 1835-1880." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-336" + }, + { + "type": "nypl:Bnumber", + "value": "10000005" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000001-C" + }, + { + "type": "bf:Identifier", + "value": "11049. Muzyka" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100551" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200004" + } + ], + "idOclc": [ + "NYPG001000001-C" + ], + "uniformTitle": [ + "Concertos, violin, orchestra, no. 2, op. 22, D minor; arranged" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Moskva : Muzyka, 1980." + ], + "identifier": [ + "urn:bnum:10000005", + "urn:oclc:NYPG001000001-C", + "urn:undefined:11049. Muzyka", + "urn:undefined:NNSZ00100551", + "urn:undefined:(WaOLN)nyp0200004" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Concertos (Violin) -- Solo with piano." + ], + "titleDisplay": [ + "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom / G. Ven︠i︡avskiĭ ; klavir." + ], + "uri": "b10000005", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Moskva" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Concertos, no. 2, op. 22" + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10000005" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942022", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-336" + ], + "identifierV2": [ + { + "value": "JMF 83-336", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032711909" + } + ], + "physicalLocation": [ + "JMF 83-336" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032711909" + ], + "idBarcode": [ + "33433032711909" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000336" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000006", + "_score": null, + "_source": { + "extent": [ + "227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The reconstruction of religious thought in Islam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Iqbal, Muhammad, Sir, 1877-1938." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75962707" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Maḥmūd, ʻAbbās." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" + }, + { + "type": "nypl:Bnumber", + "value": "10000006" + }, + { + "type": "bf:Lccn", + "value": "75962707" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100002" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200005" + } + ], + "idOclc": [ + "NYPG001000002-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "al-Qāhirah, Lajnat al-Taʼlīf wa-al-Tarjamah wa-al-Nashr [1968]" + ], + "identifier": [ + "urn:bnum:10000006", + "urn:lccn:75962707", + "urn:oclc:NYPG001000002-B", + "urn:undefined:NNSZ00100002", + "urn:undefined:(WaOLN)nyp0200005" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam -- 20th century." + ], + "titleDisplay": [ + "Tajdīd al-tafkīr al-dīnī fī al-Islām, taʼlif Muhammad Iqbāl. Tarjamat ʻAbbās Maḥmūd. Rājaʻa muqaddimatahu wa-al-faṣl al-awwal minhu ʻAbd al-ʻAzīz al-Maraghī, wa-rājaʻa baqīyat al-Kitāb Mahdī ʻAllām." + ], + "uri": "b10000006", + "lccClassification": [ + "BP161 .I712 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000006" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540039", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1984" + ], + "identifierV2": [ + { + "value": "*OGC 84-1984", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691665" + } + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691665" + ], + "idBarcode": [ + "33433022691665" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001984" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000007", + "_score": null, + "_source": { + "extent": [ + "14 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 7:35.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: Z.8917.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Guitar music", + "Guitar", + "Guitar -- Studies and exercises" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editio Musica" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Due studi per chitarra" + ], + "shelfMark": [ + "JMG 83-276" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Patachich, Iván." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-276" + }, + { + "type": "nypl:Bnumber", + "value": "10000007" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000002-C" + }, + { + "type": "bf:Identifier", + "value": "Z.8917. Editio Musica" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100552" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200006" + } + ], + "idOclc": [ + "NYPG001000002-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Budapest : Editio Musica, c1981." + ], + "identifier": [ + "urn:bnum:10000007", + "urn:oclc:NYPG001000002-C", + "urn:undefined:Z.8917. Editio Musica", + "urn:undefined:NNSZ00100552", + "urn:undefined:(WaOLN)nyp0200006" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Guitar music.", + "Guitar -- Studies and exercises." + ], + "titleDisplay": [ + "Due studi per chitarra / Patachich Iván." + ], + "uri": "b10000007", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Budapest" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000007" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942023", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-276" + ], + "identifierV2": [ + { + "value": "JMG 83-276", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883591" + } + ], + "physicalLocation": [ + "JMG 83-276" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883591" + ], + "idBarcode": [ + "33433032883591" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000276" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000008", + "_score": null, + "_source": { + "extent": [ + "351 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Parimaḷam Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ ciṟukataikaḷ." + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913998" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" + }, + { + "type": "nypl:Bnumber", + "value": "10000008" + }, + { + "type": "bf:Lccn", + "value": "72913998" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100003" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200007" + } + ], + "idOclc": [ + "NYPG001000003-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Parimaḷam Patippakam [1969]" + ], + "identifier": [ + "urn:bnum:10000008", + "urn:lccn:72913998", + "urn:oclc:NYPG001000003-B", + "urn:undefined:NNSZ00100003", + "urn:undefined:(WaOLN)nyp0200007" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ ciṟukataikaḷ. [Eḻutiyavar] Ci. Eṉ. Aṇṇāturai." + ], + "uri": "b10000008", + "lccClassification": [ + "PL4758.9.A5 A84" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000008" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783782", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1986" + ], + "identifierV2": [ + { + "value": "*OLB 84-1986", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301689" + } + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301689" + ], + "idBarcode": [ + "33433061301689" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001986" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000009", + "_score": null, + "_source": { + "extent": [ + "30 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Edition Peters Nr. 5489.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: E.P. 13028.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Edition Peters ; C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miniaturen II : 13 kleine Klavierstücke" + ], + "shelfMark": [ + "JMG 83-278" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Golle, Jürgen, 1942-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-278" + }, + { + "type": "nypl:Bnumber", + "value": "10000009" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000003-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters Nr. 5489 Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "E.P. 13028. Edition Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100553" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200008" + } + ], + "idOclc": [ + "NYPG001000003-C" + ], + "uniformTitle": [ + "Miniaturen, no. 2" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Leipzig : Edition Peters ; New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000009", + "urn:oclc:NYPG001000003-C", + "urn:undefined:Edition Peters Nr. 5489 Edition Peters", + "urn:undefined:E.P. 13028. Edition Peters", + "urn:undefined:NNSZ00100553", + "urn:undefined:(WaOLN)nyp0200008" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Miniaturen II : 13 kleine Klavierstücke / Jürgen Golle." + ], + "uri": "b10000009", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig : New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen, no. 2" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000009" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942024", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-278" + ], + "identifierV2": [ + { + "value": "JMG 83-278", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883617" + } + ], + "physicalLocation": [ + "JMG 83-278" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883617" + ], + "idBarcode": [ + "33433032883617" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000278" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000010", + "_score": null, + "_source": { + "extent": [ + "110 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaikkaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācamāṇikkaṉār, Mā., 1907-1967." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "72913466" + ], + "seriesStatement": [ + "Corṇammāḷ corpoḻivu varicai, 6" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" + }, + { + "type": "nypl:Bnumber", + "value": "10000010" + }, + { + "type": "bf:Lccn", + "value": "72913466" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200009" + } + ], + "idOclc": [ + "NYPG001000004-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Aṇṇāmalainakar, Aṇṇāmalaip Palkalaikkaḻakam, 1969." + ], + "identifier": [ + "urn:bnum:10000010", + "urn:lccn:72913466", + "urn:oclc:NYPG001000004-B", + "urn:undefined:NNSZ00100004", + "urn:undefined:(WaOLN)nyp0200009" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ. [Āṟṟiyavar] Mā. Irācamāṇikkaṉār." + ], + "uri": "b10000010", + "lccClassification": [ + "PL4758.9.C385 Z8" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Aṇṇāmalainakar" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000010" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783783", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1938" + ], + "identifierV2": [ + { + "value": "*OLB 84-1938", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301598" + } + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301598" + ], + "idBarcode": [ + "33433061301598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001938" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000011", + "_score": null, + "_source": { + "extent": [ + "46 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Boeijenga" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1982" + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Passie en pasen : suite voor orgel, opus 50" + ], + "shelfMark": [ + "JMG 83-279" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Berg, Jan J. van den." + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-279" + }, + { + "type": "nypl:Bnumber", + "value": "10000011" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000004-C" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200010" + } + ], + "idOclc": [ + "NYPG001000004-C" + ], + "dateEndYear": [ + 1982 + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Sneek [Netherlands] : Boeijenga, [between 1976 and 1982]." + ], + "identifier": [ + "urn:bnum:10000011", + "urn:oclc:NYPG001000004-C", + "urn:undefined:(WaOLN)nyp0200010" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)", + "Easter music (Organ)", + "Passion music." + ], + "titleDisplay": [ + "Passie en pasen : suite voor orgel, opus 50 / door Jan J. van den Berg." + ], + "uri": "b10000011", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Sneek [Netherlands]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Passie. I. Psalm 22. II. Leer mij O Heer. III. \"Mijn Verlosser hangt aan 't kruis.\" IV. \"O hoofd vol bloed en wonden.\" V. \"O kostbaar kruis.\" VI. \"Jezus, leven van mijn leven\" -- Pasen. VII. Toccata over \"Christus is opgestanden.\" VIII. Canon: \"Jesus unser Trost und Leben.\" IX. Trio: Ik zeg het allen dat Hij leeft.\" X. Trio: \"Staakt Uw rouwen Magdalene.\" XI. Postludium over \"Jesus leeft en wij met Hem\" (met \"Christus onze Heer verrees\" als tegenstem)." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000011" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942025", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-279" + ], + "identifierV2": [ + { + "value": "JMG 83-279", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032883625" + } + ], + "physicalLocation": [ + "JMG 83-279" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032883625" + ], + "idBarcode": [ + "33433032883625" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000279" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000012", + "_score": null, + "_source": { + "extent": [ + "223 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p.221.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥāwī, Īlīyā Salīm." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" + }, + { + "type": "nypl:Bnumber", + "value": "10000012" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100005" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200011" + } + ], + "idOclc": [ + "NYPG001000005-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Dār al-Thaqāfah, 1970." + ], + "identifier": [ + "urn:bnum:10000012", + "urn:oclc:NYPG001000005-B", + "urn:undefined:NNSZ00100005", + "urn:undefined:(WaOLN)nyp0200011" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḥuṭayʼah, Jarwal ibn Aws, -650?" + ], + "titleDisplay": [ + "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi / bi-qalam Īlīyā Ḥāwī." + ], + "uri": "b10000012", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000012" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000003", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 84-1997" + ], + "identifierV2": [ + { + "value": "*OFS 84-1997", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514719" + } + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514719" + ], + "idBarcode": [ + "33433014514719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 84-001997" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000013", + "_score": null, + "_source": { + "extent": [ + "32 p. of music : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Popular music.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Arr. for piano with chord symbols; superlinear German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- Germany (East)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harth Musik Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Disko Treff 1 : Klavier." + ], + "shelfMark": [ + "JMF 83-366" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-366" + }, + { + "type": "nypl:Bnumber", + "value": "10000013" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000005-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100555" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200012" + } + ], + "idOclc": [ + "NYPG001000005-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Leipzig : Harth Musik Verlag, c1980." + ], + "identifier": [ + "urn:bnum:10000013", + "urn:oclc:NYPG001000005-C", + "urn:undefined:NNSZ00100555", + "urn:undefined:(WaOLN)nyp0200012" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- Germany (East)" + ], + "titleDisplay": [ + "Disko Treff 1 : Klavier." + ], + "uri": "b10000013", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Disko Treff eins." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000013" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942026", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-366" + ], + "identifierV2": [ + { + "value": "JMF 83-366", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032712204" + } + ], + "physicalLocation": [ + "JMF 83-366" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032712204" + ], + "idBarcode": [ + "33433032712204" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000366" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000014", + "_score": null, + "_source": { + "extent": [ + "520 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on cover: Islamic unity or the Mutual approach among Muslim sects.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Panislamism", + "Islam", + "Islam -- 20th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Shīrāzī, ʻAbd al-Karīm Bī Āzār." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" + }, + { + "type": "nypl:Bnumber", + "value": "10000014" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200013" + } + ], + "idOclc": [ + "NYPG001000006-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Bayrūt : Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1975." + ], + "identifier": [ + "urn:bnum:10000014", + "urn:oclc:NYPG001000006-B", + "urn:undefined:NNSZ00100006", + "urn:undefined:(WaOLN)nyp0200013" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Panislamism.", + "Islam -- 20th century." + ], + "titleDisplay": [ + "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 / Jamʻ wa-tartīb ʻAbd al-Karīm Bī Āzār al-Shīrāzī." + ], + "uri": "b10000014", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic unity." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000014" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540040", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-1996" + ], + "identifierV2": [ + { + "value": "*OGC 84-1996", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691780" + } + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691780" + ], + "idBarcode": [ + "33433022691780" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-001996" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000015", + "_score": null, + "_source": { + "extent": [ + "25 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For organ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"A McAfee Music Publication.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: DM 220.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Organ)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Belwin-Mills" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suite no. 1 : 1977" + ], + "shelfMark": [ + "JNG 83-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hampton, Calvin." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JNG 83-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000006-C" + }, + { + "type": "bf:Identifier", + "value": "DM 220. Belwin-Mills" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100556" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200014" + } + ], + "idOclc": [ + "NYPG001000006-C" + ], + "uniformTitle": [ + "Suite, organ, no. 1" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Melville, NY : Belwin-Mills, [1980?]" + ], + "identifier": [ + "urn:bnum:10000015", + "urn:oclc:NYPG001000006-C", + "urn:undefined:DM 220. Belwin-Mills", + "urn:undefined:NNSZ00100556", + "urn:undefined:(WaOLN)nyp0200014" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Organ)" + ], + "titleDisplay": [ + "Suite no. 1 : 1977 / Calvin Hampton." + ], + "uri": "b10000015", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Melville, NY" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Suite, no. 1" + ], + "tableOfContents": [ + "Fanfares -- Antiphon -- Toccata." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000015" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000016", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuṟuntokai" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manṅkaḷa Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nalla Kuṟuntokaiyil nāṉilam." + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cellappaṉ, Cilampoli, 1929-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "74913402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" + }, + { + "type": "nypl:Bnumber", + "value": "10000016" + }, + { + "type": "bf:Lccn", + "value": "74913402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100007" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200015" + } + ], + "idOclc": [ + "NYPG001000007-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Ceṉṉai, Manṅkaḷa Nūlakam, 1959 [i.e. 1967]" + ], + "identifier": [ + "urn:bnum:10000016", + "urn:lccn:74913402", + "urn:oclc:NYPG001000007-B", + "urn:undefined:NNSZ00100007", + "urn:undefined:(WaOLN)nyp0200015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuṟuntokai." + ], + "titleDisplay": [ + "Nalla Kuṟuntokaiyil nāṉilam. [Eḻutiyavar] Cu. Cellappaṉ." + ], + "uri": "b10000016", + "lccClassification": [ + "PL4758.9.K794 Z6 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000016" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783785", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1937" + ], + "identifierV2": [ + { + "value": "*OLB 84-1937", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301580" + } + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301580" + ], + "idBarcode": [ + "33433061301580" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001937" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000017", + "_score": null, + "_source": { + "extent": [ + "1 score (17 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For baritone and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Words printed also as text.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 3:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbière, Tristan, 1845-1875", + "Corbière, Tristan, 1845-1875 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lettre du Mexique : pour baryton et piano, 1942" + ], + "shelfMark": [ + "JMG 83-395" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Escher, Rudolf." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Corbière, Tristan, 1845-1875." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-395" + }, + { + "type": "nypl:Bnumber", + "value": "10000017" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000007-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100557" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200016" + } + ], + "idOclc": [ + "NYPG001000007-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Amsterdam : Donemus, c1981." + ], + "identifier": [ + "urn:bnum:10000017", + "urn:oclc:NYPG001000007-C", + "urn:undefined:NNSZ00100557", + "urn:undefined:(WaOLN)nyp0200016" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbière, Tristan, 1845-1875 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "Lettre du Mexique : pour baryton et piano, 1942 / Rudolf Escher ; poème de Tristan Corbière." + ], + "uri": "b10000017", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000017" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942027", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-395" + ], + "identifierV2": [ + { + "value": "JMG 83-395", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032735007" + } + ], + "physicalLocation": [ + "JMG 83-395" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032735007" + ], + "idBarcode": [ + "33433032735007" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000395" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000018", + "_score": null, + "_source": { + "extent": [ + "68 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Lebanon" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Ṭalīʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bashshūr, Najlāʼ Naṣīr." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78970449" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" + }, + { + "type": "nypl:Bnumber", + "value": "10000018" + }, + { + "type": "bf:Lccn", + "value": "78970449" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100008" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200017" + } + ], + "idOclc": [ + "NYPG001000008-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Bayrūt : Dār al-Ṭalīʻah, 1975." + ], + "identifier": [ + "urn:bnum:10000018", + "urn:lccn:78970449", + "urn:oclc:NYPG001000008-B", + "urn:undefined:NNSZ00100008", + "urn:undefined:(WaOLN)nyp0200017" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Lebanon." + ], + "titleDisplay": [ + "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā / Najlāʼ Naṣīr Bashshūr." + ], + "uri": "b10000018", + "lccClassification": [ + "HQ1728 .B37" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000018" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000004", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1995" + ], + "identifierV2": [ + { + "value": "*OFX 84-1995", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031718" + } + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031718" + ], + "idBarcode": [ + "33433002031718" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001995" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000019", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: M 18.487.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Waltzes (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zwölf Walzer und ein Epilog : für Klavier" + ], + "shelfMark": [ + "JMG 83-111" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Benary, Peter." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-111" + }, + { + "type": "nypl:Bnumber", + "value": "10000019" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000008-C" + }, + { + "type": "bf:Identifier", + "value": "Möseler M 18.487." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100558" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200018" + } + ], + "idOclc": [ + "NYPG001000008-C" + ], + "uniformTitle": [ + "Walzer und ein Epilog" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000019", + "urn:oclc:NYPG001000008-C", + "urn:undefined:Möseler M 18.487.", + "urn:undefined:NNSZ00100558", + "urn:undefined:(WaOLN)nyp0200018" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Waltzes (Piano)" + ], + "titleDisplay": [ + "Zwölf Walzer und ein Epilog : für Klavier / Peter Benary." + ], + "uri": "b10000019", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Walzer und ein Epilog", + "Walzer und ein Epilog." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000019" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942028", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-111" + ], + "identifierV2": [ + { + "value": "JMG 83-111", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845053" + } + ], + "physicalLocation": [ + "JMG 83-111" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845053" + ], + "idBarcode": [ + "33433032845053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000111" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000020", + "_score": null, + "_source": { + "extent": [ + "xvi, 172, 320 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tolkāppiyar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aṇṇāmalaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tolkāppiyam." + ], + "shelfMark": [ + "*OLB 84-1936" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Veḷḷaivāraṇaṉ, Ka." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74914844" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1936" + }, + { + "type": "nypl:Bnumber", + "value": "10000020" + }, + { + "type": "bf:Lccn", + "value": "74914844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100009" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200019" + } + ], + "idOclc": [ + "NYPG001000009-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "[Aṇṇāmalainakar] Aṇṇāmalaip Palkalaik Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000020", + "urn:lccn:74914844", + "urn:oclc:NYPG001000009-B", + "urn:undefined:NNSZ00100009", + "urn:undefined:(WaOLN)nyp0200019" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tolkāppiyar." + ], + "titleDisplay": [ + "Tolkāppiyam. [Eḻutiyavar] Ka. Veḷḷaivāraṇaṉ." + ], + "uri": "b10000020", + "lccClassification": [ + "PL4754.T583 V4 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Aṇṇāmalainakar]" + ], + "titleAlt": [ + "Tolkāppiyam nutaliyaporuḷ." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Tolkāppiyam.--Tolkāppiyam nutaliyaporuḷ." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000020" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783786", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "identifierV2": [ + { + "value": "*OLB 84-1936 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301572" + ], + "idBarcode": [ + "33433061301572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000021", + "_score": null, + "_source": { + "extent": [ + "1 score (51 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: NM 384.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Orchestral music", + "Orchestral music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Neue Musik" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aurora : sinfonischer Prolog : Partitur" + ], + "shelfMark": [ + "JMG 83-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Weitzendorf, Heinz." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000021" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000009-C" + }, + { + "type": "bf:Identifier", + "value": "NM 384. Verlag Neue Musik" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100559" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200020" + } + ], + "idOclc": [ + "NYPG001000009-C" + ], + "updatedAt": 1689717163415, + "publicationStatement": [ + "Berlin : Verlag Neue Musik, c1978." + ], + "identifier": [ + "urn:bnum:10000021", + "urn:oclc:NYPG001000009-C", + "urn:undefined:NM 384. Verlag Neue Musik", + "urn:undefined:NNSZ00100559", + "urn:undefined:(WaOLN)nyp0200020" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Orchestral music -- Scores." + ], + "titleDisplay": [ + "Aurora : sinfonischer Prolog : Partitur / Heinz Weitzendorf." + ], + "uri": "b10000021", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000021" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942029", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-113" + ], + "identifierV2": [ + { + "value": "JMG 83-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032845079" + } + ], + "physicalLocation": [ + "JMG 83-113" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032845079" + ], + "idBarcode": [ + "33433032845079" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000022", + "_score": null, + "_source": { + "extent": [ + "19, 493 p." + ], + "note": [ + { + "noteType": "Note", + "label": "First published in 1942.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Puttamittiraṉār, active 11th century." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "73913714" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 1388" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Peruntēvaṉār, active 11th century.", + "Kōvintarāja Mutaliyār, Kā. Ra., 1874-1952." + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" + }, + { + "type": "nypl:Bnumber", + "value": "10000022" + }, + { + "type": "bf:Lccn", + "value": "73913714" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100010" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200021" + } + ], + "idOclc": [ + "NYPG001000010-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000022", + "urn:lccn:73913714", + "urn:oclc:NYPG001000010-B", + "urn:undefined:NNSZ00100010", + "urn:undefined:(WaOLN)nyp0200021" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Grammar." + ], + "titleDisplay": [ + "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ. Patippāciriyar Kā. Ra. Kōvintarāca Mutaliyār." + ], + "uri": "b10000022", + "lccClassification": [ + "PL4754 .P8 1970" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "titleAlt": [ + "Viracōḻiyam." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000022" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783787", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1935" + ], + "identifierV2": [ + { + "value": "*OLB 84-1935", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301564" + } + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301564" + ], + "idBarcode": [ + "33433061301564" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001935" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000023", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (18 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For band or wind ensemble.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Based on the composer's Veni creator spiritus.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: KC913.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Band music", + "Band music -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shawnee Press" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Musica sacra" + ], + "shelfMark": [ + "JMF 83-38" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zaninelli, Luigi." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-38" + }, + { + "type": "nypl:Bnumber", + "value": "10000023" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000010-C" + }, + { + "type": "bf:Identifier", + "value": "KC913 Shawnee Press" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100560" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200022" + } + ], + "idOclc": [ + "NYPG001000010-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Delaware Water Gap, Pa. : Shawnee Press, c1979." + ], + "identifier": [ + "urn:bnum:10000023", + "urn:oclc:NYPG001000010-C", + "urn:undefined:KC913 Shawnee Press", + "urn:undefined:NNSZ00100560", + "urn:undefined:(WaOLN)nyp0200022" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Band music -- Scores." + ], + "titleDisplay": [ + "Musica sacra / Luigi Zaninelli." + ], + "uri": "b10000023", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Delaware Water Gap, Pa." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000023" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942030", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-38" + ], + "identifierV2": [ + { + "value": "JMF 83-38", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709028" + } + ], + "physicalLocation": [ + "JMF 83-38" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709028" + ], + "idBarcode": [ + "33433032709028" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000038" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000024", + "_score": null, + "_source": { + "extent": [ + "264 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bahrain", + "Bahrain -- History", + "Bahrain -- History -- 20th century", + "Bahrain -- Economic conditions", + "Bahrain -- Social conditions" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār Ibn Khaldūn" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rumayḥī, Muḥammad Ghānim." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "79971032" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" + }, + { + "type": "nypl:Bnumber", + "value": "10000024" + }, + { + "type": "bf:Lccn", + "value": "79971032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100011" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200023" + } + ], + "idOclc": [ + "NYPG001000011-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[Bayrūt] : Dār Ibn Khaldūn, 1976." + ], + "identifier": [ + "urn:bnum:10000024", + "urn:lccn:79971032", + "urn:oclc:NYPG001000011-B", + "urn:undefined:NNSZ00100011", + "urn:undefined:(WaOLN)nyp0200023" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bahrain -- History -- 20th century.", + "Bahrain -- Economic conditions.", + "Bahrain -- Social conditions." + ], + "titleDisplay": [ + "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī / Muḥammad al-Rumayḥī." + ], + "uri": "b10000024", + "lccClassification": [ + "DS247.B28 R85" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000024" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000005", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFK 84-1944" + ], + "identifierV2": [ + { + "value": "*OFK 84-1944", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005548676" + } + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005548676" + ], + "idBarcode": [ + "33433005548676" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFK 84-001944" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000025", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei Sonatinen für Klavier" + ], + "shelfMark": [ + "JMF 83-107" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Stockmeier, Wolfgang." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-107" + }, + { + "type": "nypl:Bnumber", + "value": "10000025" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000011-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100561" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200024" + } + ], + "idOclc": [ + "NYPG001000011-C" + ], + "uniformTitle": [ + "Sonatinas, piano" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wolfenbüttel : Möseler, c1979." + ], + "identifier": [ + "urn:bnum:10000025", + "urn:oclc:NYPG001000011-C", + "urn:undefined:NNSZ00100561", + "urn:undefined:(WaOLN)nyp0200024" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Drei Sonatinen für Klavier / Wolfgang Stockmeier." + ], + "uri": "b10000025", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatinas" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000025" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942031", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-107" + ], + "identifierV2": [ + { + "value": "JMF 83-107", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709697" + } + ], + "physicalLocation": [ + "JMF 83-107" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709697" + ], + "idBarcode": [ + "33433032709697" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000107" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000026", + "_score": null, + "_source": { + "extent": [ + "222 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 217-220.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Women", + "Women -- Syria" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Razzāz, Nabīlah." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76960987" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" + }, + { + "type": "nypl:Bnumber", + "value": "10000026" + }, + { + "type": "bf:Lccn", + "value": "76960987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100012" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200025" + } + ], + "idOclc": [ + "NYPG001000012-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Dimashq : Wizārat al-Thaqāfah wa-al-Irshād al-Qawmī, 1975." + ], + "identifier": [ + "urn:bnum:10000026", + "urn:lccn:76960987", + "urn:oclc:NYPG001000012-B", + "urn:undefined:NNSZ00100012", + "urn:undefined:(WaOLN)nyp0200025" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Women -- Syria." + ], + "titleDisplay": [ + "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975 / Nabīlah al-Razzāz." + ], + "uri": "b10000026", + "lccClassification": [ + "HQ402 .R39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000006", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFX 84-1953" + ], + "identifierV2": [ + { + "value": "*OFX 84-1953", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002031700" + } + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002031700" + ], + "idBarcode": [ + "33433002031700" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFX 84-001953" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000027", + "_score": null, + "_source": { + "extent": [ + "15 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Violin)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Möseler Verlag" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Drei kleine Sonaten : für Violine solo" + ], + "shelfMark": [ + "JMF 83-95" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Köhler, Friedemann." + ], + "createdString": [ + "1979" + ], + "seriesStatement": [ + "Hausmusik ; 172" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-95" + }, + { + "type": "nypl:Bnumber", + "value": "10000027" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000012-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100562" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200026" + } + ], + "idOclc": [ + "NYPG001000012-C" + ], + "uniformTitle": [ + "Kleine Sonaten, violin" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Wolfenbüttel : Möseler Verlag, c1979." + ], + "identifier": [ + "urn:bnum:10000027", + "urn:oclc:NYPG001000012-C", + "urn:undefined:NNSZ00100562", + "urn:undefined:(WaOLN)nyp0200026" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Violin)" + ], + "titleDisplay": [ + "Drei kleine Sonaten : für Violine solo / Friedemann Köhler." + ], + "uri": "b10000027", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wolfenbüttel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Kleine Sonaten" + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000027" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942032", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-95" + ], + "identifierV2": [ + { + "value": "JMF 83-95", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709572" + } + ], + "physicalLocation": [ + "JMF 83-95" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709572" + ], + "idBarcode": [ + "33433032709572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000095" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000028", + "_score": null, + "_source": { + "extent": [ + "9, 3, 3, 324 p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Prastuta śodha-prabandha Rājasthāna Viśvavidyālaya, Jayapura kī Pī-eca.Ḍī-upāthi ke nimitta viśvavidyālaya anudāna āyoga kī risarca phailośipa ke antargata likhā gayā thā.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [321]-324.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sūryamalla Miśraṇa, 1815-1868" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājasthāna Sāhitya Akādamī (Saṅgama)" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaṃśabhāskara : eka adhyayana" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khāna, Ālama Śāha, 1936-2003." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75903689" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" + }, + { + "type": "nypl:Bnumber", + "value": "10000028" + }, + { + "type": "bf:Lccn", + "value": "75903689" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100013" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200027" + } + ], + "idOclc": [ + "NYPG001000013-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Udayapura : Rājasthāna Sāhitya Akādamī (Saṅgama), 1973." + ], + "identifier": [ + "urn:bnum:10000028", + "urn:lccn:75903689", + "urn:oclc:NYPG001000013-B", + "urn:undefined:NNSZ00100013", + "urn:undefined:(WaOLN)nyp0200027" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sūryamalla Miśraṇa, 1815-1868." + ], + "titleDisplay": [ + "Vaṃśabhāskara : eka adhyayana / lekhaka Ālamaśāha Khāna." + ], + "uri": "b10000028", + "lccClassification": [ + "PK2708.9.S9 V334" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25cm." + ] + }, + "sort": [ + "b10000028" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-1945" + ], + "identifierV2": [ + { + "value": "*OKTM 84-1945", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094210" + } + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094210" + ], + "idBarcode": [ + "33433011094210" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-001945" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000029", + "_score": null, + "_source": { + "extent": [ + "16 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: 8:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: Wilhelm Hansen edition no. 4372.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Publisher's no.: 29589.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Organ music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Hansen ; Distribution, Magnamusic-Baton" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cruor : for organ solo, 1977" + ], + "shelfMark": [ + "JMF 83-93" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lorentzen, Bent." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82771131" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "nypl:Bnumber", + "value": "10000029" + }, + { + "type": "bf:Lccn", + "value": "82771131" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000013-C" + }, + { + "type": "bf:Identifier", + "value": "Wilhelm Hansen edition no. 4372." + }, + { + "type": "bf:Identifier", + "value": "29589." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100563" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200028" + } + ], + "idOclc": [ + "NYPG001000013-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Copenhagen ; New York : W. Hansen ; [s.l.] : Distribution, Magnamusic-Baton, c1980." + ], + "identifier": [ + "urn:bnum:10000029", + "urn:lccn:82771131", + "urn:oclc:NYPG001000013-C", + "urn:undefined:Wilhelm Hansen edition no. 4372.", + "urn:undefined:29589.", + "urn:undefined:NNSZ00100563", + "urn:undefined:(WaOLN)nyp0200028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Organ music." + ], + "titleDisplay": [ + "Cruor : for organ solo, 1977 / B. Lorentzen." + ], + "uri": "b10000029", + "lccClassification": [ + "M11 .L" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Copenhagen ; New York : [s.l.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000029" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942034", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-93" + ], + "identifierV2": [ + { + "value": "JMF 83-93", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" + } + ], + "physicalLocation": [ + "JMF 83-93" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709556" + ], + "idBarcode": [ + "33433032709556" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000093" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000030", + "_score": null, + "_source": { + "extent": [ + "21, 264 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Āryasamāja-śatābdī-saṃskaraṇam.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Authorship uncertain. Attributed variously to Āpiśali, Pānini and Śākaṭāyana.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit: introductory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Suffixes and prefixes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; prāptisthānam, Rāmalāla Kapūra Ṭrasṭa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Uṇādi-koṣaḥ" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902275" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Āpiśali.", + "Pāṇini.", + "Śākatāyana.", + "Dayananda Sarasvati, Swami, 1824-1883.", + "Yudhiṣṭhira Mīmāṃsaka, 1909-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" + }, + { + "type": "nypl:Bnumber", + "value": "10000030" + }, + { + "type": "bf:Lccn", + "value": "75902275" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200029" + } + ], + "idOclc": [ + "NYPG001000014-B" + ], + "uniformTitle": [ + "Uṇādisūtra." + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Karanāla : Ra.Ba.Cau. Nārāyaṇasiṃha Dharmārtha Ṭrasṭa ; Bahālagaḍha, Harayāṇa : prāptisthānam, Rāmalāla Kapūra Ṭrasṭa, 1974." + ], + "identifier": [ + "urn:bnum:10000030", + "urn:lccn:75902275", + "urn:oclc:NYPG001000014-B", + "urn:undefined:NNSZ00100014", + "urn:undefined:(WaOLN)nyp0200029" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Suffixes and prefixes." + ], + "titleDisplay": [ + "Uṇādi-koṣaḥ / Dayānanda Sarasvatī Svāminā viracitayā Vaidika-laukika-koṣābhidhayā vyākhyayā sahitaḥ vividhābhi-ṣṭippaṇībhiḥ sūcībhiśca saṃyutaḥ ; sampādakaḥ Yudhiṣṭhiro Mīmāṃsakaḥ." + ], + "uri": "b10000030", + "lccClassification": [ + "PK551 .U73" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Karanāla : Bahālagaḍha, Harayāṇa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000030" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000007", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKA 84-1931" + ], + "identifierV2": [ + { + "value": "*OKA 84-1931", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012968222" + } + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012968222" + ], + "idBarcode": [ + "33433012968222" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKA 84-001931" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000031", + "_score": null, + "_source": { + "extent": [ + "21 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Piano music" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. Müller" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Neun Miniaturen : für Klavier : op. 52" + ], + "shelfMark": [ + "JMG 83-17" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Petersen, Wilhelm, 1890-1957." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-17" + }, + { + "type": "nypl:Bnumber", + "value": "10000031" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000014-C" + }, + { + "type": "bf:Identifier", + "value": "W. Müller WM 1713 SM." + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100564" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200030" + } + ], + "idOclc": [ + "NYPG001000014-C" + ], + "uniformTitle": [ + "Miniaturen" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Heidelberg : W. Müller, c1979." + ], + "identifier": [ + "urn:bnum:10000031", + "urn:oclc:NYPG001000014-C", + "urn:undefined:W. Müller WM 1713 SM.", + "urn:undefined:NNSZ00100564", + "urn:undefined:(WaOLN)nyp0200030" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Piano music." + ], + "titleDisplay": [ + "Neun Miniaturen : für Klavier : op. 52 / Wilhelm Petersen." + ], + "uri": "b10000031", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Heidelberg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Miniaturen", + "Miniaturen." + ], + "dimensions": [ + "32 cm." + ] + }, + "sort": [ + "b10000031" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942035", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-17" + ], + "identifierV2": [ + { + "value": "JMG 83-17", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841631" + } + ], + "physicalLocation": [ + "JMG 83-17" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841631" + ], + "idBarcode": [ + "33433032841631" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000032", + "_score": null, + "_source": { + "extent": [ + "14, 405, 7 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jahrom (Iran : Province)", + "Jahrom (Iran : Province) -- Biography", + "Khafr (Iran)", + "Khafr (Iran) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kitābfurūshī-i Khayyām" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ishrāq, Muḥammad Karīm." + ], + "createdString": [ + "1972" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "nypl:Bnumber", + "value": "10000032" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100015" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200031" + } + ], + "idOclc": [ + "NYPG001000015-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "Tihrān : Kitābfurūshī-i Khayyām, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000032", + "urn:oclc:NYPG001000015-B", + "urn:undefined:NNSZ00100015", + "urn:undefined:(WaOLN)nyp0200031" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jahrom (Iran : Province) -- Biography.", + "Khafr (Iran) -- Biography." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad Karīm Ishrāq." + ], + "uri": "b10000032", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22cm" + ] + }, + "sort": [ + "b10000032" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000008", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMP 84-2007" + ], + "identifierV2": [ + { + "value": "*OMP 84-2007", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" + } + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013173012" + ], + "idBarcode": [ + "33433013173012" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMP 84-002007" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000033", + "_score": null, + "_source": { + "extent": [ + "1 score (20 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For voice and organ.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sacred songs (Medium voice) with organ", + "Psalms (Music)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Agápe" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Psalm settings" + ], + "shelfMark": [ + "JMG 83-59" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nelhybel, Vaclav." + ], + "createdString": [ + "1981" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-59" + }, + { + "type": "nypl:Bnumber", + "value": "10000033" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000015-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100565" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200032" + } + ], + "idOclc": [ + "NYPG001000015-C" + ], + "updatedAt": 1689901710981, + "publicationStatement": [ + "Carol Stream, Ill. : Agápe, c1981." + ], + "identifier": [ + "urn:bnum:10000033", + "urn:oclc:NYPG001000015-C", + "urn:undefined:NNSZ00100565", + "urn:undefined:(WaOLN)nyp0200032" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sacred songs (Medium voice) with organ.", + "Psalms (Music)" + ], + "titleDisplay": [ + "Psalm settings / Vaclav Nelhybel." + ], + "uri": "b10000033", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Carol Stream, Ill." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Hear me when I call -- Be not far from me -- Hear my voice -- The Lord is my rock." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000033" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942036", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-59" + ], + "identifierV2": [ + { + "value": "JMG 83-59", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842035" + } + ], + "physicalLocation": [ + "JMG 83-59" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842035" + ], + "idBarcode": [ + "33433032842035" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000059" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000034", + "_score": null, + "_source": { + "extent": [ + "366 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Brhatkathāślokasaṁgrahaḥ.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Colophon: Iti Śrībhaṭṭabudhasvāminā krte ślokasaṁgrahe Brhatkathāyāṁ--", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Text in Sanskrit; apparatus in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Prithivi Prakashan" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Budhasvāmin." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903273" + ], + "seriesStatement": [ + "Indian civilization series ; no. 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Guṇāḍhya.", + "Agrawala, Vasudeva Sharana.", + "Agrawala, Prithvi Kumar." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" + }, + { + "type": "nypl:Bnumber", + "value": "10000034" + }, + { + "type": "bf:Lccn", + "value": "74903273" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100016" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200033" + } + ], + "idOclc": [ + "NYPG001000016-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Varanasi : Prithivi Prakashan, 1974." + ], + "identifier": [ + "urn:bnum:10000034", + "urn:lccn:74903273", + "urn:oclc:NYPG001000016-B", + "urn:undefined:NNSZ00100016", + "urn:undefined:(WaOLN)nyp0200033" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Brhatkathāślokasaṁgraha : a study / by V.S. Agrawala ; with Sanskrit text, edited by P.K. Agrawala." + ], + "uri": "b10000034", + "lccClassification": [ + "PK3794.B84 B7 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Varanasi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000034" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000009", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKR 84-2006" + ], + "identifierV2": [ + { + "value": "*OKR 84-2006", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011528696" + } + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011528696" + ], + "idBarcode": [ + "33433011528696" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKR 84-002006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000035", + "_score": null, + "_source": { + "extent": [ + "22 p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Suite.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 12:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Serenade voor piano : 1980" + ], + "shelfMark": [ + "JMG 83-6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kasbergen, Marinus, 1936-" + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-6" + }, + { + "type": "nypl:Bnumber", + "value": "10000035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000016-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100566" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200034" + } + ], + "idOclc": [ + "NYPG001000016-C" + ], + "uniformTitle": [ + "Serenade, piano" + ], + "updatedAt": 1689901710976, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000035", + "urn:oclc:NYPG001000016-C", + "urn:undefined:NNSZ00100566", + "urn:undefined:(WaOLN)nyp0200034" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Piano)" + ], + "titleDisplay": [ + "Serenade voor piano : 1980 / Marinus Kasbergen." + ], + "uri": "b10000035", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Serenade" + ], + "tableOfContents": [ + "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000035" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942038", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-6" + ], + "identifierV2": [ + { + "value": "JMG 83-6", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841490" + } + ], + "physicalLocation": [ + "JMG 83-6" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841490" + ], + "idBarcode": [ + "33433032841490" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000006" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000036", + "_score": null, + "_source": { + "extent": [ + "viii, 38 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; prefatory matter in Sanskrit or Telegu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nārāyaṇatīrtha, 17th cent", + "Nārāyaṇatīrtha, 17th cent -- In literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic]" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902755" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" + }, + { + "type": "nypl:Bnumber", + "value": "10000036" + }, + { + "type": "bf:Lccn", + "value": "75902755" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100017" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200035" + } + ], + "idOclc": [ + "NYPG001000017-B" + ], + "updatedAt": 1674870752089, + "publicationStatement": [ + "[s.1. : s.n.], 1972" + ], + "identifier": [ + "urn:bnum:10000036", + "urn:lccn:75902755", + "urn:oclc:NYPG001000017-B", + "urn:undefined:NNSZ00100017", + "urn:undefined:(WaOLN)nyp0200035" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nārāyaṇatīrtha, 17th cent -- In literature." + ], + "titleDisplay": [ + "Srīnārāyaṇatīrthayatīndracaritram[sic] / praṇetā Garikapāṭi Lakṣmīkāntaḥ." + ], + "uri": "b10000036", + "lccClassification": [ + "PK3799.L28 S68" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[s.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000036" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858032", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKB 84-1928" + ], + "identifierV2": [ + { + "value": "*OKB 84-1928", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058548433" + } + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058548433" + ], + "idBarcode": [ + "33433058548433" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKB 84-001928" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000037", + "_score": null, + "_source": { + "extent": [ + "13a p. of music ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Duration: ca. 15:00.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Suites (Guitar)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Donemus" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Eight studies for guitar : in form of a suite : 1979" + ], + "shelfMark": [ + "JMG 83-5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hekster, Walter." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-5" + }, + { + "type": "nypl:Bnumber", + "value": "10000037" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000017-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100567" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200036" + } + ], + "idOclc": [ + "NYPG001000017-C" + ], + "uniformTitle": [ + "Studies, guitar" + ], + "updatedAt": 1689717163363, + "publicationStatement": [ + "Amsterdam : Donemus, c1980." + ], + "identifier": [ + "urn:bnum:10000037", + "urn:oclc:NYPG001000017-C", + "urn:undefined:NNSZ00100567", + "urn:undefined:(WaOLN)nyp0200036" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Suites (Guitar)" + ], + "titleDisplay": [ + "Eight studies for guitar : in form of a suite : 1979 / Walter Hekster." + ], + "uri": "b10000037", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Amsterdam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Studies" + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000037" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942040", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-5" + ], + "identifierV2": [ + { + "value": "JMG 83-5", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032841482" + } + ], + "physicalLocation": [ + "JMG 83-5" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032841482" + ], + "idBarcode": [ + "33433032841482" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000005" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000038", + "_score": null, + "_source": { + "extent": [ + "4, 160 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Sanskrit, with verse and prose translations in Hindi; prefatory matter in Hindi or Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- Himachal Pradesh" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himācala Kalā-Saṃskrti-Bhāṣā Akādamī" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900772" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Prarthi, Lall Chand, 1916-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, + { + "type": "nypl:Bnumber", + "value": "10000038" + }, + { + "type": "bf:Lccn", + "value": "76900772" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100018" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200037" + } + ], + "idOclc": [ + "NYPG001000018-B" + ], + "updatedAt": 1674870747963, + "publicationStatement": [ + "Śimalā : Himācala Kalā-Saṃskrti-Bhāṣā Akādamī, 1975." + ], + "identifier": [ + "urn:bnum:10000038", + "urn:lccn:76900772", + "urn:oclc:NYPG001000018-B", + "urn:undefined:NNSZ00100018", + "urn:undefined:(WaOLN)nyp0200037" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- Himachal Pradesh." + ], + "titleDisplay": [ + "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana / mukhya sampādaka Lāla Canda Prārthī ; sampādaka maṇḍala, Manasā Rāma Śarmā 'Arūṇa'...[et al.]." + ], + "uri": "b10000038", + "lccClassification": [ + "PK3800.H52 R7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Śimalā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000038" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783788", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "identifierV2": [ + { + "value": "*OKP 84-1932", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153572" + } + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153572" + ], + "idBarcode": [ + "33433058153572" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-001932" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000039", + "_score": null, + "_source": { + "extent": [ + "49 p. of music ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sonatas (Piano)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C.F. Peters" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Five sonatas for pianoforte" + ], + "shelfMark": [ + "JMG 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hässler, Johann Wilhelm, 1747-1822." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Oberdoerffer, Fritz." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMG 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000039" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000018-C" + }, + { + "type": "bf:Identifier", + "value": "Edition Peters no. 66799. C.F. Peters" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100568" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200038" + } + ], + "idOclc": [ + "NYPG001000018-C" + ], + "uniformTitle": [ + "Sonatas, piano. Selections" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "New York : C.F. Peters, c1980." + ], + "identifier": [ + "urn:bnum:10000039", + "urn:oclc:NYPG001000018-C", + "urn:undefined:Edition Peters no. 66799. C.F. Peters", + "urn:undefined:NNSZ00100568", + "urn:undefined:(WaOLN)nyp0200038" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sonatas (Piano)" + ], + "titleDisplay": [ + "Five sonatas for pianoforte / Johann Wilhelm Hässler ; edited by Fritz Oberdoerffer." + ], + "uri": "b10000039", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Sonatas" + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10000039" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942041", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMG 83-66" + ], + "identifierV2": [ + { + "value": "JMG 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032842100" + } + ], + "physicalLocation": [ + "JMG 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032842100" + ], + "idBarcode": [ + "33433032842100" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMG 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000040", + "_score": null, + "_source": { + "extent": [ + "146 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār." + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pulavar Arasu, 1900-" + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "78913375" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu, 672" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" + }, + { + "type": "nypl:Bnumber", + "value": "10000040" + }, + { + "type": "bf:Lccn", + "value": "78913375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100019" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200039" + } + ], + "idOclc": [ + "NYPG001000019-B" + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Ceṉṉai, Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1970." + ], + "identifier": [ + "urn:bnum:10000040", + "urn:lccn:78913375", + "urn:oclc:NYPG001000019-B", + "urn:undefined:NNSZ00100019", + "urn:undefined:(WaOLN)nyp0200039" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." + ], + "titleDisplay": [ + "Tiru. Vi. Kaliyāṇacuntaraṉār. Āciriyar Pulavar Aracu." + ], + "uri": "b10000040", + "lccClassification": [ + "PL4758.9.K223 Z83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000040" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783789", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-1947" + ], + "identifierV2": [ + { + "value": "*OLB 84-1947", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061301622" + } + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061301622" + ], + "idBarcode": [ + "33433061301622" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-001947" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000041", + "_score": null, + "_source": { + "extent": [ + "1 score (23 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 5 clarinets.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Woodwind quintets (Clarinets (5))", + "Woodwind quintets (Clarinets (5)) -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Primavera" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Encounter" + ], + "shelfMark": [ + "JMF 83-66" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Usher, Julia." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "81770739" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "nypl:Bnumber", + "value": "10000041" + }, + { + "type": "bf:Lccn", + "value": "81770739" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000019-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100569" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200040" + } + ], + "idOclc": [ + "NYPG001000019-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "London : Primavera, c1980." + ], + "identifier": [ + "urn:bnum:10000041", + "urn:lccn:81770739", + "urn:oclc:NYPG001000019-C", + "urn:undefined:NNSZ00100569", + "urn:undefined:(WaOLN)nyp0200040" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Woodwind quintets (Clarinets (5)) -- Scores." + ], + "titleDisplay": [ + "Encounter / Julia Usher." + ], + "uri": "b10000041", + "lccClassification": [ + "M557.2.U8 E5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Greeting -- Circular argument -- Escape." + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10000041" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942042", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMF 83-66" + ], + "identifierV2": [ + { + "value": "JMF 83-66", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" + } + ], + "physicalLocation": [ + "JMF 83-66" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433032709291" + ], + "idBarcode": [ + "33433032709291" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMF 83-000066" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000042", + "_score": null, + "_source": { + "extent": [ + "2, 108 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit: pref. in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Advaita", + "Vedanta" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Devabhāṣā Prakāśana" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "dateEndString": [ + "1972" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902870" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Brahmashram, Śwami, 1915-" + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" + }, + { + "type": "nypl:Bnumber", + "value": "10000042" + }, + { + "type": "bf:Lccn", + "value": "72902870" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100020" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200041" + } + ], + "idOclc": [ + "NYPG001000020-B" + ], + "uniformTitle": [ + "Mahābhārata. Sanatsugātīya." + ], + "dateEndYear": [ + 1972 + ], + "updatedAt": 1674870747855, + "publicationStatement": [ + "Prayāga, Devabhāṣā Prakāśana, Samvat 2028, i.e. 1971 or 2]" + ], + "identifier": [ + "urn:bnum:10000042", + "urn:lccn:72902870", + "urn:oclc:NYPG001000020-B", + "urn:undefined:NNSZ00100020", + "urn:undefined:(WaOLN)nyp0200041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Advaita.", + "Vedanta." + ], + "titleDisplay": [ + "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita. Vyākhyātā Svāmī Brahmāśrama." + ], + "uri": "b10000042", + "lccClassification": [ + "B132.V3 M264" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Prayāga" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000042" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783790", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKN 84-1926" + ], + "identifierV2": [ + { + "value": "*OKN 84-1926", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058618392" + } + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058618392" + ], + "idBarcode": [ + "33433058618392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKN 84-001926" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000043", + "_score": null, + "_source": { + "extent": [ + "1 miniature score (28 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "For 2 flutes, 2 oboes, 2 clarinets, 2 horns, and 2 bassoons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Duration: ca. 5:00-6:00.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Pl. no.: D.15 579.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Wind ensembles", + "Wind ensembles -- Scores" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Doblinger" + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Capriccio : für 10 Blasinstrumente" + ], + "shelfMark": [ + "JMC 83-9" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Eröd, Iván." + ], + "createdString": [ + "1980" + ], + "seriesStatement": [ + "Doblingers Studienpartituren ; Stp. 410" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JMC 83-9" + }, + { + "type": "nypl:Bnumber", + "value": "10000043" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000020-C" + }, + { + "type": "bf:Identifier", + "value": "Stp. 410 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "D.15 579 Verlag Doblinger" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100570" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200042" + } + ], + "idOclc": [ + "NYPG001000020-C" + ], + "updatedAt": 1689717163974, + "publicationStatement": [ + "Wien : Verlag Doblinger, c1980." + ], + "identifier": [ + "urn:bnum:10000043", + "urn:oclc:NYPG001000020-C", + "urn:undefined:Stp. 410 Verlag Doblinger", + "urn:undefined:D.15 579 Verlag Doblinger", + "urn:undefined:NNSZ00100570", + "urn:undefined:(WaOLN)nyp0200042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Wind ensembles -- Scores." + ], + "titleDisplay": [ + "Capriccio : für 10 Blasinstrumente / Iván Eröd." + ], + "uri": "b10000043", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Wien" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000043" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000010", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + ], + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "shelfMark": [ + "JMC 83-9" + ], + "identifierV2": [ + { + "value": "JMC 83-9", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004744128" + } + ], + "physicalLocation": [ + "JMC 83-9" + ], + "recapCustomerCode": [ + "NP" + ], + "identifier": [ + "urn:barcode:33433004744128" + ], + "idBarcode": [ + "33433004744128" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJMC 83-000009" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:36:59 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "140008", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":42,\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "536" + }, + "timeout": 30000 + }, + "options": {}, + "id": 41 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-f2ccfdfa3e4c8ac6d4f2fa84e1d3eaa9.json b/test/fixtures/query-f2ccfdfa3e4c8ac6d4f2fa84e1d3eaa9.json new file mode 100644 index 00000000..63ce9422 --- /dev/null +++ b/test/fixtures/query-f2ccfdfa3e4c8ac6d4f2fa84e1d3eaa9.json @@ -0,0 +1,13106 @@ +{ + "body": { + "took": 595, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 2120865, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000061", + "_score": null, + "_source": { + "extent": [ + "1 ms. score (10 p.) + 1 ms. part (3 p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Holographs (?) signed, in ink.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For violin and piano; part incomplete.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title varies: Hungarian song and dance.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "On t.p.: Given to H H Huss by Maud Powell.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Huss, Henry Holden, 1862-1953", + "Huss, Henry Holden, 1862-1953 -- Manuscripts", + "Violin and piano music", + "Violin and piano music -- Scores and parts" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:zxx", + "label": "No linguistic content" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1888 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hungarian melody and dance" + ], + "shelfMark": [ + "JPB 83-155 no. 189" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Matus." + ], + "createdString": [ + "1888" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Huss, Henry Holden, 1862-1953.", + "Powell, Maud, 1867-1920." + ], + "dateStartYear": [ + 1888 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-155 no. 189" + }, + { + "type": "nypl:Bnumber", + "value": "10000061" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000029-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100579" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200060" + } + ], + "idOclc": [ + "NYPG001000029-C" + ], + "updatedAt": 1690381414203, + "publicationStatement": [ + "1888." + ], + "identifier": [ + "urn:bnum:10000061", + "urn:oclc:NYPG001000029-C", + "urn:undefined:NNSZ00100579", + "urn:undefined:(WaOLN)nyp0200060" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1888" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Huss, Henry Holden, 1862-1953 -- Manuscripts.", + "Violin and piano music -- Scores and parts." + ], + "titleDisplay": [ + "Hungarian melody and dance / Matus ; arranged by H.H.H. Mazurka caprice / Henry Holden Huss." + ], + "uri": "b10000061", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Hungarian song and dance.", + "Mazurka caprice." + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000061" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000061-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Hungarian+melody+and+dance&Site=LPAMR&CallNumber=JPB+83-155+no.+189&Author=Matus.&Date=1888.&ItemInfo3=https://catalog.nypl.org/record=b10000061&ReferenceNumber=b100000617&ItemInfo1=SUPERVISED+USE&ItemNumber=33433116929518&ItemISxN=i147463968&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000061-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746396", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:8", + "label": "manuscript music" + } + ], + "catalogItemType_packed": [ + "catalogItemType:8||manuscript music" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-155 no. 189" + ], + "identifierV2": [ + { + "value": "JPB 83-155 no. 189", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433116929518" + } + ], + "physicalLocation": [ + "JPB 83-155 no. 189" + ], + "identifier": [ + "urn:barcode:33433116929518" + ], + "idBarcode": [ + "33433116929518" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Hungarian+melody+and+dance&Site=LPAMR&CallNumber=JPB+83-155+no.+189&Author=Matus.&Date=1888.&ItemInfo3=https://catalog.nypl.org/record=b10000061&ReferenceNumber=b100000617&ItemInfo1=SUPERVISED+USE&ItemNumber=33433116929518&ItemISxN=i147463968&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-155 no. 000189" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000063", + "_score": null, + "_source": { + "extent": [ + "1 ms. score (2 leaves) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Ms. (in ink) in the hand of Henry Holden Huss.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For one or more voices and piano.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Huss, Henry Holden, 1862-1953", + "Huss, Henry Holden, 1862-1953 -- Manuscripts", + "Songs (Medium voice) with piano", + "Choruses, Secular (Mixed voices, 2 parts) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1953" + ], + "createdYear": [ + 1862 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "For it's free : our native land" + ], + "shelfMark": [ + "JPB 83-155 no. 190 " + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Proctor, David." + ], + "createdString": [ + "1862" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Huss, Henry Holden, 1862-1953." + ], + "dateStartYear": [ + 1862 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-155 no. 190 " + }, + { + "type": "nypl:Bnumber", + "value": "10000063" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000030-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100580" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200062" + } + ], + "idOclc": [ + "NYPG001000030-C" + ], + "dateEndYear": [ + 1953 + ], + "updatedAt": 1690381455123, + "publicationStatement": [ + "[19--?]" + ], + "identifier": [ + "urn:bnum:10000063", + "urn:oclc:NYPG001000030-C", + "urn:undefined:NNSZ00100580", + "urn:undefined:(WaOLN)nyp0200062" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1862" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Huss, Henry Holden, 1862-1953 -- Manuscripts.", + "Songs (Medium voice) with piano.", + "Choruses, Secular (Mixed voices, 2 parts) with piano." + ], + "titleDisplay": [ + "For it's free : our native land / music by David Proctor ; author anon." + ], + "uri": "b10000063", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000063" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000063-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=For+it's+free+:+our+native+land&Site=LPAMR&CallNumber=JPB+83-155+no.+190+JPB+83-155+no.+190+&Author=Proctor,+David.&Date=[19--?]&ItemInfo3=https://catalog.nypl.org/record=b10000063&ReferenceNumber=b100000630&ItemInfo1=SUPERVISED+USE&ItemNumber=33433116929526&ItemISxN=i14746397x&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000063-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746397", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:8", + "label": "manuscript music" + } + ], + "catalogItemType_packed": [ + "catalogItemType:8||manuscript music" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-155 no. 190" + ], + "identifierV2": [ + { + "value": "JPB 83-155 no. 190", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433116929526" + } + ], + "physicalLocation": [ + "JPB 83-155 no. 190" + ], + "identifier": [ + "urn:barcode:33433116929526" + ], + "idBarcode": [ + "33433116929526" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=For+it's+free+:+our+native+land&Site=LPAMR&CallNumber=JPB+83-155+no.+190+JPB+83-155+no.+190+&Author=Proctor,+David.&Date=[19--?]&ItemInfo3=https://catalog.nypl.org/record=b10000063&ReferenceNumber=b100000630&ItemInfo1=SUPERVISED+USE&ItemNumber=33433116929526&ItemISxN=i14746397x&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-155 no. 000190" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000071", + "_score": null, + "_source": { + "extent": [ + "1 ms. score ([3] p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Holograph signed, in ink.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For voice and piano.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Gilbert, Henry F. B. 1868-1928", + "Gilbert, Henry F. B. 1868-1928 -- Manuscripts", + "Riley, James Whitcomb, 1849-1916", + "Riley, James Whitcomb, 1849-1916 -- Musical settings", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1928" + ], + "createdYear": [ + 1868 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The treasure of the wise man" + ], + "shelfMark": [ + "JPB 83-480" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gilbert, Henry F. B. (Henry Franklin Belknap), 1868-1928." + ], + "createdString": [ + "1868" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Riley, James Whitcomb, 1849-1916." + ], + "dateStartYear": [ + 1868 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-480" + }, + { + "type": "nypl:Bnumber", + "value": "10000071" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000034-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100584" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200070" + } + ], + "idOclc": [ + "NYPG001000034-C" + ], + "dateEndYear": [ + 1928 + ], + "updatedAt": 1690381457572, + "publicationStatement": [ + "[19--?]" + ], + "identifier": [ + "urn:bnum:10000071", + "urn:oclc:NYPG001000034-C", + "urn:undefined:NNSZ00100584", + "urn:undefined:(WaOLN)nyp0200070" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1868" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Gilbert, Henry F. B. 1868-1928 -- Manuscripts.", + "Riley, James Whitcomb, 1849-1916 -- Musical settings.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "The treasure of the wise man / [words by] James Whitcomb Riley ; [music by] Henry F. Gilbert." + ], + "uri": "b10000071", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 cm." + ] + }, + "sort": [ + "b10000071" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000071-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+treasure+of+the+wise+man&Site=LPAMR&CallNumber=JPB+83-480&Author=Gilbert,+Henry+F.+B.&Date=[19--?]&ItemInfo3=https://catalog.nypl.org/record=b10000071&ReferenceNumber=b10000071x&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464018&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000071-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746401", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-480" + ], + "identifierV2": [ + { + "value": "JPB 83-480", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "JPB 83-480" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+treasure+of+the+wise+man&Site=LPAMR&CallNumber=JPB+83-480&Author=Gilbert,+Henry+F.+B.&Date=[19--?]&ItemInfo3=https://catalog.nypl.org/record=b10000071&ReferenceNumber=b10000071x&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464018&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-000480" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000077", + "_score": null, + "_source": { + "extent": [ + "1 ms. score ([3] p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Holograph signed, in ink.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For voice and piano.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At end: Komponirt im September 1892 ; revidirt & ballindet [?] im Mai 1894.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Published in: Sechs Lieder für tiefe Stimme mit Pianofortebegleitung, op. 2, no. 1. Leipzig, New York : Breitkopf & Härtel, c1900.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Paper extremely brittle and badly torn.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Goldmark, Rubin, 1872-1936", + "Goldmark, Rubin, 1872-1936 -- Manuscripts", + "Songs (Low voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1894 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Blaublümlein : rheinisches Volkslied" + ], + "shelfMark": [ + "JPB 83-483" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Goldmark, Rubin, 1872-1936." + ], + "createdString": [ + "1894" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1894 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-483" + }, + { + "type": "nypl:Bnumber", + "value": "10000077" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000037-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100587" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200076" + } + ], + "idOclc": [ + "NYPG001000037-C" + ], + "uniformTitle": [ + "Lieder, op. 2. Blaublümlein" + ], + "updatedAt": 1690381457572, + "publicationStatement": [ + "1894 May." + ], + "identifier": [ + "urn:bnum:10000077", + "urn:oclc:NYPG001000037-C", + "urn:undefined:NNSZ00100587", + "urn:undefined:(WaOLN)nyp0200076" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1894" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Goldmark, Rubin, 1872-1936 -- Manuscripts.", + "Songs (Low voice) with piano." + ], + "titleDisplay": [ + "Blaublümlein : rheinisches Volkslied / Rubin Goldmark." + ], + "uri": "b10000077", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Lieder, op. 2. Blaublümlein" + ], + "dimensions": [ + "34 cm." + ] + }, + "sort": [ + "b10000077" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000077-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Blaubl©ơmlein+:+rheinisches+Volkslied&Site=LPAMR&CallNumber=JPB+83-483&Author=Goldmark,+Rubin,&Date=1894+May.&ItemInfo3=https://catalog.nypl.org/record=b10000077&ReferenceNumber=b100000770&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464043&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000077-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746404", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-483" + ], + "identifierV2": [ + { + "value": "JPB 83-483", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "JPB 83-483" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Blaubl©ơmlein+:+rheinisches+Volkslied&Site=LPAMR&CallNumber=JPB+83-483&Author=Goldmark,+Rubin,&Date=1894+May.&ItemInfo3=https://catalog.nypl.org/record=b10000077&ReferenceNumber=b100000770&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464043&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-000483" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000079", + "_score": null, + "_source": { + "extent": [ + "1 ms. score ([3] p.) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Holograph, in ink.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For voice and piano.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "English and German words.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Goldmark, Rubin, 1872-1936", + "Goldmark, Rubin, 1872-1936 -- Manuscripts", + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1936" + ], + "createdYear": [ + 1872 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The forest has its birds of song" + ], + "shelfMark": [ + "JPB 83-484" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Goldmark, Rubin, 1872-1936." + ], + "createdString": [ + "1872" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1872 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-484" + }, + { + "type": "nypl:Bnumber", + "value": "10000079" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000038-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100588" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200078" + } + ], + "idOclc": [ + "NYPG001000038-C" + ], + "dateEndYear": [ + 1936 + ], + "updatedAt": 1690381457572, + "publicationStatement": [ + "[18--?]" + ], + "identifier": [ + "urn:bnum:10000079", + "urn:oclc:NYPG001000038-C", + "urn:undefined:NNSZ00100588", + "urn:undefined:(WaOLN)nyp0200078" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1872" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Goldmark, Rubin, 1872-1936 -- Manuscripts.", + "Songs (Medium voice) with piano." + ], + "titleDisplay": [ + "The forest has its birds of song / [Rubin Goldmark]." + ], + "uri": "b10000079", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "34 cm." + ] + }, + "sort": [ + "b10000079" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000079-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+forest+has+its+birds+of+song&Site=LPAMR&CallNumber=JPB+83-484&Author=Goldmark,+Rubin,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10000079&ReferenceNumber=b100000794&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464055&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000079-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746405", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-484" + ], + "identifierV2": [ + { + "value": "JPB 83-484", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "JPB 83-484" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=The+forest+has+its+birds+of+song&Site=LPAMR&CallNumber=JPB+83-484&Author=Goldmark,+Rubin,&Date=[18--?]&ItemInfo3=https://catalog.nypl.org/record=b10000079&ReferenceNumber=b100000794&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464055&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-000484" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000084", + "_score": null, + "_source": { + "extent": [ + "1 ms. score ([2] leaves) ; 1 ms. part ([1] leaf) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Holograph, in ink.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Published in: A group of songs, op. 1-2. Boston: Boston Music Co., c1896.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Accompanied by text (holograph, 2 leaves, 26 cm.) dated June 27th, 1889.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Gow, George Coleman, 1860-1938", + "Gow, George Coleman, 1860-1938 -- Manuscripts", + "Songs (Medium voice) with instrumental ensemble", + "Songs (Medium voice) with instrumental ensemble -- Scores and parts" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1890 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Slumber song : violin, voice, and pianoforte" + ], + "shelfMark": [ + "JPB 83-488" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gow, George Coleman, 1860-1938." + ], + "createdString": [ + "1890" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1890 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-488" + }, + { + "type": "nypl:Bnumber", + "value": "10000084" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000041-C" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100591" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200083" + } + ], + "idOclc": [ + "NYPG001000041-C" + ], + "updatedAt": 1690381457252, + "publicationStatement": [ + "1890 Mar. 10." + ], + "identifier": [ + "urn:bnum:10000084", + "urn:oclc:NYPG001000041-C", + "urn:undefined:NNSZ00100591", + "urn:undefined:(WaOLN)nyp0200083" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:not", + "label": "Notated music" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1890" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Gow, George Coleman, 1860-1938 -- Manuscripts.", + "Songs (Medium voice) with instrumental ensemble -- Scores and parts." + ], + "titleDisplay": [ + "Slumber song : violin, voice, and pianoforte / by G. C. Gow." + ], + "uri": "b10000084", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "35 cm. + 27 cm." + ] + }, + "sort": [ + "b10000084" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10000084-e", + "electronicLocator": [ + { + "url": "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Slumber+song+:+violin,+voice,+and+pianoforte&Site=LPAMR&CallNumber=JPB+83-488&Author=Gow,+George+Coleman,&Date=1890+Mar.+10.&ItemInfo3=https://catalog.nypl.org/record=b10000084&ReferenceNumber=b100000848&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464080&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound", + "label": "Request Access to Music & Recorded Sound Division Special Collections material" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "bi10000084-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746408", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "JPB 83-488" + ], + "identifierV2": [ + { + "value": "JPB 83-488", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "JPB 83-488" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Form=30&Title=Slumber+song+:+violin,+voice,+and+pianoforte&Site=LPAMR&CallNumber=JPB+83-488&Author=Gow,+George+Coleman,&Date=1890+Mar.+10.&ItemInfo3=https://catalog.nypl.org/record=b10000084&ReferenceNumber=b100000848&ItemInfo1=SUPERVISED+USE&ItemISxN=i147464080&Genre=Manuscript+Music&Location=Performing+Arts+Music+and+Recorded+Sound" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Notated music" + ], + "shelfMark_sort": "aJPB 83-000488" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000284", + "_score": null, + "_source": { + "extent": [ + "20, 429 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint of the 1826 ed., published by Dar al-Inṭibāʻ-i Dār al-Salṭanah, Tabrīz.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- History", + "Iran -- History -- Qajar dynasty, 1794-1925", + "Iran -- Foreign relations", + "Iran -- Foreign relations -- Russia", + "Russia", + "Russia -- Foreign relations", + "Russia -- Foreign relations -- Iran" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Ibn Sīnā" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "dateEndString": [ + "1826" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Maʼā̲sir-i sulṭānīyah, tārīkh-i janǵhā-yi Īrān va Rūs." + ], + "shelfMark": [ + "*OMZ 82-4274" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Maftūn Dunbulī, ʻAbd al-Razzāq, 1762 or 3-1827 or 8." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "74216823" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ṣadrī Afshār, Ghulām Ḥusayn." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 82-4274" + }, + { + "type": "nypl:Bnumber", + "value": "10000284" + }, + { + "type": "bf:Lccn", + "value": "74216823" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000237-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100237" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200283" + } + ], + "idOclc": [ + "NYPG001000237-B" + ], + "dateEndYear": [ + 1826 + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Tihrān] Intishārāt-i Ibn Sīnā, 1351 [1972]" + ], + "identifier": [ + "urn:bnum:10000284", + "urn:lccn:74216823", + "urn:oclc:NYPG001000237-B", + "urn:undefined:NNSZ00100237", + "urn:undefined:(WaOLN)nyp0200283" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- History -- Qajar dynasty, 1794-1925.", + "Iran -- Foreign relations -- Russia.", + "Russia -- Foreign relations -- Iran." + ], + "titleDisplay": [ + "Maʼā̲sir-i sulṭānīyah, tārīkh-i janǵhā-yi Īrān va Rūs. A̲sar-i ʻAbd al-Razzāq Maftūn Dunbulī. Bā muqaddamah va fihristhā bi-ihtimām-i Ghulām Ḥusayn Ṣadrī Afshār." + ], + "uri": "b10000284", + "lccClassification": [ + "DS302 .M33 1972" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tihrān]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000284" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942064", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMZ 82-4274" + ], + "identifierV2": [ + { + "value": "*OMZ 82-4274", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014539161" + } + ], + "physicalLocation": [ + "*OMZ 82-4274" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014539161" + ], + "idBarcode": [ + "33433014539161" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMZ 82-004274" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000348", + "_score": null, + "_source": { + "extent": [ + "[28], 573 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [7-10] (1st group)", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran", + "Iran -- Description and travel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Mīrzā Ḥabīb Allāh" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1880" + ], + "createdYear": [ + 1879 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kitāb-i mustaṭāb-i ganj-i dānish" + ], + "shelfMark": [ + "*ONA+ 82-2677" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Muʻtamid al-Sulṭān, Muḥammad Taqī khān Ḥakīm, mutakhalliṣ bih Ḥakīm." + ], + "createdString": [ + "1879" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1879 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677" + }, + { + "type": "nypl:Bnumber", + "value": "10000348" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000301-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100301" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200347" + } + ], + "idOclc": [ + "NYPG001000301-B" + ], + "dateEndYear": [ + 1880 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ṭihrān : Mīrzā Ḥabīb Allāh, 1305 [1879 or 1880]" + ], + "identifier": [ + "urn:bnum:10000348", + "urn:oclc:NYPG001000301-B", + "urn:undefined:NNSZ00100301", + "urn:undefined:(WaOLN)nyp0200347" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1879" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran -- Description and travel." + ], + "titleDisplay": [ + "Kitāb-i mustaṭāb-i ganj-i dānish / az taʼlīfāt-i Muʻtamid al-Sulṭān Muḥammad Taqī Khān mutikhalliṣ bih Ḥakīm ; bi-saʻī va ihtimām-i Mullā Maḥmūd va Mullā Rizā Kitābfurūsh." + ], + "uri": "b10000348", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ṭihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Ganj-i dānish." + ], + "dimensions": [ + "34 cm." + ] + }, + "sort": [ + "b10000348" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433059840763" + ], + "physicalLocation": [ + "*ONA+ 82-2677 " + ], + "shelfMark_sort": "a*ONA+ 82-2677 ", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783848", + "shelfMark": [ + "*ONA+ 82-2677 " + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677 " + }, + { + "type": "bf:Barcode", + "value": "33433059840763" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433059840763" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000546", + "_score": null, + "_source": { + "extent": [ + "16 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trük. K. Mattiesen" + ], + "language": [ + { + "id": "lang:est", + "label": "Estonian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Üks öö tissa jöe peal" + ], + "shelfMark": [ + "*Z-3414 no. 9" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1891" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1891 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10000546" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000503-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100503" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200545" + } + ], + "idOclc": [ + "NYPG001000503-B" + ], + "updatedAt": 1689280617202, + "publicationStatement": [ + "Tartus : Trük. K. Mattiesen, 1891." + ], + "identifier": [ + "urn:bnum:10000546", + "urn:oclc:NYPG001000503-B", + "urn:undefined:NNSZ00100503", + "urn:undefined:(WaOLN)nyp0200545" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Üks öö tissa jöe peal [microform]." + ], + "uri": "b10000546", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tartus" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "sort": [ + "b10000546" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30112243", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "identifierV2": [ + { + "value": "*Z-3414 no. 1-16", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" + } + ], + "enumerationChronology": [ + "no. 1-16" + ], + "physicalLocation": [ + "*Z-3414" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433107825220" + ], + "idBarcode": [ + "33433107825220" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 16 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000547", + "_score": null, + "_source": { + "extent": [ + "31 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Trük. L. Weyde" + ], + "language": [ + { + "id": "lang:est", + "label": "Estonian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1874 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kirjakandja tuike üks rutuline rööwlide käest päästaw sönum." + ], + "shelfMark": [ + "*Z-3414 no. 6" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1874" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1874 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 6" + }, + { + "type": "nypl:Bnumber", + "value": "10000547" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000504-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100504" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200546" + } + ], + "idOclc": [ + "NYPG001000504-B" + ], + "updatedAt": 1689280617202, + "publicationStatement": [ + "Riigas : Trük. L. Weyde, 1874." + ], + "identifier": [ + "urn:bnum:10000547", + "urn:oclc:NYPG001000504-B", + "urn:undefined:NNSZ00100504", + "urn:undefined:(WaOLN)nyp0200546" + ], + "genreForm": [ + "Estonian fiction." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1874" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Kirjakandja tuike [microform] : üks rutuline rööwlide käest päästaw sönum." + ], + "uri": "b10000547", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Riigas" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "sort": [ + "b10000547" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30112243", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "identifierV2": [ + { + "value": "*Z-3414 no. 1-16", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" + } + ], + "enumerationChronology": [ + "no. 1-16" + ], + "physicalLocation": [ + "*Z-3414" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433107825220" + ], + "idBarcode": [ + "33433107825220" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 16 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000548", + "_score": null, + "_source": { + "extent": [ + "89 p. : ill., port. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "United States Lawn Tennis Association", + "Tennis", + "Tennis -- Rules" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wright & Ditson" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1889 + ], + "type": [ + "nypl:Item" + ], + "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 ..." + ], + "shelfMark": [ + "*Z-3414 no. 4" + ], + "numItemVolumesParsed": [ + 1 + ], + "createdString": [ + "1889" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "United States Lawn Tennis Association." + ], + "dateStartYear": [ + 1889 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 4" + }, + { + "type": "nypl:Bnumber", + "value": "10000548" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000505-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100505" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200547" + } + ], + "idOclc": [ + "NYPG001000505-B" + ], + "updatedAt": 1689280617202, + "publicationStatement": [ + "Boston, Mass. : Wright & Ditson, 1889." + ], + "identifier": [ + "urn:bnum:10000548", + "urn:oclc:NYPG001000505-B", + "urn:undefined:NNSZ00100505", + "urn:undefined:(WaOLN)nyp0200547" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1889" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "United States Lawn Tennis Association.", + "Tennis -- Rules." + ], + "titleDisplay": [ + "Official lawn tennis rules [microform] : 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 ..." + ], + "uri": "b10000548", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Boston, Mass." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "16 cm." + ] + }, + "sort": [ + "b10000548" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30112243", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "identifierV2": [ + { + "value": "*Z-3414 no. 1-16", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" + } + ], + "enumerationChronology": [ + "no. 1-16" + ], + "physicalLocation": [ + "*Z-3414" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433107825220" + ], + "idBarcode": [ + "33433107825220" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 16 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000574", + "_score": null, + "_source": { + "extent": [ + "xii, 56 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Maisonneuve" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Les hymnes rohitas Livre XIII de l'Atharva-Véda" + ], + "shelfMark": [ + "*ZO-180 no. 10" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1891" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Henry, Victor, 1850-1907." + ], + "dateStartYear": [ + 1891 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-180 no. 10" + }, + { + "type": "nypl:Bnumber", + "value": "10000574" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000531-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100531" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200573" + } + ], + "idOclc": [ + "NYPG001000531-B" + ], + "uniformTitle": [ + "Vedas. Atharvaveda. French. Selections." + ], + "updatedAt": 1674870762646, + "publicationStatement": [ + "Paris, J. Maisonneuve, 1891." + ], + "identifier": [ + "urn:bnum:10000574", + "urn:oclc:NYPG001000531-B", + "urn:undefined:NNSZ00100531", + "urn:undefined:(WaOLN)nyp0200573" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Les hymnes rohitas [microform] Livre XIII de l'Atharva-Véda, traduit et commenté par Victor Henry." + ], + "uri": "b10000574", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8̕." + ] + }, + "sort": [ + "b10000574" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30080033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZO-180 11 misc oriental titles" + ], + "identifierV2": [ + { + "value": "*ZO-180 11 misc oriental titles", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433105673077" + } + ], + "enumerationChronology": [ + "11 misc oriental titles" + ], + "physicalLocation": [ + "*ZO-180" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433105673077" + ], + "idBarcode": [ + "33433105673077" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZO-180 11 misc oriental titles" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000575", + "_score": null, + "_source": { + "extent": [ + "23 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sloman, Jane, 1824-", + "Pianists", + "Pianists -- England", + "Pianists -- England -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dutton and Wentworth" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1841 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A Biographical sketch of Jane Sloman, the celebrated pianiste" + ], + "shelfMark": [ + "*ZB-1040" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1841" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1841 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZB-1040" + }, + { + "type": "nypl:Bnumber", + "value": "10000575" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000532-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100532" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200574" + } + ], + "idOclc": [ + "NYPG001000532-B" + ], + "updatedAt": 1690381455123, + "publicationStatement": [ + "Boston : Dutton and Wentworth, 1841." + ], + "identifier": [ + "urn:bnum:10000575", + "urn:oclc:NYPG001000532-B", + "urn:undefined:NNSZ00100532", + "urn:undefined:(WaOLN)nyp0200574" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1841" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sloman, Jane, 1824-", + "Pianists -- England -- Biography." + ], + "titleDisplay": [ + "A Biographical sketch of Jane Sloman, the celebrated pianiste [microform]." + ], + "uri": "b10000575", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Boston" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + "b10000575" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i17446753", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:pam32", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam32||Performing Arts Research Collections - Music" + ], + "shelfMark": [ + "*ZB-1040" + ], + "identifierV2": [ + { + "value": "*ZB-1040", + "type": "bf:ShelfMark" + } + ], + "physicalLocation": [ + "*ZB-1040" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZB-001040" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000576", + "_score": null, + "_source": { + "extent": [ + "xxviii, 469 p. illus., maps (part fold.)" + ], + "note": [ + { + "noteType": "Note", + "label": "First published under title: A history of Egypt under the Pharaohs.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- History", + "Egypt -- History -- To 332 B.C" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Murray" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Egypt under the Pharaohs a history derived entirely from the monuments." + ], + "shelfMark": [ + "*ZO-185 no. 5" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Brugsch, Heinrich, 1827-1894." + ], + "createdString": [ + "1891" + ], + "idLccn": [ + "49042562" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1891 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-185 no. 5" + }, + { + "type": "nypl:Bnumber", + "value": "10000576" + }, + { + "type": "bf:Lccn", + "value": "49042562" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000533-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100533" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200575" + } + ], + "idOclc": [ + "NYPG001000533-B" + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "London, J. Murray, 1891." + ], + "identifier": [ + "urn:bnum:10000576", + "urn:lccn:49042562", + "urn:oclc:NYPG001000533-B", + "urn:undefined:NNSZ00100533", + "urn:undefined:(WaOLN)nyp0200575" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- History -- To 332 B.C." + ], + "titleDisplay": [ + "Egypt under the Pharaohs [microform] a history derived entirely from the monuments." + ], + "uri": "b10000576", + "lccClassification": [ + "DT83 .89 1891" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000576" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30080739", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZO-185 5 misc oriental titles" + ], + "identifierV2": [ + { + "value": "*ZO-185 5 misc oriental titles", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433105673168" + } + ], + "enumerationChronology": [ + "5 misc oriental titles" + ], + "physicalLocation": [ + "*ZO-185" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433105673168" + ], + "idBarcode": [ + "33433105673168" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZO-185 5 misc oriental titles" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000577", + "_score": null, + "_source": { + "extent": [ + "137 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chinese language", + "Chinese language -- Writing" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C. B. Norton" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1854 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*ZO-185 no. 1" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Andrews, Stephen Pearl, 1812-1886." + ], + "createdString": [ + "1854" + ], + "idLccn": [ + "12008608" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1854 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-185 no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "10000577" + }, + { + "type": "bf:Lccn", + "value": "12008608" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000534-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100534" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200576" + } + ], + "idOclc": [ + "NYPG001000534-B" + ], + "updatedAt": 1674870772746, + "publicationStatement": [ + "New York, C. B. Norton, 1854." + ], + "identifier": [ + "urn:bnum:10000577", + "urn:lccn:12008608", + "urn:oclc:NYPG001000534-B", + "urn:undefined:NNSZ00100534", + "urn:undefined:(WaOLN)nyp0200576" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1854" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chinese language -- Writing." + ], + "titleDisplay": [ + "Discoveries in Chinese, or, The symbolism of the primitive characters of the Chinese system of writing [microform] As a contribution to philology and ethnology and a practical aid in the acquisition of the Chinese language, by Stephen Pearl Andrews." + ], + "uri": "b10000577", + "lccClassification": [ + "PL1171 .A6" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Discoveries in Chinese", + "Symbolism of the primitive characters of the Chinese system of writing" + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000577" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30080739", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZO-185 5 misc oriental titles" + ], + "identifierV2": [ + { + "value": "*ZO-185 5 misc oriental titles", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433105673168" + } + ], + "enumerationChronology": [ + "5 misc oriental titles" + ], + "physicalLocation": [ + "*ZO-185" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433105673168" + ], + "idBarcode": [ + "33433105673168" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZO-185 5 misc oriental titles" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000578", + "_score": null, + "_source": { + "extent": [ + "vi, 285 p. illus." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindustani language", + "Hindustani language -- Glossaries, vocabularies, etc", + "Agriculture", + "Agriculture -- Terminology" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Supt. of Govt. Printing" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1888 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "A rural and agricultural glossary for the N.-W. provinces and Oudh" + ], + "shelfMark": [ + "*ZO-187 no. 6" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Crooke, William, 1848-1923." + ], + "createdString": [ + "1888" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1888 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-187 no. 6" + }, + { + "type": "nypl:Bnumber", + "value": "10000578" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000535-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100535" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200577" + } + ], + "idOclc": [ + "NYPG001000535-B" + ], + "updatedAt": 1674870767447, + "publicationStatement": [ + "Calcutta, Supt. of Govt. Printing, 1888." + ], + "identifier": [ + "urn:bnum:10000578", + "urn:oclc:NYPG001000535-B", + "urn:undefined:NNSZ00100535", + "urn:undefined:(WaOLN)nyp0200577" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1888" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindustani language -- Glossaries, vocabularies, etc.", + "Agriculture -- Terminology." + ], + "titleDisplay": [ + "A rural and agricultural glossary for the N.-W. provinces and Oudh [microform] [By] William Crooke." + ], + "uri": "b10000578", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Calcutta" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "4̕." + ] + }, + "sort": [ + "b10000578" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i30081049", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "shelfMark": [ + "*ZO-187 9 misc oriental titles" + ], + "identifierV2": [ + { + "value": "*ZO-187 9 misc oriental titles", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433105673309" + } + ], + "enumerationChronology": [ + "9 misc oriental titles" + ], + "physicalLocation": [ + "*ZO-187" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433105673309" + ], + "idBarcode": [ + "33433105673309" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ZO-187 9 misc oriental titles" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000985", + "_score": null, + "_source": { + "extent": [ + "22, 460 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint of the 1884 ed. published in Lahore.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Lahore (Pakistan)", + "Lahore (Pakistan) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Majlis-i Taraqqī-i Adab" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "dateEndString": [ + "1884" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tārīkh-i Lāhaur" + ], + "shelfMark": [ + "*OKTY 82-4463" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "KanhaiyyĀ Lāl Hindī, 1830-1888." + ], + "createdString": [ + "1977" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Fāiq, Kalb ʻAlī Khān." + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTY 82-4463" + }, + { + "type": "nypl:Bnumber", + "value": "10000985" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002000395-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00200995" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200984" + } + ], + "idOclc": [ + "NYPG002000395-B" + ], + "dateEndYear": [ + 1884 + ], + "updatedAt": 1674870777259, + "publicationStatement": [ + "Lāhau : Majlis-i Taraqqī-i Adab, 1977." + ], + "identifier": [ + "urn:bnum:10000985", + "urn:oclc:NYPG002000395-B", + "urn:undefined:NNSZ00200995", + "urn:undefined:(WaOLN)nyp0200984" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Lahore (Pakistan) -- History." + ], + "titleDisplay": [ + "Tārīkh-i Lāhaur / muṣannifah-yi Kanhaiyyā Lāl Hindī ;murattabah-yi Kalb ʻalī Khān Fāʼiq." + ], + "uri": "b10000985", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lāhau" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000985" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000619", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTY 82-4463" + ], + "identifierV2": [ + { + "value": "*OKTY 82-4463", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011242603" + } + ], + "physicalLocation": [ + "*OKTY 82-4463" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011242603" + ], + "idBarcode": [ + "33433011242603" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTY 82-004463" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001056", + "_score": null, + "_source": { + "extent": [ + "67 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "s.l.," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1983" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Buḥūr al-ḥikmah [microform]." + ], + "shelfMark": [ + "*ZO-243 no. 1" + ], + "creatorLiteral": [ + "Baháʼuʼlláh, 1817-1892." + ], + "createdString": [ + "1900" + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-243 no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "10001056" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201067" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201055" + } + ], + "dateEndYear": [ + 1983 + ], + "updatedAt": 1636079365906, + "publicationStatement": [ + "[New Delhi? : s.l., 19-]" + ], + "identifier": [ + "urn:bnum:10001056", + "urn:undefined:NNSZ00201067", + "urn:undefined:(WaOLN)nyp0201055" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Buḥūr al-ḥikmah [microform]." + ], + "uri": "b10001056", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[New Delhi? :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "14 cm." + ] + }, + "sort": [ + "b10001056" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30081267", + "shelfMark": [ + "*ZO-243 11 Arabic titles" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-243 11 Arabic titles" + }, + { + "type": "bf:Barcode", + "value": "33433105673531" + } + ], + "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" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001080", + "_score": null, + "_source": { + "extent": [ + "577 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"The first printed book in Malayalam\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Facsimile reproduction of old Malayalam and transcription, paraphrase, and notes in modern Malayalam, on opposite pages.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Original t.p. reads: Nasṟāṇikaḷ okkakkuṃ aṟiyeṇṭunna saṅkṣepavedārtthaṃ=Compendiosa legis explanatio omnibus Christianis scitu necessaria. Malabarico idiomate. Romāyilninn Miśihā pirṟannīṭṭ 1772 śṟȧṣṭa melpaṭṭakkāraruṭe anuvādattāl=Romae An. A nativit. Christi 1772, praisidum facultate\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Catholic Church. Syro-Malabar rite", + "Christianity", + "Christianity -- Philosophy" + ], + "publisherLiteral": [ + "Ḍi. Ṣi. Buks ; Kārmel Pabḷiṣiṅg Senṟar," + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "dateEndString": [ + "1772" + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" + ], + "shelfMark": [ + "*OLD 84-299" + ], + "creatorLiteral": [ + "Piyāniyas, Kḷemanṟ, 1731-1782." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82904075" + ], + "contributorLiteral": [ + "Choondal, Chummar, 1940-", + "Mathew, Ulakamthara." + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-299" + }, + { + "type": "nypl:Bnumber", + "value": "10001080" + }, + { + "type": "bf:Lccn", + "value": "82904075" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201091" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201079" + } + ], + "dateEndYear": [ + 1772 + ], + "updatedAt": 1636128328325, + "publicationStatement": [ + "Kōṭṭayaṃ : Ḍi. Ṣi. Buks ; Tiruvanantapuraṃ : Kārmel Pabḷiṣiṅg Senṟar, 1980." + ], + "identifier": [ + "urn:bnum:10001080", + "urn:lccn:82904075", + "urn:undefined:NNSZ00201091", + "urn:undefined:(WaOLN)nyp0201079" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Catholic Church. Syro-Malabar rite.", + "Christianity -- Philosophy." + ], + "titleDisplay": [ + "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp / Kḷemanṟ Piyāniyas = Samkshepa vedartham / by Clement Pianius ; introduction by Chummar Choondel ; commentary by Mathew Ulakamthara." + ], + "uri": "b10001080", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōṭṭayaṃ : Tiruvanantapuraṃ :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10001080" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011099029" + ], + "physicalLocation": [ + "*OLD 84-299" + ], + "shelfMark_sort": "a*OLD 84-000299", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10000682", + "shelfMark": [ + "*OLD 84-299" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-299" + }, + { + "type": "bf:Barcode", + "value": "33433011099029" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011099029" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001550", + "_score": null, + "_source": { + "extent": [ + "1 v. (no paging) ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Colophon title.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Shīʻah", + "Shīʻah -- Doctrines" + ], + "publisherLiteral": [ + "Chāpkhānah-ʼi Ḥajī ʻAbd al-Ḥamīd" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1851" + ], + "createdYear": [ + 1850 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "[Zubdat al-maʻārif" + ], + "shelfMark": [ + "*OGI+ 82-3286" + ], + "creatorLiteral": [ + "Iṣfahānī, Mullā ʻAlī Akbar." + ], + "createdString": [ + "1850" + ], + "dateStartYear": [ + 1850 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI+ 82-3286" + }, + { + "type": "nypl:Bnumber", + "value": "10001550" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201585" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201548" + } + ], + "dateEndYear": [ + 1851 + ], + "updatedAt": 1653404628152, + "publicationStatement": [ + "[Tihrān?] : Chāpkhānah-ʼi Ḥajī ʻAbd al-Ḥamīd, 1267 [1850 or 1851]" + ], + "identifier": [ + "urn:bnum:10001550", + "urn:undefined:NNSZ00201585", + "urn:undefined:(WaOLN)nyp0201548" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1850" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Shīʻah -- Doctrines." + ], + "titleDisplay": [ + "[Zubdat al-maʻārif / Ākhund Mullā ʻAlī Akbar Iṣfahānī]." + ], + "uri": "b10001550", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tihrān?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "34 cm." + ] + }, + "sort": [ + "b10001550" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058659826" + ], + "shelfMark_sort": "a*OGI+ 82-003286", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784096", + "shelfMark": [ + "*OGI+ 82-3286" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433058659826" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058659826" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001735", + "_score": null, + "_source": { + "extent": [ + "2 v. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Handbooks, vade-mecums, etc", + "Middle East", + "Middle East -- Biography" + ], + "publisherLiteral": [ + "s.n" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 1873 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nuzhat al-jalīs wa-munyat al-adīb al-anīs" + ], + "shelfMark": [ + "*ZO-158 no. 9" + ], + "creatorLiteral": [ + "Mūsawī, al-ʻAbbās ibn ʻAlī, active 1735." + ], + "createdString": [ + "1873" + ], + "dateStartYear": [ + 1873 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-158 no. 9" + }, + { + "type": "nypl:Bnumber", + "value": "10001735" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201770" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201733" + } + ], + "updatedAt": 1657681910685, + "publicationStatement": [ + "[al-Qāhirah : s.n, 1873?]" + ], + "identifier": [ + "urn:bnum:10001735", + "urn:undefined:NNSZ00201770", + "urn:undefined:(WaOLN)nyp0201733" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1873" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Handbooks, vade-mecums, etc.", + "Middle East -- Biography." + ], + "titleDisplay": [ + "Nuzhat al-jalīs wa-munyat al-adīb al-anīs [microform] / taʼlīf al-ʻAbbās ibn ʻAlī ibn Nūr al-Dīn al-Makkī al-Ḥusaynī al-Mūsawī." + ], + "uri": "b10001735", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8̕." + ] + }, + "sort": [ + "b10001735" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433098135548" + ], + "physicalLocation": [ + "*ZO-158" + ], + "shelfMark_sort": "a*ZO-158 no. 000001-10", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30154976", + "shelfMark": [ + "*ZO-158 no. 1-10" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001741", + "_score": null, + "_source": { + "extent": [ + "4v. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "ʻIyāḍ ibn Mūsá, 1083-1149" + ], + "publisherLiteral": [ + "Matbaa-yi Osmaniye," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1897" + ], + "createdYear": [ + 1894 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nasīm al-riyāḍ fī sharḥ Shifāʼ al-Qāḍī ʻIyāḍ [microform]" + ], + "shelfMark": [ + "*ZO-162" + ], + "creatorLiteral": [ + "Khafājī, Aḥmad ibn Muḥammad, -1659." + ], + "createdString": [ + "1894" + ], + "contributorLiteral": [ + "Schiff Collection." + ], + "dateStartYear": [ + 1894 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-162" + }, + { + "type": "nypl:Bnumber", + "value": "10001741" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201776" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201739" + } + ], + "dateEndYear": [ + 1897 + ], + "updatedAt": 1641230723038, + "publicationStatement": [ + "Der-i Saadet : Matbaa-yi Osmaniye, 1312-17 [1894-97]" + ], + "identifier": [ + "urn:bnum:10001741", + "urn:undefined:NNSZ00201776", + "urn:undefined:(WaOLN)nyp0201739" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1894" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "ʻIyāḍ ibn Mūsá, 1083-1149." + ], + "titleDisplay": [ + "Nasīm al-riyāḍ fī sharḥ Shifāʼ al-Qāḍī ʻIyāḍ [microform] / li-Aḥmad Shihāb al-Dīn al-Khafājī al-Miṣrī." + ], + "uri": "b10001741", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Der-i Saadet :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "4̕." + ] + }, + "sort": [ + "b10001741" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105672749" + ], + "physicalLocation": [ + "*ZO-162" + ], + "shelfMark_sort": "a*ZO-162 1894-001897", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30079670", + "shelfMark": [ + "*ZO-162 1894-1897" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-162 1894-1897" + }, + { + "type": "bf:Barcode", + "value": "33433105672749" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "enumerationChronology": [ + "1894-1897" + ], + "idBarcode": [ + "33433105672749" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001747", + "_score": null, + "_source": { + "extent": [ + "8, 148 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "On margin: Aṭbāq al-dhahab / ʻAbd al-Muʼmin al-Maghribī.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Middle East", + "Middle East -- Biography" + ], + "publisherLiteral": [ + "al-Maṭbaʻah al-ʻĀmirah al-Sharafīyah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 1890 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tuḥfat ahl al-fukāhah fī al-munādamah wa-al-nazāhah" + ], + "shelfMark": [ + "*ZO-158 no. 10" + ], + "creatorLiteral": [ + "Muḥammad Saʻd ibn Muḥammad Saʻd al-Miṣrī." + ], + "createdString": [ + "1890" + ], + "contributorLiteral": [ + "Maghribī, ʻAbd al-Muʼmin.", + "Schiff Collection." + ], + "dateStartYear": [ + 1890 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-158 no. 10" + }, + { + "type": "nypl:Bnumber", + "value": "10001747" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201782" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201745" + } + ], + "updatedAt": 1657681910685, + "publicationStatement": [ + "al-Qāhirah : al-Maṭbaʻah al-ʻĀmirah al-Sharafīyah, 1307 [1890]" + ], + "identifier": [ + "urn:bnum:10001747", + "urn:undefined:NNSZ00201782", + "urn:undefined:(WaOLN)nyp0201745" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1890" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Middle East -- Biography." + ], + "titleDisplay": [ + "Tuḥfat ahl al-fukāhah [microform] : fī al-munādamah wa-al-nazāhah / li-Muḥammad Afandī Saʻd." + ], + "uri": "b10001747", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8 degrees." + ] + }, + "sort": [ + "b10001747" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433098135548" + ], + "physicalLocation": [ + "*ZO-158" + ], + "shelfMark_sort": "a*ZO-158 no. 000001-10", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30154976", + "shelfMark": [ + "*ZO-158 no. 1-10" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10001936", + "_score": null, + "_source": { + "extent": [ + "400 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Publication date from cover.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Additional Formats", + "label": "Also available on microform;", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "Microfilmed;", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Armenians", + "Armenians -- Iran", + "Armenians -- Iran -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tparan Hovhannu Tēr-Abrahamian" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1891 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Shermazanian, Galust." + ], + "createdString": [ + "1891" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1891 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONR 84-743" + }, + { + "type": "nypl:Bnumber", + "value": "10001936" + }, + { + "type": "nypl:Oclc", + "value": "NYPG002001377-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00201976" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0201934" + } + ], + "idOclc": [ + "NYPG002001377-B" + ], + "updatedAt": 1671714296499, + "publicationStatement": [ + "Ṛostov (Doni Vra) : Tparan Hovhannu Tēr-Abrahamian, 1890 [i.e. 1891]" + ], + "identifier": [ + "urn:bnum:10001936", + "urn:oclc:NYPG002001377-B", + "urn:undefined:NNSZ00201976", + "urn:undefined:(WaOLN)nyp0201934" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Armenians -- Iran -- History." + ], + "titleDisplay": [ + "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan / Ashkhatasirutʻiamb Galust Shermazaniani." + ], + "uri": "b10001936", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ṛostov (Doni Vra)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10001936" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "uri": "i10001936-e", + "electronicLocator": [ + { + "url": "http://hdl.handle.net/2027/nyp.33433001892276", + "label": "Full text available via HathiTrust" + } + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "bi10001936-e" + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10001320", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*ONR 84-743" + ], + "identifierV2": [ + { + "value": "*ONR 84-743", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001892276" + } + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001892276" + ], + "idBarcode": [ + "33433001892276" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ONR 84-000743" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002107", + "_score": null, + "_source": { + "extent": [ + "16 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "H. Laakmann," + ], + "language": [ + { + "id": "lang:est", + "label": "Estonian" + } + ], + "createdYear": [ + 1881 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Wenemaa ajaloost." + ], + "shelfMark": [ + "JFB 82-48 no. 4" + ], + "createdString": [ + "1881" + ], + "dateStartYear": [ + 1881 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 4" + }, + { + "type": "nypl:Bnumber", + "value": "10002107" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202149" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202103" + } + ], + "updatedAt": 1636143254095, + "publicationStatement": [ + "Tartus: H. Laakmann, 1881." + ], + "identifier": [ + "urn:bnum:10002107", + "urn:undefined:NNSZ00202149", + "urn:undefined:(WaOLN)nyp0202103" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1881" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Wenemaa ajaloost." + ], + "uri": "b10002107", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tartus:" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "13 cm" + ] + }, + "sort": [ + "b10002107" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001452", + "shelfMark": [ + "JFB 82-48 no. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005146166" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002108", + "_score": null, + "_source": { + "extent": [ + "16 p. ; 13 cm." + ], + "publicationStatement": [ + "Tartus : M. Laakmann, 1881." + ], + "identifier": [ + "urn:bnum:10002108", + "urn:undefined:NNSZ00202150", + "urn:undefined:(WaOLN)nyp0202104" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "M. Laakmann," + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1881" + ], + "language": [ + { + "id": "lang:est", + "label": "Estonian" + } + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "createdYear": [ + 1881 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rätsepp Kergepüks." + ], + "titleDisplay": [ + "Rätsepp Kergepüks." + ], + "shelfMark": [ + "JFB 82-48 no. 3" + ], + "uri": "b10002108", + "createdString": [ + "1881" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "dateStartYear": [ + 1881 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 3" + }, + { + "type": "nypl:Bnumber", + "value": "10002108" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202150" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202104" + } + ], + "placeOfPublication": [ + "Tartus :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "updatedAt": 1636127692677 + }, + "sort": [ + "b10002108" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001452", + "shelfMark": [ + "JFB 82-48 no. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005146166" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002109", + "_score": null, + "_source": { + "extent": [ + "16 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "H. Laakmann," + ], + "language": [ + { + "id": "lang:est", + "label": "Estonian" + } + ], + "createdYear": [ + 1881 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Masajalg." + ], + "shelfMark": [ + "JFB 82-48 no. 1" + ], + "createdString": [ + "1881" + ], + "dateStartYear": [ + 1881 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "10002109" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202151" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202105" + } + ], + "updatedAt": 1636115332522, + "publicationStatement": [ + "Tartus : H. Laakmann, 1881." + ], + "identifier": [ + "urn:bnum:10002109", + "urn:undefined:NNSZ00202151", + "urn:undefined:(WaOLN)nyp0202105" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1881" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Masajalg." + ], + "uri": "b10002109", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tartus :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "13 cm." + ] + }, + "sort": [ + "b10002109" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001452", + "shelfMark": [ + "JFB 82-48 no. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005146166" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002118", + "_score": null, + "_source": { + "extent": [ + "204 p. : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Wakālat Nāy," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1999" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Awlād bi-al-jumlah" + ], + "shelfMark": [ + "*OFD 82-4488" + ], + "creatorLiteral": [ + "Gilbreth, Frank B. (Frank Bunker), 1911-2001." + ], + "createdString": [ + "1900" + ], + "contributorLiteral": [ + "Carey, Ernestine Moller, 1908-", + "Ṭāhā, Aḥmad." + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "nypl:Bnumber", + "value": "10002118" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00202160" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202114" + } + ], + "uniformTitle": [ + "Cheaper by the dozen. Arabic" + ], + "dateEndYear": [ + 1999 + ], + "updatedAt": 1636076222810, + "publicationStatement": [ + "Dimashq : Wakālat Nāy, 19--." + ], + "identifier": [ + "urn:bnum:10002118", + "urn:undefined:NNSZ00202160", + "urn:undefined:(WaOLN)nyp0202114" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." + ], + "uri": "b10002118", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dimashq :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Cheaper by the dozen." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10002118" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001997497" + ], + "physicalLocation": [ + "*OFD 82-4488" + ], + "shelfMark_sort": "a*OFD 82-004488", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10001459", + "shelfMark": [ + "*OFD 82-4488" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" + }, + { + "type": "bf:Barcode", + "value": "33433001997497" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001997497" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002588", + "_score": null, + "_source": { + "extent": [ + "24 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At head of title: Not published.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jews", + "Jews -- Conversion to Christianity", + "Missions to Jews" + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1840 + ], + "type": [ + "nypl:Item" + ], + "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." + ], + "shelfMark": [ + "*XMH-2174" + ], + "creatorLiteral": [ + "Frey, Joseph Samuel C. F. (Joseph Samuel Christian Frederick), 1771-1850." + ], + "createdString": [ + "1840" + ], + "contributorLiteral": [ + "American Society for Meliorating the Condition of the Jews." + ], + "dateStartYear": [ + 1840 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*XMH-2174" + }, + { + "type": "nypl:Bnumber", + "value": "10002588" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00302930" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202584" + } + ], + "updatedAt": 1657980319626, + "publicationStatement": [ + "[New York : s.n., 1840?]" + ], + "identifier": [ + "urn:bnum:10002588", + "urn:undefined:NNSZ00302930", + "urn:undefined:(WaOLN)nyp0202584" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1840" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews -- Conversion to Christianity.", + "Missions to Jews." + ], + "titleDisplay": [ + "Report of the late agency of the Rev. J.S.C.F. Frey [microform] : presented to the Board of Managers of the American Society for Meliorating the Condition of the Jews." + ], + "uri": "b10002588", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "[New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10002588" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002627", + "_score": null, + "_source": { + "extent": [ + "48 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Horses" + ], + "publisherLiteral": [ + "Bokförlaget Rediviva" + ], + "language": [ + { + "id": "lang:swe", + "label": "Swedish" + } + ], + "dateEndString": [ + "1837" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Undervisning i hästkännedom för korporals-skolorna vid kavalleriet inom fjerde militär-districtet" + ], + "shelfMark": [ + "*XM-15430" + ], + "creatorLiteral": [ + "Billing, J. S." + ], + "createdString": [ + "1978" + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*XM-15430" + }, + { + "type": "nypl:Bnumber", + "value": "10002627" + }, + { + "type": "bf:Isbn", + "value": "9171201017" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00302971" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202622" + } + ], + "dateEndYear": [ + 1837 + ], + "updatedAt": 1657981583132, + "publicationStatement": [ + "Stockholm : Bokförlaget Rediviva, 1978." + ], + "identifier": [ + "urn:bnum:10002627", + "urn:isbn:9171201017", + "urn:undefined:NNSZ00302971", + "urn:undefined:(WaOLN)nyp0202622" + ], + "idIsbn": [ + "9171201017" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Horses." + ], + "titleDisplay": [ + "Undervisning i hästkännedom för korporals-skolorna [microform] : vid kavalleriet inom fjerde militär-districtet / uppraättad af J. S. Billing." + ], + "uri": "b10002627", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Stockholm" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "idIsbn_clean": [ + "9171201017" + ], + "dimensions": [ + "15 cm." + ] + }, + "sort": [ + "b10002627" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10002631", + "_score": null, + "_source": { + "extent": [ + "44 p. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfiche.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Socialism" + ], + "publisherLiteral": [ + "Trübsche Buchh." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "createdYear": [ + 1882 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Wetterleuchten, der Staatssozialismus und seine Consequenzen. Erster Theil" + ], + "shelfMark": [ + "*XME-10755" + ], + "creatorLiteral": [ + "Locher, Friedrich, 1820-1911." + ], + "createdString": [ + "1882" + ], + "dateStartYear": [ + 1882 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*XME-10755" + }, + { + "type": "nypl:Bnumber", + "value": "10002631" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00302975" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0202626" + } + ], + "updatedAt": 1657981583132, + "publicationStatement": [ + "Zürich : Trübsche Buchh., 1882." + ], + "identifier": [ + "urn:bnum:10002631", + "urn:undefined:NNSZ00302975", + "urn:undefined:(WaOLN)nyp0202626" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1882" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Socialism." + ], + "titleDisplay": [ + "Wetterleuchten, der Staatssozialismus und seine Consequenzen. Erster Theil [microform] / von Friedrich Locher." + ], + "uri": "b10002631", + "numItems": [ + 0 + ], + "numAvailable": [ + 0 + ], + "placeOfPublication": [ + "Zürich" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10002631" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003085", + "_score": null, + "_source": { + "extent": [ + "8, 172, 10 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A revision of the authoress' thesis, Varanaseya Sanskrit Vishwavidyalaya.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [1]-5 (3rd group)", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hinduism", + "Hinduism -- Rites and ceremonies", + "Vedas" + ], + "publisherLiteral": [ + "[Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ." + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "1889" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Atharvavede śāntipuṣṭikarmāṇi." + ], + "shelfMark": [ + "*OLY 83-704" + ], + "creatorLiteral": [ + "Malaviya, Maya, 1939-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "sa 68016943" + ], + "seriesStatement": [ + "Sarasvatībhavana - Adhyayanamālā, 17" + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-704" + }, + { + "type": "nypl:Bnumber", + "value": "10003085" + }, + { + "type": "bf:Lccn", + "value": "sa 68016943" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303436" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203078" + } + ], + "dateEndYear": [ + 1889 + ], + "updatedAt": 1636075653207, + "publicationStatement": [ + "Vārāṇasyām [Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ. 1889 tame Śakābde [1967]" + ], + "identifier": [ + "urn:bnum:10003085", + "urn:lccn:sa 68016943", + "urn:undefined:NNSZ00303436", + "urn:undefined:(WaOLN)nyp0203078" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hinduism -- Rites and ceremonies.", + "Vedas." + ], + "titleDisplay": [ + "Atharvavede śāntipuṣṭikarmāṇi. Lekhikā sampādikā ca Māyā Mālavīyā." + ], + "uri": "b10003085", + "lccClassification": [ + "BL1226.2 .M32 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasyām" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003085" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060417965" + ], + "physicalLocation": [ + "*OLY 83-704" + ], + "shelfMark_sort": "a*OLY 83-000704", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784336", + "shelfMark": [ + "*OLY 83-704" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-704" + }, + { + "type": "bf:Barcode", + "value": "33433060417965" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417965" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003088", + "_score": null, + "_source": { + "extent": [ + "2, 16, 200 p. illus." + ], + "note": [ + { + "noteType": "Thesis", + "label": "Thesis -- Varanaseya Sanskrit Vishwavidyalaya.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [198]-200.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Solar eclipses" + ], + "publisherLiteral": [ + "Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ[" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "1889" + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sūryagrahaṇam." + ], + "shelfMark": [ + "*OKQ 83-703" + ], + "creatorLiteral": [ + "Dvivedī, Kṛṣṇacandra." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "sa 68014918" + ], + "seriesStatement": [ + "Sarasvatībhavana - Adhyayanamālā, .15" + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKQ 83-703" + }, + { + "type": "nypl:Bnumber", + "value": "10003088" + }, + { + "type": "bf:Lccn", + "value": "sa 68014918" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303439" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203081" + } + ], + "dateEndYear": [ + 1889 + ], + "updatedAt": 1636132203514, + "publicationStatement": [ + "Vārāṇasyām, Vārāṇaseya-Saṃskṛta-Viśvavidyālayaḥ[ 1889 tame śakāb de [1967]" + ], + "identifier": [ + "urn:bnum:10003088", + "urn:lccn:sa 68014918", + "urn:undefined:NNSZ00303439", + "urn:undefined:(WaOLN)nyp0203081" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Solar eclipses." + ], + "titleDisplay": [ + "Sūryagrahaṇam. Lekhakaḥ sampādakaśca Kṛṣnacandra-dvivedī." + ], + "uri": "b10003088", + "lccClassification": [ + "QB541 .D83" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vārāṇasyām," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003088" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433002896748" + ], + "physicalLocation": [ + "*OKQ 83-703" + ], + "shelfMark_sort": "a*OKQ 83-000703", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002163", + "shelfMark": [ + "*OKQ 83-703" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKQ 83-703" + }, + { + "type": "bf:Barcode", + "value": "33433002896748" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002896748" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003117", + "_score": null, + "_source": { + "extent": [ + "10, 192, 52 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint of the 1313 H. (1895 or 1896) ed. published by al-Sharikah al-Ṣiḥāfīyah al-ʻUthmānīyah, Istanbul.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870.", + "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870. -- Indexes", + "Hadith", + "Hadith -- Indexes", + "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875.", + "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875. -- Indexes" + ], + "publisherLiteral": [ + "Dār al-Kutub al-ʻIlmīyah," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1895" + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim" + ], + "shelfMark": [ + "*OGF 84-1307" + ], + "creatorLiteral": [ + "Tawqādī, Muḥammad al-Sharīf ibn Muṣṭafá." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "77960426" + ], + "contributorLiteral": [ + "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870.", + "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGF 84-1307" + }, + { + "type": "nypl:Bnumber", + "value": "10003117" + }, + { + "type": "bf:Lccn", + "value": "77960426" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303468" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203110" + } + ], + "dateEndYear": [ + 1895 + ], + "updatedAt": 1636116228553, + "publicationStatement": [ + "Bayrūt : Dār al-Kutub al-ʻIlmīyah, 1975." + ], + "identifier": [ + "urn:bnum:10003117", + "urn:lccn:77960426", + "urn:undefined:NNSZ00303468", + "urn:undefined:(WaOLN)nyp0203110" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Bukhārī, Muḥammad ibn Ismāʻīl, 810-870. -- Indexes.", + "Hadith -- Indexes.", + "Muslim ibn al-Ḥajjāj al-Qushayrī, approximately 821-875. -- Indexes." + ], + "titleDisplay": [ + "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim / Muḥammad al-Sharīf ibn Muṣṭafá al-Tūqādī." + ], + "uri": "b10003117", + "lccClassification": [ + "BP135.2. T86 1975" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Miftāḥ Ṣaḥīḥ al-Bukhārī: Irshād al-sārī lil-Qasṭallānī. Fatḥ al-Bārī li-ibn Ḥajar al-ʻAsqulānī. ʻUmdat al-qārī lil-ʻAynī. Matn Ṣaḥīḥ al-Bukhārī. -- Miftāḥ Ṣaḥīḥ Muslim: al-Nawawī ʻalá Ṣaḥīḥ Muslim. Matn Ṣaḥīḥ Muslim." + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + "b10003117" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013217298" + ], + "physicalLocation": [ + "*OGF 84-1307" + ], + "shelfMark_sort": "a*OGF 84-001307", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002177", + "shelfMark": [ + "*OGF 84-1307" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGF 84-1307" + }, + { + "type": "bf:Barcode", + "value": "33433013217298" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013217298" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003143", + "_score": null, + "_source": { + "extent": [ + "20, 784 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Reproduced from Ms. copy.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Reprint of the ed. published in Teheran, 1272 A. H.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Shīʻah", + "Shīʻah -- Doctrines" + ], + "publisherLiteral": [ + "Muʼassasat al-Aʻlamī lil-Maṭbūʻāt," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "dateEndString": [ + "1855" + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ghāyat al-marām fī ḥujjat al-khiṣ̣ām ʻan ṭarīq al-khāṣṣ wa-al-ʻāmm," + ], + "shelfMark": [ + "*OGI+ 84-1305" + ], + "creatorLiteral": [ + "Baḥrānī, Hāshim ibn Sulaymān, -1695 or 6." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75961367" + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGI+ 84-1305" + }, + { + "type": "nypl:Bnumber", + "value": "10003143" + }, + { + "type": "bf:Lccn", + "value": "75961367" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303494" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203136" + } + ], + "dateEndYear": [ + 1855 + ], + "updatedAt": 1641231073322, + "publicationStatement": [ + "[Bayrūt, Muʼassasat al-Aʻlamī lil-Maṭbūʻāt, 1968]" + ], + "identifier": [ + "urn:bnum:10003143", + "urn:lccn:75961367", + "urn:undefined:NNSZ00303494", + "urn:undefined:(WaOLN)nyp0203136" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Shīʻah -- Doctrines." + ], + "titleDisplay": [ + "Ghāyat al-marām fī ḥujjat al-khiṣ̣ām ʻan ṭarīq al-khāṣṣ wa-al-ʻāmm, lil-Baḥrānī." + ], + "uri": "b10003143", + "lccClassification": [ + "BP194 .B3 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + "b10003143" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058659842" + ], + "shelfMark_sort": "a*OGI+ 84-001305", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784359", + "shelfMark": [ + "*OGI+ 84-1305" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433058659842" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058659842" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003146", + "_score": null, + "_source": { + "extent": [ + "[i], 4, 120, 796 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p. in English: ... ed. by Ananda Chandra Vedantavagisa.", + "type": "bf:Note" + }, + { + "noteType": "Original Version", + "label": "Originally published:", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Lāṭyāyanaśrautasūtra", + "Vedas" + ], + "publisherLiteral": [ + "Munshiram Manoharlal Publishers," + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "dateEndString": [ + "1872" + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Srautasūtram" + ], + "shelfMark": [ + "*OKH 84-1426" + ], + "createdString": [ + "1982" + ], + "contributorLiteral": [ + "Agnisvāmi.", + "Kashikar, C. G.", + "Lāṭyāyanaśrautasūtra.", + "Vedāntavāgīśa, Ānandacandra." + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKH 84-1426" + }, + { + "type": "nypl:Bnumber", + "value": "10003146" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303497" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203139" + } + ], + "uniformTitle": [ + "Vedas. Sāmaveda Srautasutra." + ], + "dateEndYear": [ + 1872 + ], + "updatedAt": 1636130442624, + "publicationStatement": [ + "New Delhi : Munshiram Manoharlal Publishers, 1982." + ], + "identifier": [ + "urn:bnum:10003146", + "urn:undefined:NNSZ00303497", + "urn:undefined:(WaOLN)nyp0203139" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Lāṭyāyanaśrautasūtra.", + "Vedas." + ], + "titleDisplay": [ + "Srautasūtram / Lāṭyāyanācārya praṇītam ; Agnisvāmiviracitabhāṣyasahitam ; Śrīānandacandravēdāntavāgīśena pariśodhitam ; [with new appendix containing corrections and emendations to the text by Dr. C. G. Kashikar]." + ], + "uri": "b10003146", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "New Delhi :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10003146" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433058568993" + ], + "shelfMark_sort": "a*OKH 84-001426", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784362", + "shelfMark": [ + "*OKH 84-1426" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433058568993" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058568993" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003158", + "_score": null, + "_source": { + "extent": [ + "608 p. in various pagings ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint ed.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Chinese.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Medicine, Chinese" + ], + "publisherLiteral": [ + "Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si," + ], + "language": [ + { + "id": "lang:chi", + "label": "Chinese" + } + ], + "dateEndString": [ + "1670" + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Zheng yin mo zhi : [4 juan]" + ], + "shelfMark": [ + "*OVL 84-1330" + ], + "creatorLiteral": [ + "Qin, Changyu, active 17th century." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "77839836" + ], + "seriesStatement": [ + "zhongguo yi yao zong shu." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" + }, + { + "type": "nypl:Bnumber", + "value": "10003158" + }, + { + "type": "bf:Lccn", + "value": "77839836" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303509" + } + ], + "dateEndYear": [ + 1670 + ], + "updatedAt": 1641391919318, + "publicationStatement": [ + "Taipei xian yonghe zhen : Xuan feng chu ban she ; Taipei : Zong jing xiao da zhong tu shu Gong si, Min'Guo 61[1972]" + ], + "identifier": [ + "urn:bnum:10003158", + "urn:lccn:77839836", + "urn:undefined:NNSZ00303509" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Medicine, Chinese." + ], + "titleDisplay": [ + "Zheng yin mo zhi : [4 juan] / Qin Jingming [Changyu] zhu ; Qin Zhizheng ji ; [Cao Binzhang quan dian]." + ], + "uri": "b10003158", + "lccClassification": [ + "R128.7 .C545" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Taipei xian yonghe zhen :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10003158" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433001746852" + ], + "physicalLocation": [ + "*OVL 84-1330" + ], + "shelfMark_sort": "a*OVL 84-001330", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002193", + "shelfMark": [ + "*OVL 84-1330" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" + }, + { + "type": "bf:Barcode", + "value": "33433001746852" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001746852" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003190", + "_score": null, + "_source": { + "extent": [ + "606 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Caption title: Basavapurāṇavu.", + "type": "bf:Note" + }, + { + "noteType": "Indexed In", + "label": "Kannaḍa sāhitya caritre.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Basava, active 1160", + "Basava, active 1160 -- Poetry", + "Lingayats", + "Lingayats -- Poetry" + ], + "publisherLiteral": [ + "s.n.," + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "dateEndString": [ + "1899" + ], + "createdYear": [ + 1800 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Basavapurāṇavu" + ], + "shelfMark": [ + "*OLA+ 82-1360" + ], + "creatorLiteral": [ + "Palakuriki Somanatha, active 13th century." + ], + "createdString": [ + "1800" + ], + "contributorLiteral": [ + "Bhīmakavi, active 1369." + ], + "dateStartYear": [ + 1800 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA+ 82-1360" + }, + { + "type": "nypl:Bnumber", + "value": "10003190" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303541" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203183" + } + ], + "uniformTitle": [ + "Basavapurāṇamu. Kannada" + ], + "dateEndYear": [ + 1899 + ], + "updatedAt": 1636076831370, + "publicationStatement": [ + "[S.1. : s.n., 18--?]" + ], + "identifier": [ + "urn:bnum:10003190", + "urn:undefined:NNSZ00303541", + "urn:undefined:(WaOLN)nyp0203183" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1800" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Basava, active 1160 -- Poetry.", + "Lingayats -- Poetry." + ], + "titleDisplay": [ + "Basavapurāṇavu / [Bhīmakavi viracita ; Sōmanātha kaviya Telugu Basavapurāṇamuvina Kannaḍa anuvāda]." + ], + "uri": "b10003190", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.1. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Basavapurāṇamu." + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + "b10003190" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433069579674" + ], + "shelfMark_sort": "a*OLA+ 82-001360", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784381", + "shelfMark": [ + "*OLA+ 82-1360" + ], + "identifierV2": [ + { + "type": "bf:Barcode", + "value": "33433069579674" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433069579674" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003301", + "_score": null, + "_source": { + "extent": [ + "v. : ill., map, facsims. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kurds", + "Kurds -- Iran", + "Kurds -- Iran -- History" + ], + "publisherLiteral": [ + "Chāpkhānah-ʼi Kūshish," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "999" + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" + ], + "shelfMark": [ + "*OMR 84-1145" + ], + "creatorLiteral": [ + "Tavaḥḥudī Awghāzī, Kalīm Allāh." + ], + "createdString": [ + "1981" + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145" + }, + { + "type": "nypl:Bnumber", + "value": "10003301" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303655" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0000007" + } + ], + "dateEndYear": [ + 999 + ], + "updatedAt": 1636103985760, + "publicationStatement": [ + "Mashhad : Chāpkhānah-ʼi Kūshish, 1359- [1981- ]" + ], + "identifier": [ + "urn:bnum:10003301", + "urn:undefined:NNSZ00303655", + "urn:undefined:(WaOLN)nyp0000007" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kurds -- Iran -- History." + ], + "titleDisplay": [ + "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān / taʼlīf-i Kalīm Allāh Tavaḥḥudī (Awghāzi)" + ], + "uri": "b10003301", + "numItems": [ + 3 + ], + "numAvailable": [ + 3 + ], + "placeOfPublication": [ + "Mashhad :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003301" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 3, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013135854" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000004", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002283", + "shelfMark": [ + "*OMR 84-1145 v. 4" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013135854" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 4" + ], + "idBarcode": [ + "33433013135854" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013135847" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002282", + "shelfMark": [ + "*OMR 84-1145 v. 3" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013135847" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 3" + ], + "idBarcode": [ + "33433013135847" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013136530" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002281", + "shelfMark": [ + "*OMR 84-1145 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013136530" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433013136530" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003564", + "_score": null, + "_source": { + "extent": [ + "13, 496 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Abū Ṭālib Shīrāzī," + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "createdYear": [ + 1859 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ḥadīqat al-ḥaqīqah va sharīʻat al-ṭarīqah" + ], + "shelfMark": [ + "*OMQ 82-3324" + ], + "creatorLiteral": [ + "Sanāʼī al-Ghaznavī, Abū al-Majd Majdūd ibn Ādam, -approximately 1150." + ], + "createdString": [ + "1859" + ], + "dateStartYear": [ + 1859 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 82-3324" + }, + { + "type": "nypl:Bnumber", + "value": "10003564" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00303920" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203556" + } + ], + "updatedAt": 1636103985797, + "publicationStatement": [ + "Bumbaʼī : Abū Ṭālib Shīrāzī, 1859." + ], + "identifier": [ + "urn:bnum:10003564", + "urn:undefined:NNSZ00303920", + "urn:undefined:(WaOLN)nyp0203556" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1859" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Ḥadīqat al-ḥaqīqah va sharīʻat al-ṭarīqah / Abū al-Majd Majdūd ibn Ādam al-Sanāʼī al-Ghaznavī." + ], + "uri": "b10003564", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bumbaʼī :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10003564" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013144385" + ], + "physicalLocation": [ + "*OMQ 82-3324" + ], + "shelfMark_sort": "a*OMQ 82-003324", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002468", + "shelfMark": [ + "*OMQ 82-3324" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 82-3324" + }, + { + "type": "bf:Barcode", + "value": "33433013144385" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433013144385" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003703", + "_score": null, + "_source": { + "extent": [ + "253 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "J.R. Vilímek," + ], + "language": [ + { + "id": "lang:cze", + "label": "Czech" + } + ], + "dateEndString": [ + "1983" + ], + "createdYear": [ + 1900 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Listí po krajích rozváté : básně" + ], + "shelfMark": [ + "*QVH 83-187" + ], + "creatorLiteral": [ + "Svoboda, František Xaver, 1860-" + ], + "createdString": [ + "1900" + ], + "seriesStatement": [ + "Spisy / F.X. Svobody ; 23" + ], + "dateStartYear": [ + 1900 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QVH 83-187" + }, + { + "type": "nypl:Bnumber", + "value": "10003703" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304061" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0203695" + } + ], + "dateEndYear": [ + 1983 + ], + "updatedAt": 1636113429964, + "publicationStatement": [ + "V Praze : J.R. Vilímek, [19--]." + ], + "identifier": [ + "urn:bnum:10003703", + "urn:undefined:NNSZ00304061", + "urn:undefined:(WaOLN)nyp0203695" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Listí po krajích rozváté : básně / F. X. Svoboda." + ], + "uri": "b10003703", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "V Praze :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10003703" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011955378" + ], + "physicalLocation": [ + "*QVH 83-187" + ], + "shelfMark_sort": "a*QVH 83-000187", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002586", + "shelfMark": [ + "*QVH 83-187" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QVH 83-187" + }, + { + "type": "bf:Barcode", + "value": "33433011955378" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011955378" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10003857", + "_score": null, + "_source": { + "extent": [ + "319 p. : ill., plates, maps ;" + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "‏بيروت : دار مكتبة الحياة, [196-؟]" + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "‏بيروت :" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Yemen (Republic)" + ], + "publisherLiteral": [ + "Dār Maktabat al-Ḥayāh," + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "createdYear": [ + 196 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah /" + ], + "parallelTitle": [ + "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة /" + ], + "shelfMark": [ + "*OFI 82-4419" + ], + "creatorLiteral": [ + "Tarsīsī, ʻAdnān." + ], + "createdString": [ + "196" + ], + "parallelPublisher": [ + "‏دار مكتبة الحياة," + ], + "idLccn": [ + "ne 64003290" + ], + "dateStartYear": [ + 196 + ], + "parallelCreatorLiteral": [ + "‏ترسيسي, عدنان." + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" + }, + { + "type": "nypl:Bnumber", + "value": "10003857" + }, + { + "type": "bf:Lccn", + "value": "ne 64003290" + }, + { + "type": "nypl:Oclc", + "value": "11272192" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11272192" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)221366702" + } + ], + "idOclc": [ + "11272192" + ], + "updatedAt": 1649121307527, + "publicationStatement": [ + "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" + ], + "identifier": [ + "urn:bnum:10003857", + "urn:lccn:ne 64003290", + "urn:oclc:11272192", + "urn:undefined:(OCoLC)11272192", + "urn:undefined:(OCoLC)221366702" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "196" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Yemen (Republic)" + ], + "titleDisplay": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah / [taʼlīf] ʻAdnān Tarsīsī." + ], + "uri": "b10003857", + "lccClassification": [ + "DS247.Y4 T3" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "parallelTitleDisplay": [ + "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة / [تاليف] عدنان ترسيسي." + ], + "placeOfPublication": [ + "Bayrūt :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Includes musical score of national anthem of Yemen Arab Republic." + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10003857" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433101143836" + ], + "physicalLocation": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + ], + "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i29202258", + "shelfMark": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + }, + { + "type": "bf:Barcode", + "value": "33433101143836" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433101143836" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433002023293" + ], + "physicalLocation": [ + "*OFI 82-4419" + ], + "shelfMark_sort": "a*OFI 82-004419", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002714", + "shelfMark": [ + "*OFI 82-4419" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" + }, + { + "type": "bf:Barcode", + "value": "33433002023293" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002023293" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004026", + "_score": null, + "_source": { + "extent": [ + "[15], 409 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Based on conversation with Sayyāḥ yamanī.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sufism" + ], + "publisherLiteral": [ + "s.n.,]" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "dateEndString": [ + "1890" + ], + "createdYear": [ + 1889 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Haẕā Kitāb-i hadīqat al-inṣāf" + ], + "shelfMark": [ + "*OMQ 82-3319" + ], + "creatorLiteral": [ + "Sarmast Rūmī, ʻAbd al-Karīm Maḥmūd." + ], + "createdString": [ + "1889" + ], + "contributorLiteral": [ + "Sayyāḥ yamanī." + ], + "dateStartYear": [ + 1889 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 82-3319" + }, + { + "type": "nypl:Bnumber", + "value": "10004026" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304387" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204018" + } + ], + "dateEndYear": [ + 1890 + ], + "updatedAt": 1636101588849, + "publicationStatement": [ + "[S.l. : s.n.,] 1307 [1889 or 1890]" + ], + "identifier": [ + "urn:bnum:10004026", + "urn:undefined:NNSZ00304387", + "urn:undefined:(WaOLN)nyp0204018" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1889" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sufism." + ], + "titleDisplay": [ + "Haẕā Kitāb-i hadīqat al-inṣāf / [ʻAbd al-Karīm Sarmast Rūmī]." + ], + "uri": "b10004026", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l. :" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Ḥadīqat al-inṣāf." + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10004026" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433013144377" + ], + "physicalLocation": [ + "*OMQ 82-3319" + ], + "shelfMark_sort": "a*OMQ 82-003319", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002864", + "shelfMark": [ + "*OMQ 82-3319" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 82-3319" + }, + { + "type": "bf:Barcode", + "value": "33433013144377" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433013144377" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004080", + "_score": null, + "_source": { + "extent": [ + "2v." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "Esosiẏeṭeḍa Pābaliśārsa" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "dateEndString": [ + "62" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Junāpura Sṭīla." + ], + "shelfMark": [ + "*OKV 82-3891" + ], + "creatorLiteral": [ + "Mānnā, Guṇamaẏa, 1925-2010." + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "sa 63003864" + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891" + }, + { + "type": "nypl:Bnumber", + "value": "10004080" + }, + { + "type": "bf:Lccn", + "value": "sa 63003864" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304442" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204072" + } + ], + "dateEndYear": [ + 62 + ], + "updatedAt": 1636108800927, + "publicationStatement": [ + "[Kalakātā] Esosiẏeṭeḍa Pābaliśārsa [1960-1962]" + ], + "identifier": [ + "urn:bnum:10004080", + "urn:lccn:sa 63003864", + "urn:undefined:NNSZ00304442", + "urn:undefined:(WaOLN)nyp0204072" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Junāpura Sṭīla. [Lekhaka] Guṇamaẏa Mānnā." + ], + "uri": "b10004080", + "lccClassification": [ + "PK1718.M253 53" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "[Kalakātā]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10004080" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011168402" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002917", + "shelfMark": [ + "*OKV 82-3891 v. 2" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011168402" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 2" + ], + "idBarcode": [ + "33433011168402" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433011168394" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i10002916", + "shelfMark": [ + "*OKV 82-3891 v. 1" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011168394" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "v. 1" + ], + "idBarcode": [ + "33433011168394" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004340", + "_score": null, + "_source": { + "extent": [ + "11, 552, 28 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Medicine, Arab" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maṭbaʻat Muḥammad Rashīd ibn Dāvūd al-Saʻdī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1895 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hādhā kitāb Daqaʼiq al-ʻilāj fī al-ṭibb al-badanī" + ], + "shelfMark": [ + "*OGB 83-1915" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kirmānī, Muḥammad Karīm Khān, 1809-1870." + ], + "createdString": [ + "1895" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1895 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGB 83-1915" + }, + { + "type": "nypl:Bnumber", + "value": "10004340" + }, + { + "type": "nypl:Oclc", + "value": "NYPG003001809-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304705" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204332" + } + ], + "idOclc": [ + "NYPG003001809-B" + ], + "updatedAt": 1671713042723, + "publicationStatement": [ + "Bumbaʼī : Maṭbaʻat Muḥammad Rashīd ibn Dāvūd al-Saʻdī, 1315 [1895]" + ], + "identifier": [ + "urn:bnum:10004340", + "urn:oclc:NYPG003001809-B", + "urn:undefined:NNSZ00304705", + "urn:undefined:(WaOLN)nyp0204332" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1895" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Medicine, Arab." + ], + "titleDisplay": [ + "Hādhā kitāb Daqaʼiq al-ʻilāj fī al-ṭibb al-badanī / min muṣannafāt Muḥammad Karīm Khān al-Kirmānī." + ], + "uri": "b10004340", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bumbaʼī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Daqāʼiq al-ʻilāj." + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + "b10004340" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 1, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 1, + "_source": { + "shelfMark_sort": "bi10004340-e", + "electronicLocator": [ + { + "label": "Full text available via HathiTrust", + "url": "http://hdl.handle.net/2027/nyp.33433019817224" + } + ], + "type": [ + "bf:Item" + ], + "uri": "i10004340-e", + "formatLiteral": [ + "Text" + ] + } + } + ] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433019817224" + ], + "physicalLocation": [ + "*OGB 83-1915" + ], + "shelfMark_sort": "a*OGB 83-001915", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12540130", + "shelfMark": [ + "*OGB 83-1915" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGB 83-1915" + }, + { + "type": "bf:Barcode", + "value": "33433019817224" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433019817224" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004504", + "_score": null, + "_source": { + "extent": [ + "34 p.;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil language", + "Tamil language -- Pronunciation" + ], + "publisherLiteral": [ + "Naṭarācaṉ," + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "createdYear": [ + 197 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" + ], + "shelfMark": [ + "*OLB 83-2757" + ], + "creatorLiteral": [ + "Natarajan, Subbiah, 1911-" + ], + "createdString": [ + "197" + ], + "idLccn": [ + "75906338" + ], + "dateStartYear": [ + 197 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" + }, + { + "type": "nypl:Bnumber", + "value": "10004504" + }, + { + "type": "bf:Lccn", + "value": "75906338" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00304869" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204496" + } + ], + "updatedAt": 1636132308475, + "publicationStatement": [ + "[Tūttukkuṭi]: Naṭarācaṉ, 1974." + ], + "identifier": [ + "urn:bnum:10004504", + "urn:lccn:75906338", + "urn:undefined:NNSZ00304869", + "urn:undefined:(WaOLN)nyp0204496" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "197" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil language -- Pronunciation." + ], + "titleDisplay": [ + "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum/ Cu. Naṭarājaṉ." + ], + "uri": "b10004504", + "lccClassification": [ + "PL4754 .N33 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tūttukkuṭi]:" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10004504" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433061296681" + ], + "physicalLocation": [ + "*OLB 83-2757" + ], + "shelfMark_sort": "a*OLB 83-002757", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i13784546", + "shelfMark": [ + "*OLB 83-2757" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" + }, + { + "type": "bf:Barcode", + "value": "33433061296681" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296681" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004657", + "_score": null, + "_source": { + "extent": [ + "2 p. l., iii, 404, vi p. 1 plate." + ], + "note": [ + { + "noteType": "Note", + "label": "Niscaladasa, supposed author.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "publisherLiteral": [ + "H. Dhole," + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "createdYear": [ + 1885 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The metaphysics of the Upanishads, Vicharsagar [microform]." + ], + "shelfMark": [ + "*ZO-179 no. 8" + ], + "createdString": [ + "1885" + ], + "seriesStatement": [ + "Dhole's Vedanta series, \\3" + ], + "contributorLiteral": [ + "Niscaladasa." + ], + "dateStartYear": [ + 1885 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZO-179 no. 8" + }, + { + "type": "nypl:Bnumber", + "value": "10004657" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405768" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204649" + } + ], + "uniformTitle": [ + "Upanishads. English." + ], + "updatedAt": 1636136428813, + "publicationStatement": [ + "Calcutta, H. Dhole, 1885." + ], + "identifier": [ + "urn:bnum:10004657", + "urn:undefined:NNSZ00405768", + "urn:undefined:(WaOLN)nyp0204649" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1885" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "The metaphysics of the Upanishads, Vicharsagar [microform]. Translated with copious notes by Lala Sreeram." + ], + "uri": "b10004657", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Calcutta," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Vicharsagar." + ], + "dimensions": [ + "8̕." + ] + }, + "sort": [ + "b10004657" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433105673085" + ], + "physicalLocation": [ + "*ZO-179" + ], + "shelfMark_sort": "a*ZO-179 9 misc oriental titles", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30080087", + "shelfMark": [ + "*ZO-179 9 misc oriental titles" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004661", + "_score": null, + "_source": { + "extent": [ + "111 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Gregorius de Montelongo", + "Italy", + "Italy -- History", + "Italy -- History -- 476-1492" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "createdYear": [ + 1898 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Gregorius de Montelongo [microform]. Ein Beitrag zur Geschichte Oberitaliens in den Jahren 1238-1269." + ], + "shelfMark": [ + "*Z-3433 no. 3" + ], + "creatorLiteral": [ + "Frankfurth, Hermann." + ], + "createdString": [ + "1898" + ], + "dateStartYear": [ + 1898 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3433 no. 3" + }, + { + "type": "nypl:Bnumber", + "value": "10004661" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405772" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204653" + } + ], + "updatedAt": 1636100134306, + "publicationStatement": [ + "Marburg, N.G. Elwert, 1808." + ], + "identifier": [ + "urn:bnum:10004661", + "urn:undefined:NNSZ00405772", + "urn:undefined:(WaOLN)nyp0204653" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1898" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Gregorius de Montelongo.", + "Italy -- History -- 476-1492." + ], + "titleDisplay": [ + "Gregorius de Montelongo [microform]. Ein Beitrag zur Geschichte Oberitaliens in den Jahren 1238-1269. Von Hermann Frankfurth." + ], + "uri": "b10004661", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Marburg," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8̕." + ] + }, + "sort": [ + "b10004661" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "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" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30141341", + "shelfMark": [ + "*Z-3433" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3433" + }, + { + "type": "bf:Barcode", + "value": "33433107964664" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433107964664" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004664", + "_score": null, + "_source": { + "extent": [ + "ix, [11]-149 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cuban question", + "Cuban question -- To 1895" + ], + "publisherLiteral": [ + "Impr. de \"El Cronista,\"" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "createdYear": [ + 1872 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Cuba puede ser independiente Folleto político de actualidad" + ], + "shelfMark": [ + "*ZH-695 no. 6" + ], + "creatorLiteral": [ + "Ferrer de Couto, José, 1820-1877." + ], + "createdString": [ + "1872" + ], + "idLccn": [ + "17000612" + ], + "dateStartYear": [ + 1872 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZH-695 no. 6" + }, + { + "type": "nypl:Bnumber", + "value": "10004664" + }, + { + "type": "bf:Lccn", + "value": "17000612" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405775" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204656" + } + ], + "updatedAt": 1657687667468, + "publicationStatement": [ + "Nueva York, Impr. de \"El Cronista,\" 1872." + ], + "identifier": [ + "urn:bnum:10004664", + "urn:lccn:17000612", + "urn:undefined:NNSZ00405775", + "urn:undefined:(WaOLN)nyp0204656" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1872" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cuban question -- To 1895." + ], + "titleDisplay": [ + "Cuba puede ser independiente [microform]. Folleto político de actualidad, por José Ferrer de Couto." + ], + "uri": "b10004664", + "lccClassification": [ + "F1783 .F39" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Nueva York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10004664" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433110498031" + ], + "physicalLocation": [ + "*ZH-695" + ], + "shelfMark_sort": "a*ZH-695 8 misc. American history titles", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30805021", + "shelfMark": [ + "*ZH-695 8 misc. American history titles" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10004665", + "_score": null, + "_source": { + "extent": [ + "2 p.l., v., 382 p." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Gustav III, King of Sweden, 1746-1792" + ], + "publisherLiteral": [ + "Amyot," + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "createdYear": [ + 1861 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Gustave III, roi de Suède, 1746-1792 [microform]," + ], + "shelfMark": [ + "*Z-3354 no. 2" + ], + "creatorLiteral": [ + "Léouzon Le Duc, L. (Louis), 1815-1889." + ], + "createdString": [ + "1861" + ], + "idLccn": [ + "05008965" + ], + "seriesStatement": [ + "Les Couronnes sanglantes" + ], + "dateStartYear": [ + 1861 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*Z-3354 no. 2" + }, + { + "type": "nypl:Bnumber", + "value": "10004665" + }, + { + "type": "bf:Lccn", + "value": "05008965" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00405776" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0204657" + } + ], + "updatedAt": 1636100755031, + "publicationStatement": [ + "Paris, Amyot, 1861." + ], + "identifier": [ + "urn:bnum:10004665", + "urn:lccn:05008965", + "urn:undefined:NNSZ00405776", + "urn:undefined:(WaOLN)nyp0204657" + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1861" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Gustav III, King of Sweden, 1746-1792." + ], + "titleDisplay": [ + "Gustave III, roi de Suède, 1746-1792 [microform], par L. Léouzon Le Duc." + ], + "uri": "b10004665", + "lccClassification": [ + "DL766 .L58" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paris," + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Gustave trois, roi de Suède, 1746-1792." + ], + "dimensions": [ + "19cm." + ] + }, + "sort": [ + "b10004665" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433107663993" + ], + "physicalLocation": [ + "*Z-3354" + ], + "shelfMark_sort": "a*Z-3354 no. 000001-7", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "i30147719", + "shelfMark": [ + "*Z-3354 no. 1-7" + ], + "identifierV2": [ + { + "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" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:02 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "163306", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":0,\"size\":50,\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"range\":{\"dateStartYear\":{\"lte\":1900}}},{\"range\":{\"dateEndYear\":{\"lte\":1900}}}]}},{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}},\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "638" + }, + "timeout": 30000 + }, + "options": {}, + "id": 45 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 1, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-f7f1826a6090dac07ee7f124c63d3fbd.json b/test/fixtures/query-f7f1826a6090dac07ee7f124c63d3fbd.json deleted file mode 100644 index c19cce72..00000000 --- a/test/fixtures/query-f7f1826a6090dac07ee7f124c63d3fbd.json +++ /dev/null @@ -1,15715 +0,0 @@ -{ - "took": 480, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 966443, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000432", - "_score": null, - "_source": { - "extent": [ - "94 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Poems.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Amīr Kabīr" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah" - ], - "shelfMark": [ - "*OMO 84-1527" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Yūshīj, Nīmā." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMO 84-1527" - }, - { - "type": "nypl:Bnumber", - "value": "10000432" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000386-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100386" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200431" - } - ], - "idOclc": [ - "NYPG001000386-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10000432", - "urn:oclc:NYPG001000386-B", - "urn:undefined:NNSZ00100386", - "urn:undefined:(WaOLN)nyp0200431" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Mānilī va khānah-ʼi Sarīvaylī : du manẓūmah / az Nīmā yūshīj." - ], - "uri": "b10000432", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Khānah-ʼi Sarīvaylī." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000432" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000245", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMO 84-1527" - ], - "identifierV2": [ - { - "value": "*OMO 84-1527", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433001898497" - } - ], - "physicalLocation": [ - "*OMO 84-1527" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433001898497" - ], - "idBarcode": [ - "33433001898497" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMO 84-001527" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001333", - "_score": null, - "_source": { - "extent": [ - "v. : ill., folded maps ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Geomorphology", - "Geomorphology -- Libya" - ], - "publisherLiteral": [ - "al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" - ], - "shelfMark": [ - "*OFO 82-5116" - ], - "creatorLiteral": [ - "Jawdah, Jawdah Ḥasanayn." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "75960642" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFO 82-5116" - }, - { - "type": "nypl:Bnumber", - "value": "10001333" - }, - { - "type": "bf:Lccn", - "value": "75960642" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201348" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201331" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636070536203, - "publicationStatement": [ - "[Binghāzī] : al-Jāmiʻah al-Lībīyah, Kullīyat al-Ādāb, 1973-" - ], - "identifier": [ - "urn:bnum:10001333", - "urn:lccn:75960642", - "urn:undefined:NNSZ00201348", - "urn:undefined:(WaOLN)nyp0201331" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Geomorphology -- Libya." - ], - "titleDisplay": [ - "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah / Jawdah Ḥasanayn Jawdah." - ], - "uri": "b10001333", - "lccClassification": [ - "GB440.L5 J38" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Binghāzī] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - "b10001333" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000872", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode: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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10000871", - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001657", - "_score": null, - "_source": { - "extent": [ - "v. : ill., maps ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on p. [4] of cover: Village gazetteer.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Bar asās-i natāyij-i sarshumārī-i ʻumūmī-i Ābānʼmāh-i 1345.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "English and Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Gazetteers", - "Villages", - "Villages -- Iran", - "Villages -- Iran -- Statistics" - ], - "publisherLiteral": [ - "Markaz-i Āmār-i Īrān," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "shelfMark": [ - "Map Div. 84-146" - ], - "creatorLiteral": [ - "Markaz-i Āmār-i Īrān." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "81464564" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146" - }, - { - "type": "nypl:Bnumber", - "value": "10001657" - }, - { - "type": "bf:Lccn", - "value": "81464564" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201692" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201655" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636095534719, - "publicationStatement": [ - "Tihrān : Markaz-i Āmār-i Īrān, 1347- [1969-]" - ], - "identifier": [ - "urn:bnum:10001657", - "urn:lccn:81464564", - "urn:undefined:NNSZ00201692", - "urn:undefined:(WaOLN)nyp0201655" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Gazetteers.", - "Villages -- Iran -- Statistics." - ], - "titleDisplay": [ - "Farhang-i ābādīhā-yi kishvar." - ], - "uri": "b10001657", - "lccClassification": [ - "DS253 .M37" - ], - "numItems": [ - 11 - ], - "numAvailable": [ - 11 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Village gazetteer." - ], - "tableOfContents": [ - "Jild-i 2. Ustān-i Āẕarbāyjān-i Gharbī--Jild-i 3-5. Ustān-i Khurāsān--Jild-1 6. Ustān-i Kurdistān--Jild-i 9. Farmāndārī-i Kull-i Luristān--Jild-i 10. Farmāndārīhā-yi Kull-i Banādir va Jazāʼir-i Khalīj-i Fārs va Daryā-yi Ummān--Jild-i 11. Ustān-i Māzandarān--Jild-i 14. Ustān-i Markazī--Jild-i 15. Ustān-i Gilān--Jild-i 17. Farmāndārī-i Kull-i Simnān." - ], - "dimensions": [ - "42x54 cm." - ] - }, - "sort": [ - "b10001657" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 11, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 10 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030870" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000017", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784147", - "shelfMark": [ - "Map Div. 84-146 v. 17" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 9 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030862" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000015", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784146", - "shelfMark": [ - "Map Div. 84-146 v. 15" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 8 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030854" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784145", - "shelfMark": [ - "Map Div. 84-146 v. 14" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 7 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030847" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000010", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784144", - "shelfMark": [ - "Map Div. 84-146 v. 10" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 10" - }, - { - "type": "bf:Barcode", - "value": "33433057030847" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 10" - ], - "idBarcode": [ - "33433057030847" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030839" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000009", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784143", - "shelfMark": [ - "Map Div. 84-146 v. 9" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 9" - }, - { - "type": "bf:Barcode", - "value": "33433057030839" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 9" - ], - "idBarcode": [ - "33433057030839" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030821" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000006", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784142", - "shelfMark": [ - "Map Div. 84-146 v. 6" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 6" - }, - { - "type": "bf:Barcode", - "value": "33433057030821" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 6" - ], - "idBarcode": [ - "33433057030821" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030813" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784141", - "shelfMark": [ - "Map Div. 84-146 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433057030813" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433057030813" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030805" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784140", - "shelfMark": [ - "Map Div. 84-146 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433057030805" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433057030805" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030797" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784139", - "shelfMark": [ - "Map Div. 84-146 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057030797" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057030797" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030789" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784138", - "shelfMark": [ - "Map Div. 84-146 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433057030789" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433057030789" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057030771" - ], - "physicalLocation": [ - "Map Div. 84-146" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:25||atlas" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784137", - "shelfMark": [ - "Map Div. 84-146 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Map Div. 84-146 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433057030771" - } - ], - "holdingLocation_packed": [ - "loc:rcmp2||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433057030771" - ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:25", - "label": "atlas" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmp2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NL" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001844", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: The Brahmasūtra Śāṅkarbhāṣya.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu philosophy", - "Vedanta" - ], - "publisherLiteral": [ - "Chaukhambā Vidyābhavana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." - ], - "shelfMark": [ - "*OKN 82-2276" - ], - "creatorLiteral": [ - "Bādarāyaṇa." - ], - "createdString": [ - "1964" - ], - "idLccn": [ - "sa 65007118" - ], - "seriesStatement": [ - "Vidyābhavara Saṃskrta granthamālā, 124" - ], - "contributorLiteral": [ - "Sastri, Hanumanadas, Swami.", - "Śaṅkarācārya." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "nypl:Bnumber", - "value": "10001844" - }, - { - "type": "bf:Lccn", - "value": "sa 65007118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201882" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201842" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636079011965, - "publicationStatement": [ - "Vārāṇasī, Chaukhambā Vidyābhavana [1964-" - ], - "identifier": [ - "urn:bnum:10001844", - "urn:lccn:sa 65007118", - "urn:undefined:NNSZ00201882", - "urn:undefined:(WaOLN)nyp0201842" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu philosophy.", - "Vedanta." - ], - "titleDisplay": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam. Vyākhyākāra [sic] Svāmī Hanumānadāsa Shaṭśāstrī. Bhūmikā-lekhaka Vīramaṇi Prasāda Upādhyāya." - ], - "uri": "b10001844", - "lccClassification": [ - "B132.V3 B22" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasī," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Brahmasūtra Śaṅkarbhāṣya." - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10001844" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058617816" - ], - "physicalLocation": [ - "*OKN 82-2276" - ], - "shelfMark_sort": "a*OKN 82-002276", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i13784177", - "shelfMark": [ - "*OKN 82-2276" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 82-2276" - }, - { - "type": "bf:Barcode", - "value": "33433058617816" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058617816" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002118", - "_score": null, - "_source": { - "extent": [ - "204 p. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Wakālat Nāy," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1999" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Awlād bi-al-jumlah" - ], - "shelfMark": [ - "*OFD 82-4488" - ], - "creatorLiteral": [ - "Gilbreth, Frank B. (Frank Bunker), 1911-2001." - ], - "createdString": [ - "1900" - ], - "contributorLiteral": [ - "Carey, Ernestine Moller, 1908-", - "Ṭāhā, Aḥmad." - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "nypl:Bnumber", - "value": "10002118" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202160" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202114" - } - ], - "uniformTitle": [ - "Cheaper by the dozen. Arabic" - ], - "dateEndYear": [ - 1999 - ], - "updatedAt": 1636076222810, - "publicationStatement": [ - "Dimashq : Wakālat Nāy, 19--." - ], - "identifier": [ - "urn:bnum:10002118", - "urn:undefined:NNSZ00202160", - "urn:undefined:(WaOLN)nyp0202114" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Awlād bi-al-jumlah / taʼlīf Firānk Bi. Jīlbrith wa-Irnistin Jīlbrith Kārī ; tarjumat Aḥmad Ṭaha." - ], - "uri": "b10002118", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dimashq :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Cheaper by the dozen." - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10002118" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001997497" - ], - "physicalLocation": [ - "*OFD 82-4488" - ], - "shelfMark_sort": "a*OFD 82-004488", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10001459", - "shelfMark": [ - "*OFD 82-4488" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFD 82-4488" - }, - { - "type": "bf:Barcode", - "value": "33433001997497" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001997497" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002297", - "_score": null, - "_source": { - "extent": [ - "199 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Politics and government", - "Iran -- Politics and government -- 20th century" - ], - "publisherLiteral": [ - "Intishārāt-i Firdawsī," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." - ], - "shelfMark": [ - "*OMZ 84-1529" - ], - "creatorLiteral": [ - "Dawlatābādī, Àlī Muḥammad." - ], - "createdString": [ - "1983" - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1529" - }, - { - "type": "nypl:Bnumber", - "value": "10002297" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202345" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202293" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636109324448, - "publicationStatement": [ - "Tihrān : Intishārāt-i Firdawsī, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10002297", - "urn:undefined:NNSZ00202345", - "urn:undefined:(WaOLN)nyp0202293" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Politics and government -- 20th century." - ], - "titleDisplay": [ - "Khāṭirāt-i Sayyid Àlī Muḥammad Dawlatābādī : līdir-i Ìtidālīyūn." - ], - "uri": "b10002297", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10002297" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539872" - ], - "physicalLocation": [ - "*OMZ 84-1529" - ], - "shelfMark_sort": "a*OMZ 84-001529", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942128", - "shelfMark": [ - "*OMZ 84-1529" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1529" - }, - { - "type": "bf:Barcode", - "value": "33433014539872" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539872" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10002303", - "_score": null, - "_source": { - "extent": [ - "280 p. : facsim. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Politics and government", - "Iran -- Politics and government -- 20th century", - "Political prisoners", - "Political prisoners -- Iran", - "Political prisoners -- Iran -- Biography" - ], - "publisherLiteral": [ - "Intishārāt-i Haftah," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad" - ], - "shelfMark": [ - "*OMZ 84-1538" - ], - "creatorLiteral": [ - "Khāmahʼī, Anvar." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1538" - }, - { - "type": "nypl:Bnumber", - "value": "10002303" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00202351" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0202299" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636121044994, - "publicationStatement": [ - "Tihrān : Intishārāt-i Haftah, [198-?]" - ], - "identifier": [ - "urn:bnum:10002303", - "urn:undefined:NNSZ00202351", - "urn:undefined:(WaOLN)nyp0202299" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Politics and government -- 20th century.", - "Political prisoners -- Iran -- Biography." - ], - "titleDisplay": [ - "Panjāh nafar... va sih nafar : asrār-i paydāyish, sāzmān va dastgīrī-i gurūh-i sīyāsī-i 53 nafar kih barā-yi avvalīn bār ifshā mīshavad / khāṭirāt-i Anvar Khāmah'ī." - ], - "uri": "b10002303", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10002303" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539880" - ], - "physicalLocation": [ - "*OMZ 84-1538" - ], - "shelfMark_sort": "a*OMZ 84-001538", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942130", - "shelfMark": [ - "*OMZ 84-1538" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1538" - }, - { - "type": "bf:Barcode", - "value": "33433014539880" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539880" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003134", - "_score": null, - "_source": { - "extent": [ - "397 p. : ill., port., facsim. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- History", - "Iran -- History -- Qajar dynasty, 1794-1925", - "Statesmen", - "Statesmen -- Iran", - "Statesmen -- Iran -- Biography" - ], - "publisherLiteral": [ - "Intishārāt-i Amīr Kabīr," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī" - ], - "shelfMark": [ - "*OMZ 84-1427" - ], - "creatorLiteral": [ - "Mumtaḥin al-Dawlah Shaqāqī, Mahdī Khān." - ], - "createdString": [ - "1983" - ], - "seriesStatement": [ - "Majmūʻah-ʼi guzashtah-ʼi Īrān dar nivishtah-ʼi pīshīnīyān, 1" - ], - "contributorLiteral": [ - "Khānshaqāqī, Ḥusaynqulī." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1427" - }, - { - "type": "nypl:Bnumber", - "value": "10003134" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303485" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203127" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636109324448, - "publicationStatement": [ - "Tihrān : Intishārāt-i Amīr Kabīr, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003134", - "urn:undefined:NNSZ00303485", - "urn:undefined:(WaOLN)nyp0203127" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- History -- Qajar dynasty, 1794-1925.", - "Statesmen -- Iran -- Biography." - ], - "titleDisplay": [ - "Khāṭirāt-i Mumtaḥin al-Dawlah : zindigīnāmah-ʼi Mīrzā Mahdī Khān Mumtaḥin al-Dawlah Shaqāqī / bi-kūshish-i Ḥusaynqulī Khānshaqāqī." - ], - "uri": "b10003134", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24cm." - ] - }, - "sort": [ - "b10003134" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539856" - ], - "physicalLocation": [ - "*OMZ 84-1427" - ], - "shelfMark_sort": "a*OMZ 84-001427", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942159", - "shelfMark": [ - "*OMZ 84-1427" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-1427" - }, - { - "type": "bf:Barcode", - "value": "33433014539856" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539856" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003171", - "_score": null, - "_source": { - "extent": [ - "412 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Naw" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āvāz-i kushtigān" - ], - "shelfMark": [ - "*OMP 84-2030" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Baraheni, Reza, 1935-2022." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2030" - }, - { - "type": "nypl:Bnumber", - "value": "10003171" - }, - { - "type": "nypl:Oclc", - "value": "NYPG003000626-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303522" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203164" - } - ], - "idOclc": [ - "NYPG003000626-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1675110792889, - "publicationStatement": [ - "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003171", - "urn:oclc:NYPG003000626-B", - "urn:undefined:NNSZ00303522", - "urn:undefined:(WaOLN)nyp0203164" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Āvāz-i kushtigān / Rizā Barāhinī." - ], - "uri": "b10003171", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22cm." - ] - }, - "sort": [ - "b10003171" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10002196", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2030" - ], - "identifierV2": [ - { - "value": "*OMP 84-2030", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173038" - } - ], - "physicalLocation": [ - "*OMP 84-2030" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173038" - ], - "idBarcode": [ - "33433013173038" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002030" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003179", - "_score": null, - "_source": { - "extent": [ - "101 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Novel.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nashr-i Naw" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Chāh bih chāh" - ], - "shelfMark": [ - "*OMP 84-2039" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Baraheni, Reza, 1935-2022." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMP 84-2039" - }, - { - "type": "nypl:Bnumber", - "value": "10003179" - }, - { - "type": "nypl:Oclc", - "value": "NYPG003000634-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303530" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203172" - } - ], - "idOclc": [ - "NYPG003000634-B" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1675110792235, - "publicationStatement": [ - "Tihrān : Nashr-i Naw, 1362 [1983 or 1984]" - ], - "identifier": [ - "urn:bnum:10003179", - "urn:oclc:NYPG003000634-B", - "urn:undefined:NNSZ00303530", - "urn:undefined:(WaOLN)nyp0203172" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Chāh bih chāh / Rizā Barāhinī." - ], - "uri": "b10003179", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003179" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10002203", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OMP 84-2039" - ], - "identifierV2": [ - { - "value": "*OMP 84-2039", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433013173053" - } - ], - "physicalLocation": [ - "*OMP 84-2039" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433013173053" - ], - "idBarcode": [ - "33433013173053" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OMP 84-002039" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003180", - "_score": null, - "_source": { - "extent": [ - "235 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islam and state", - "Islam and state -- Iran", - "Khomeini, Ruhollah" - ], - "publisherLiteral": [ - "Org. of Act. Constitutionalist Iranians," - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "dateEndString": [ - "1989" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Qizāvat" - ], - "shelfMark": [ - "*OMZ 84-965" - ], - "creatorLiteral": [ - "ʻAbd al-Raḥmān." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-965" - }, - { - "type": "nypl:Bnumber", - "value": "10003180" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303531" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203173" - } - ], - "dateEndYear": [ - 1989 - ], - "updatedAt": 1636124389229, - "publicationStatement": [ - "Los Angeles : Org. of Act. Constitutionalist Iranians, [198-?]" - ], - "identifier": [ - "urn:bnum:10003180", - "urn:undefined:NNSZ00303531", - "urn:undefined:(WaOLN)nyp0203173" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islam and state -- Iran.", - "Khomeini, Ruhollah." - ], - "titleDisplay": [ - "Qizāvat / ʻAbd al-Raḥmān..." - ], - "uri": "b10003180", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Los Angeles :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10003180" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433014539666" - ], - "physicalLocation": [ - "*OMZ 84-965" - ], - "shelfMark_sort": "a*OMZ 84-000965", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942161", - "shelfMark": [ - "*OMZ 84-965" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OMZ 84-965" - }, - { - "type": "bf:Barcode", - "value": "33433014539666" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433014539666" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003410", - "_score": null, - "_source": { - "extent": [ - "v. facsims." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Imam Ṭaḥāwī's Disagreement of jurists (Ikhtilāf al-fuqahāʼ)", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Introd. in Arabic and English ; text in Arabic.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: v. 1, p. [313]-314.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic law" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ikhtilāf al-fuqahāʼ," - ], - "shelfMark": [ - "*OGM 84-702" - ], - "creatorLiteral": [ - "Ṭaḥāwī, Aḥmad ibn Muḥammad, 852?-933." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72930954" - ], - "seriesStatement": [ - "Maṭbūʻāt Maʻhad al-Abḥāth al-Islāmīyāh. Publication no. 23" - ], - "contributorLiteral": [ - "Maʻṣūmī, M. Ṣaghīr Ḥasan (Muḥammad Ṣaghīr Ḥasan)" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "nypl:Bnumber", - "value": "10003410" - }, - { - "type": "bf:Lccn", - "value": "72930954" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303765" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203402" - } - ], - "uniformTitle": [ - "Publication (Islamic Research Institute (Pakistan)) ; \\no.23." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636104747880, - "publicationStatement": [ - "Islām Ābād [1971-" - ], - "identifier": [ - "urn:bnum:10003410", - "urn:lccn:72930954", - "urn:undefined:NNSZ00303765", - "urn:undefined:(WaOLN)nyp0203402" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic law." - ], - "titleDisplay": [ - "Ikhtilāf al-fuqahāʼ, lil-Imām Abī Jaʻfar Aḥmad ibn Muḥammad al-Ṭaḥāwī. Ḥaqqaqahu wa-ʻallaqa ʻalayhi Muḥammad Ṣaghīr Ḥasan al-Maʻṣūmī." - ], - "uri": "b10003410", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Islām Ābād" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003410" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001944960" - ], - "physicalLocation": [ - "*OGM 84-702" - ], - "shelfMark_sort": "a*OGM 84-000702", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002358", - "shelfMark": [ - "*OGM 84-702" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGM 84-702" - }, - { - "type": "bf:Barcode", - "value": "33433001944960" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001944960" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003414", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title: Skandamahāpurāṇam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Added t.p. in English or Hindi.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Vol. 1:2. Saṃskaraṇam; v. 2-: 1. Saṃskaraṇam.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter in Hindi or Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Manasukharāya Mora," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1960 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Skandamahāpurāṇam" - ], - "shelfMark": [ - "*OKOK 84-641" - ], - "createdString": [ - "1960" - ], - "idLccn": [ - "73902099" - ], - "seriesStatement": [ - "Gurumaṇḍalagranthamālāyāḥ ; puṣpam 20" - ], - "dateStartYear": [ - 1960 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641" - }, - { - "type": "nypl:Bnumber", - "value": "10003414" - }, - { - "type": "bf:Lccn", - "value": "73902099" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303769" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203406" - } - ], - "uniformTitle": [ - "Puranas Skanda Purāṇa." - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636124303127, - "publicationStatement": [ - "Kalakattā : Manasukharāya Mora, 1960-" - ], - "identifier": [ - "urn:bnum:10003414", - "urn:lccn:73902099", - "urn:undefined:NNSZ00303769", - "urn:undefined:(WaOLN)nyp0203406" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1960" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Skandamahāpurāṇam / Śrāmanmaharṣikrṣṇadvaipāyanavyāsaviracitam." - ], - "uri": "b10003414", - "lccClassification": [ - "PK3621 .S5 1960" - ], - "numItems": [ - 6 - ], - "numAvailable": [ - 6 - ], - "placeOfPublication": [ - "Kalakattā :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Skanda-Purāṇam." - ], - "tableOfContents": [ - "1. Māheśvarakhaṇḍātmakaḥ.--2. Vaiṣṇavakhaṇḍātmakaḥ.--3. Brahmakhandātmakaḥ.--4. Kāśīkhaṇḍātmakaḥ.--5. Avantīkhaṇḍātmakah. 2 pts." - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10003414" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 6, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002364", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 2" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002363", - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 1" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221407" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002362", - "shelfMark": [ - "*OKOK 84-641 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433013221407" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433013221407" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221399" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002365", - "shelfMark": [ - "*OKOK 84-641 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433013221399" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433013221399" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221381" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002361", - "shelfMark": [ - "*OKOK 84-641 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433013221381" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433013221381" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433013221373" - ], - "physicalLocation": [ - "*OKOK 84-641" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002360", - "shelfMark": [ - "*OKOK 84-641 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 84-641 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433013221373" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433013221373" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003502", - "_score": null, - "_source": { - "extent": [ - "v. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Partly translations from German poetry (with German texts included).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Originally published in 1856, under title: Dziesmiņas latviešu valodai pārtulkotas; original t.p. included.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Liesma," - ], - "language": [ - { - "id": "lang:lav", - "label": "Latvian" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dziesmiņas" - ], - "shelfMark": [ - "*QYN 82-2046" - ], - "creatorLiteral": [ - "Alunāns, Juris, 1832-1864." - ], - "createdString": [ - "1981" - ], - "seriesStatement": [ - "Literārā mantojuma mazā bibliotēka" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046" - }, - { - "type": "nypl:Bnumber", - "value": "10003502" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00303857" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203494" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636091475285, - "publicationStatement": [ - "Riga : Liesma, 1981-" - ], - "identifier": [ - "urn:bnum:10003502", - "urn:undefined:NNSZ00303857", - "urn:undefined:(WaOLN)nyp0203494" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Dziesmiņas / Juris Alunāns." - ], - "uri": "b10003502", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Riga :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "17 cm." - ] - }, - "sort": [ - "b10003502" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002421", - "shelfMark": [ - "*QYN 82-2046 Dala 1." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*QYN 82-2046 Dala 1." - }, - { - "type": "bf:Barcode", - "value": "33433013501782" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013501782" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003671", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Egypt", - "Egypt -- Politics and government", - "Egypt -- Politics and government -- 640-1882" - ], - "publisherLiteral": [ - "Maktabat al-Anjlū al-Miṣrīyah," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." - ], - "shelfMark": [ - "*OFP 82-1931" - ], - "creatorLiteral": [ - "Mājid, ʻAbd al-Munʻim." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "73960873" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "nypl:Bnumber", - "value": "10003671" - }, - { - "type": "bf:Lccn", - "value": "73960873" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304029" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203663" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636119319155, - "publicationStatement": [ - "al-Qāhirah, Maktabat al-Anjlū al-Miṣrīyah, 1973-" - ], - "identifier": [ - "urn:bnum:10003671", - "urn:lccn:73960873", - "urn:undefined:NNSZ00304029", - "urn:undefined:(WaOLN)nyp0203663" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Egypt -- Politics and government -- 640-1882." - ], - "titleDisplay": [ - "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte. Taʼlīf ʻAbd al-Munʻim Mājid." - ], - "uri": "b10003671", - "lccClassification": [ - "JQ3824 .M34 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "al-Qāhirah," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Institutions et cérémonial des Fatimides en Égypte." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10003671" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433001937121" - ], - "physicalLocation": [ - "*OFP 82-1931" - ], - "shelfMark_sort": "a*OFP 82-001931", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002566", - "shelfMark": [ - "*OFP 82-1931" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OFP 82-1931" - }, - { - "type": "bf:Barcode", - "value": "33433001937121" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001937121" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003719", - "_score": null, - "_source": { - "extent": [ - "v." - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 2 & 4: pariṣkarta Puripanda.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Telugu.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Telugu literature", - "Telugu literature -- History and criticism" - ], - "publisherLiteral": [ - "Āndhrapradēś Sāhitya Akāḍami" - ], - "language": [ - { - "id": "lang:tel", - "label": "Telugu" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." - ], - "shelfMark": [ - "*OLC 83-35" - ], - "creatorLiteral": [ - "Subrahmanyam, G. V., 1935-" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "71912553" - ], - "contributorLiteral": [ - "Appalaswamy, Puripanda, 1904-", - "Āndhra Pradēśa Sāhitya Akāḍami." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35" - }, - { - "type": "nypl:Bnumber", - "value": "10003719" - }, - { - "type": "bf:Lccn", - "value": "71912553" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304078" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203711" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132209400, - "publicationStatement": [ - "Haidrābādu, Āndhrapradēś Sāhitya Akāḍami [1969-" - ], - "identifier": [ - "urn:bnum:10003719", - "urn:lccn:71912553", - "urn:undefined:NNSZ00304078", - "urn:undefined:(WaOLN)nyp0203711" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Telugu literature -- History and criticism." - ], - "titleDisplay": [ - "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu. Saṅkalanakarta Ji. Vi. Subrahmaṇyaṃ." - ], - "uri": "b10003719", - "lccClassification": [ - "PL4780.05 S79" - ], - "numItems": [ - 5 - ], - "numAvailable": [ - 5 - ], - "placeOfPublication": [ - "Haidrābādu," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10003719" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 5, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197476" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000005", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002605", - "shelfMark": [ - "*OLC 83-35 v. 5" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 5" - }, - { - "type": "bf:Barcode", - "value": "33433011197476" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 5" - ], - "idBarcode": [ - "33433011197476" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197468" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000004", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002604", - "shelfMark": [ - "*OLC 83-35 v. 4" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 4" - }, - { - "type": "bf:Barcode", - "value": "33433011197468" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 4" - ], - "idBarcode": [ - "33433011197468" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197450" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002603", - "shelfMark": [ - "*OLC 83-35 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433011197450" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433011197450" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197443" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002602", - "shelfMark": [ - "*OLC 83-35 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433011197443" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433011197443" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433011197435" - ], - "physicalLocation": [ - "*OLC 83-35" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10002601", - "shelfMark": [ - "*OLC 83-35 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLC 83-35 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433011197435" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433011197435" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10003958", - "_score": null, - "_source": { - "extent": [ - "39, 18, 83, 3 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Original Version", - "label": "Reprint of the 1910 ? ed.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Logic", - "Logic -- Early works to 1800" - ], - "publisherLiteral": [ - "Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "dateEndString": [ - "1910" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn," - ], - "shelfMark": [ - "*OGL 83-2455" - ], - "creatorLiteral": [ - "Avicenna, 980-1037." - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "73960850" - ], - "contributorLiteral": [ - "Avicenna, 980-1037." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGL 83-2455" - }, - { - "type": "nypl:Bnumber", - "value": "10003958" - }, - { - "type": "bf:Lccn", - "value": "73960850" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304319" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0203950" - } - ], - "dateEndYear": [ - 1910 - ], - "updatedAt": 1636072413178, - "publicationStatement": [ - "Qum : Maktabat Āyat Allāh al-ʻUẓmá al-Najafī al-Marʻashī, 1405 [1984 or 1985]" - ], - "identifier": [ - "urn:bnum:10003958", - "urn:lccn:73960850", - "urn:undefined:NNSZ00304319", - "urn:undefined:(WaOLN)nyp0203950" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Logic -- Early works to 1800." - ], - "titleDisplay": [ - "al-Qaṣīdah al-muzdawijah fī al-manṭiq wa-manṭiq al-mashriqīyīn, taṣnīf Abī ʻAlī ibn Sīnā." - ], - "uri": "b10003958", - "lccClassification": [ - "B751 .M4 1973" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Qum :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10003958" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433058069919" - ], - "physicalLocation": [ - "*OGL 83-2455" - ], - "shelfMark_sort": "a*OGL 83-002455", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858216", - "shelfMark": [ - "*OGL 83-2455" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGL 83-2455" - }, - { - "type": "bf:Barcode", - "value": "33433058069919" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433058069919" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004373", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vols. 3- have imprint: Mysore : Sahyādri Prakāśana.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Kannada.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kuvempu, 1904-1994" - ], - "publisherLiteral": [ - "Karnāṭaka Sahakārī Prakāśana Mandira" - ], - "language": [ - { - "id": "lang:kan", - "label": "Kannada" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu." - ], - "shelfMark": [ - "*OLA 83-3417" - ], - "creatorLiteral": [ - "Javare Gowda, Deve Gowda, 1918-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72902119" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417" - }, - { - "type": "nypl:Bnumber", - "value": "10004373" - }, - { - "type": "bf:Lccn", - "value": "72902119" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00304738" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204365" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636109940889, - "publicationStatement": [ - "Beṅgaḷūru] Karnāṭaka Sahakārī Prakāśana Mandira [1971]-" - ], - "identifier": [ - "urn:bnum:10004373", - "urn:lccn:72902119", - "urn:undefined:NNSZ00304738", - "urn:undefined:(WaOLN)nyp0204365" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kuvempu, 1904-1994." - ], - "titleDisplay": [ - "Kuvempu sāhitya: Kelavu adhyayanagaḷu. [Lēkhaka] Dējagau." - ], - "uri": "b10004373", - "lccClassification": [ - "PL4659.P797 S7934" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Beṅgaḷūru]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004373" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003188", - "shelfMark": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-3417 Library has: Vol. 1, 3." - }, - { - "type": "bf:Barcode", - "value": "33433001707623" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433001707623" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433057523718" - ], - "physicalLocation": [ - "*OLA 83-341" - ], - "shelfMark_sort": "a*OLA 83-341 v. 000003", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12858227", - "shelfMark": [ - "*OLA 83-341 v. 3" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLA 83-341 v. 3" - }, - { - "type": "bf:Barcode", - "value": "33433057523718" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 3" - ], - "idBarcode": [ - "33433057523718" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004788", - "_score": null, - "_source": { - "extent": [ - "277 p. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Plon" - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Le château du soleil couchant : roman" - ], - "shelfMark": [ - "JFE 84-3450" - ], - "creatorLiteral": [ - "Grey, Marina." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "La saga de l'exil / Marina Grey ; [3]", - "Grey, Marina. Saga de l'exil ; \\[3]" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 84-3450" - }, - { - "type": "nypl:Bnumber", - "value": "10004788" - }, - { - "type": "bf:Isbn", - "value": "2259011187 :" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00405900" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204778" - } - ], - "updatedAt": 1652324535423, - "publicationStatement": [ - "Paris : Plon, 1984." - ], - "identifier": [ - "urn:bnum:10004788", - "urn:isbn:2259011187 :", - "urn:undefined:NNSZ00405900", - "urn:undefined:(WaOLN)nyp0204778" - ], - "idIsbn": [ - "2259011187 " - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Le château du soleil couchant : roman / Marina Grey." - ], - "uri": "b10004788", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "2259011187" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10004788" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858280", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 84-3450" - ], - "identifierV2": [ - { - "value": "JFE 84-3450", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113944" - } - ], - "physicalLocation": [ - "JFE 84-3450" - ], - "identifier": [ - "urn:barcode:33433046113944" - ], - "idBarcode": [ - "33433046113944" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJFE 84-003450" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004816", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "Martins Livreiro-Editor," - ], - "language": [ - { - "id": "lang:por", - "label": "Portuguese" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A outra face de J. Simões Lopes Neto" - ], - "shelfMark": [ - "JFK 84-291" - ], - "creatorLiteral": [ - "Lopes Neto, J. Simões (João Simões), 1865-1916." - ], - "createdString": [ - "1983" - ], - "idLccn": [ - "84227211" - ], - "contributorLiteral": [ - "Moreira, Angelo Pires." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291" - }, - { - "type": "nypl:Bnumber", - "value": "10004816" - }, - { - "type": "bf:Lccn", - "value": "84227211" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204806" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636069640817, - "publicationStatement": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil : Martins Livreiro-Editor, 1983-" - ], - "identifier": [ - "urn:bnum:10004816", - "urn:lccn:84227211", - "urn:undefined:(WaOLN)nyp0204806" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "A outra face de J. Simões Lopes Neto / [editor] Angelo Pires Moreira." - ], - "uri": "b10004816", - "lccClassification": [ - "PQ9697.L7223 A6 1983" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Porto Alegre, RGSul [i.e. Rio Grande do Sul], Brasil :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10004816" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003418559" - ], - "physicalLocation": [ - "JFK 84-291" - ], - "shelfMark_sort": "aJFK 84-291 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003383", - "shelfMark": [ - "JFK 84-291 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-291 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433003418559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433003418559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10004947", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Geografi︠i︡a.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 170.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1926 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-221 no. 8" - ], - "creatorLiteral": [ - "Räshad, Gafyr." - ], - "createdString": [ - "1926" - ], - "dateStartYear": [ - 1926 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-221 no. 8" - }, - { - "type": "nypl:Bnumber", - "value": "10004947" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406058" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0204937" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403668, - "publicationStatement": [ - "Baqï : Azärnäshr, 1926-" - ], - "identifier": [ - "urn:bnum:10004947", - "urn:undefined:NNSZ00406058", - "urn:undefined:(WaOLN)nyp0204937" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1926" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Gafyr Räshad." - ], - "uri": "b10004947", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Geografi︠i︡a." - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10004947" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105673499" - ], - "physicalLocation": [ - "*ZO-221" - ], - "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30081242", - "shelfMark": [ - "*ZO-221 11 Azerbaijani monographs" - ], - "identifierV2": [ - { - "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" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005127", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of cover title: Zähmät mäqtäbläri uçun tädris vä pedagozhi qitablarï.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Cover colophon title in Russian: Nachalʹnyĭ kurs geografii.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 151.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts", - "Geography", - "Geography -- Textbooks" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1928 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Cografija [microform]" - ], - "shelfMark": [ - "*ZO-216 no. 15" - ], - "creatorLiteral": [ - "Ivanov, G." - ], - "createdString": [ - "1928" - ], - "dateStartYear": [ - 1928 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-216 no. 15" - }, - { - "type": "nypl:Bnumber", - "value": "10005127" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406243" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205116" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636082403606, - "publicationStatement": [ - "Baqï : Azärnäshr, 1928-" - ], - "identifier": [ - "urn:bnum:10005127", - "urn:undefined:NNSZ00406243", - "urn:undefined:(WaOLN)nyp0205116" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1928" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts.", - "Geography -- Textbooks." - ], - "titleDisplay": [ - "Cografija [microform] / Ivanof ; çäviräni Äsädylla Äbdurrähim-zadä." - ], - "uri": "b10005127", - "numItems": [ - 0 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Baqï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Nachalʹnyĭ kurs geografii." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005127" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005211", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title in Russian: Khaos.", - "type": "bf:Note" - }, - { - "noteType": "Indexed In", - "label": "Allworth no. 586.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Azerbaijani.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Azerbaijani language", - "Azerbaijani language -- Texts" - ], - "publisherLiteral": [ - "Azärnäshr," - ], - "language": [ - { - "id": "lang:aze", - "label": "Azerbaijani" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1929 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Xaos [microform]" - ], - "shelfMark": [ - "*ZO-220 no. 9" - ], - "creatorLiteral": [ - "Shirvanzade, 1858-1935." - ], - "createdString": [ - "1929" - ], - "dateStartYear": [ - 1929 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 no. 9" - }, - { - "type": "nypl:Bnumber", - "value": "10005211" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00406328" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205200" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636144501921, - "publicationStatement": [ - "Bagï : Azärnäshr, 1929" - ], - "identifier": [ - "urn:bnum:10005211", - "urn:undefined:NNSZ00406328", - "urn:undefined:(WaOLN)nyp0205200" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1929" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Azerbaijani language -- Texts." - ], - "titleDisplay": [ - "Xaos [microform] / Shirvanzada ; ermeni dilinden ceviräni F. Ismixanov ; tärcimäsinin redaktory Säid Mirkasïmzada." - ], - "uri": "b10005211", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bagï :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Khaos." - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10005211" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433105674059" - ], - "physicalLocation": [ - "*ZO-220" - ], - "shelfMark_sort": "a*ZO-220 collection of 10 titles (monographs)", - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i30087469", - "shelfMark": [ - "*ZO-220 collection of 10 titles (monographs)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ZO-220 collection of 10 titles (monographs)" - }, - { - "type": "bf:Barcode", - "value": "33433105674059" - } - ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "enumerationChronology": [ - "collection of 10 titles (monographs)" - ], - "idBarcode": [ - "33433105674059" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005860", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "In Swahili.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Swahili language", - "Swahili language -- Texts" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:swa", - "label": "Swahili" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "shelfMark": [ - "Sc Ser.-N .Z288" - ], - "creatorLiteral": [ - "Zanzibar." - ], - "createdString": [ - "1980" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-N .Z288" - }, - { - "type": "nypl:Bnumber", - "value": "10005860" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205850" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636116169694, - "publicationStatement": [ - "[Zanzibar : s.n., 1980- ]" - ], - "identifier": [ - "urn:bnum:10005860", - "urn:undefined:NNSZ00507074", - "urn:undefined:(WaOLN)nyp0205850" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Swahili language -- Texts." - ], - "titleDisplay": [ - "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." - ], - "uri": "b10005860", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Zanzibar :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Kitabu cha 1-9." - ], - "dimensions": [ - "13-31 cm." - ] - }, - "sort": [ - "b10005860" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10942241", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-N .Z288 Kituba cha 1-9" - ], - "identifierV2": [ - { - "value": "Sc Ser.-N .Z288 Kituba cha 1-9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030859007" - } - ], - "physicalLocation": [ - "Sc Ser.-N .Z288" - ], - "enumerationChronology": [ - "Kituba cha 1-9" - ], - "identifier": [ - "urn:barcode:33433030859007" - ], - "idBarcode": [ - "33433030859007" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005862", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Editor: Gerald A. McWorter.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Study and teaching", - "African Americans -- Study and teaching -- Congresses", - "Black people", - "Black people -- Study and teaching", - "Black people -- Study and teaching -- Congresses" - ], - "publisherLiteral": [ - "Afro-American Studies and Research Program, University of Illinois," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Proceedings" - ], - "shelfMark": [ - "Sc Ser.-M .N3674" - ], - "creatorLiteral": [ - "National Council for Black Studies (U.S.). Conference (6th : 1982 : Chicago, Ill.)" - ], - "createdString": [ - "1983" - ], - "contributorLiteral": [ - "McWorter, Gerald A." - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .N3674" - }, - { - "type": "nypl:Bnumber", - "value": "10005862" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507076" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205852" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144093", - "shelfMark": [ - "Sc Ser.-M .N3674" - ] - } - ], - "updatedAt": 1643270732538, - "publicationStatement": [ - "Urbana, Ill. : Afro-American Studies and Research Program, University of Illinois, [1983?-]" - ], - "identifier": [ - "urn:bnum:10005862", - "urn:undefined:NNSZ00507076", - "urn:undefined:(WaOLN)nyp0205852" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Study and teaching -- Congresses.", - "Black people -- Study and teaching -- Congresses." - ], - "titleDisplay": [ - "Proceedings / National Council for Black Studies, 6th annual national conference." - ], - "uri": "b10005862", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Urbana, Ill. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "no. 1. Race/class.--no. 2. Studies on Black children and their families.--no. 3. Philosophical perspectives in Black studies.--no. 4. Black liberation movement.--no. 5. Social science and the Black experience." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005862" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i17447316", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 3-5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219805" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 3-5" - ], - "identifier": [ - "urn:barcode:33433072219805" - ], - "idBarcode": [ - "33433072219805" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000003-5" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746590", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 1-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433072219797" - } - ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], - "enumerationChronology": [ - "no. 1-2" - ], - "identifier": [ - "urn:barcode:33433072219797" - ], - "idBarcode": [ - "33433072219797" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000001-2" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005870", - "_score": null, - "_source": { - "extent": [ - "71 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"D'après le livre et le montage audiovisual 'L'Evolution de l'amour' por D. Sonet, légèrement adapté avec l'aimable autorisation de l'auteur.\"", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sex instruction", - "Sex instruction -- Haiti", - "Sonet, D" - ], - "publisherLiteral": [ - "Action familiale d'Haïti," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A quel age peut-on aimer? : pour une éducation à l'amour responsable" - ], - "shelfMark": [ - "Sc D 84-595" - ], - "createdString": [ - "1980" - ], - "contributorLiteral": [ - "Action familiale d'Haïti." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-595" - }, - { - "type": "nypl:Bnumber", - "value": "10005870" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507084" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205860" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636069688379, - "publicationStatement": [ - "Port-au-Prince : Action familiale d'Haïti, [198-?]" - ], - "identifier": [ - "urn:bnum:10005870", - "urn:undefined:NNSZ00507084", - "urn:undefined:(WaOLN)nyp0205860" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sex instruction -- Haiti.", - "Sonet, D." - ], - "titleDisplay": [ - "A quel age peut-on aimer? : pour une éducation à l'amour responsable / Action familiale d'Haïti." - ], - "uri": "b10005870", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Port-au-Prince :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10005870" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900461", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-595" - ], - "identifierV2": [ - { - "value": "Sc D 84-595", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036649329" - } - ], - "physicalLocation": [ - "Sc D 84-595" - ], - "identifier": [ - "urn:barcode:33433036649329" - ], - "idBarcode": [ - "33433036649329" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000595" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005876", - "_score": null, - "_source": { - "extent": [ - "xxvii, 751 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "At head of title: Unesco International Scientific Committee for the Drafting of a General History of Africa.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 692-733.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa", - "Africa -- History", - "Africa -- History -- To 1884" - ], - "publisherLiteral": [ - "Heinemann ; University of California Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Africa from the twelfth to the sixteenth century" - ], - "shelfMark": [ - "Sc E 84-288" - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "84256508 //r86" - ], - "seriesStatement": [ - "General history of Africa ; 4" - ], - "contributorLiteral": [ - "Niane, Djibril Tamsir.", - "Unesco. International Scientific Committee for the Drafting of a General History of Africa." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc E 84-288" - }, - { - "type": "nypl:Bnumber", - "value": "10005876" - }, - { - "type": "bf:Isbn", - "value": "0435948105" - }, - { - "type": "bf:Isbn", - "value": "0520039157 (University of California Press)" - }, - { - "type": "bf:Lccn", - "value": "84256508 //r86" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205866" - } - ], - "updatedAt": 1652323261637, - "publicationStatement": [ - "London : Heinemann ; Berkeley, Calif. : University of California Press, 1984." - ], - "identifier": [ - "urn:bnum:10005876", - "urn:isbn:0435948105", - "urn:isbn:0520039157 (University of California Press)", - "urn:lccn:84256508 //r86", - "urn:undefined:(WaOLN)nyp0205866" - ], - "idIsbn": [ - "0435948105", - "0520039157 (University of California Press)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa -- History -- To 1884." - ], - "titleDisplay": [ - "Africa from the twelfth to the sixteenth century / editor, D.T. Niane." - ], - "uri": "b10005876", - "lccClassification": [ - "DT20 .G45 1981 vol. 4 DT25" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London : Berkeley, Calif." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0435948105", - "0520039157" - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10005876" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10003888", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc E 84-288" - ], - "identifierV2": [ - { - "value": "Sc E 84-288", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433021813997" - } - ], - "physicalLocation": [ - "Sc E 84-288" - ], - "identifier": [ - "urn:barcode:33433021813997" - ], - "idBarcode": [ - "33433021813997" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc E 84-000288" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10003889", - "status": [ - { - "id": "status:m", - "label": "Missing" - } - ], - "status_packed": [ - "status:m||Missing" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "*R-BK 90-2407" - ], - "identifierV2": [ - { - "value": "*R-BK 90-2407", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*R-BK 90-2407" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], - "accessMessage_packed": [ - "accessMessage:-||No restrictions" - ], - "shelfMark_sort": "a*R-BK 90-002407" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005898", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Creole dialects, French", - "Creole dialects, French -- Haiti", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers", - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French" - ], - "publisherLiteral": [ - "I.L.A. de Port-au-Prince," - ], - "language": [ - { - "id": "lang:crp", - "label": "Creoles and Pidgins (Other)" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Leson kreyòl pou etranje ki pale franse \\" - ], - "shelfMark": [ - "Sc Ser.-M .M468" - ], - "creatorLiteral": [ - "Mirville, Ernst." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Collection Coucoville", - "Siwolin; \\t.2" - ], - "contributorLiteral": [ - "Institut de linguistique appliquée de Port-au-Prince." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .M468" - }, - { - "type": "nypl:Bnumber", - "value": "10005898" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507113" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205888" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1144290", - "shelfMark": [ - "Sc Ser.-M .M468" - ] - } - ], - "updatedAt": 1636113236627, - "publicationStatement": [ - "Port-au-Prince : I.L.A. de Port-au-Prince, 1984-" - ], - "identifier": [ - "urn:bnum:10005898", - "urn:undefined:NNSZ00507113", - "urn:undefined:(WaOLN)nyp0205888" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Creole dialects, French -- Haiti -- Textbooks for foreign speakers -- French." - ], - "titleDisplay": [ - "Leson kreyòl pou etranje ki pale franse \\ Ernst Mirville." - ], - "uri": "b10005898", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Port-au-Prince :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10005898" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900486", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .M468 t. 2, ptie 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .M468 t. 2, ptie 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017863220" - } - ], - "physicalLocation": [ - "Sc Ser.-M .M468" - ], - "enumerationChronology": [ - "t. 2, ptie 1" - ], - "identifier": [ - "urn:barcode:33433017863220" - ], - "idBarcode": [ - "33433017863220" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005902", - "_score": null, - "_source": { - "extent": [ - "76 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sacred songs, English", - "Sacred songs, English -- Caribbean Area", - "Sacred songs, English -- Caribbean Area -- Texts", - "Sacred songs, English -- Jamaica", - "Sacred songs, English -- Jamaica -- Texts" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Modern Jamaican-Caribbean religious folk music." - ], - "shelfMark": [ - "Sc D 84-602" - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-602" - }, - { - "type": "nypl:Bnumber", - "value": "10005902" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507117" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205892" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636116687148, - "publicationStatement": [ - "[S.l. : s.n., 19--]" - ], - "identifier": [ - "urn:bnum:10005902", - "urn:undefined:NNSZ00507117", - "urn:undefined:(WaOLN)nyp0205892" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sacred songs, English -- Caribbean Area -- Texts.", - "Sacred songs, English -- Jamaica -- Texts." - ], - "titleDisplay": [ - "Modern Jamaican-Caribbean religious folk music." - ], - "uri": "b10005902", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10005902" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900490", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-602" - ], - "identifierV2": [ - { - "value": "Sc D 84-602", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058825831" - } - ], - "physicalLocation": [ - "Sc D 84-602" - ], - "identifier": [ - "urn:barcode:33433058825831" - ], - "idBarcode": [ - "33433058825831" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000602" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005905", - "_score": null, - "_source": { - "extent": [ - "52 p. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "publisherLiteral": [ - "s.n.," - ], - "language": [ - { - "id": "lang:fre", - "label": "French" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\" - ], - "shelfMark": [ - "Sc C 85-2" - ], - "creatorLiteral": [ - "Passavant, Camille." - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc C 85-2" - }, - { - "type": "nypl:Bnumber", - "value": "10005905" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507120" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205895" - } - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1636132396392, - "publicationStatement": [ - "[Fort-de-France? Martinique : s.n., 19--] 52" - ], - "identifier": [ - "urn:bnum:10005905", - "urn:undefined:NNSZ00507120", - "urn:undefined:(WaOLN)nyp0205895" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Tchiè dans tchiè : les angoisses du coeur : recueil de poèmes \\ Camille Passavant." - ], - "uri": "b10005905", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Fort-de-France? Martinique :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 x 21 cm." - ] - }, - "sort": [ - "b10005905" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900493", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc C 85-2" - ], - "identifierV2": [ - { - "value": "Sc C 85-2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036604563" - } - ], - "physicalLocation": [ - "Sc C 85-2" - ], - "identifier": [ - "urn:barcode:33433036604563" - ], - "idBarcode": [ - "33433036604563" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc C 85-000002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005907", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Discography: p. 115-122.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- History and criticism" - ], - "publisherLiteral": [ - "Producciones Don Pedro," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1978 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "En torno al jazz" - ], - "shelfMark": [ - "Sc Ser.-L .V354" - ], - "creatorLiteral": [ - "Vélez, Ana." - ], - "createdString": [ - "1978" - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-L .V354" - }, - { - "type": "nypl:Bnumber", - "value": "10005907" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507122" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205897" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636093384929, - "publicationStatement": [ - "San Juan, P.R. : Producciones Don Pedro, 1978-" - ], - "identifier": [ - "urn:bnum:10005907", - "urn:undefined:NNSZ00507122", - "urn:undefined:(WaOLN)nyp0205897" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- History and criticism." - ], - "titleDisplay": [ - "En torno al jazz / Ana Vélez." - ], - "uri": "b10005907", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "San Juan, P.R. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Musica de nuestro siglo -- v. 2. Impacto social y trascendencia." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10005907" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900496", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 2" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433017895651" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433017895651" - ], - "idBarcode": [ - "33433017895651" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900495", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 1" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433030890481" - } - ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], - "enumerationChronology": [ - "v. 1" - ], - "identifier": [ - "urn:barcode:33433030890481" - ], - "idBarcode": [ - "33433030890481" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10005910", - "_score": null, - "_source": { - "extent": [ - "xvi, 99 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 99.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Universities and colleges", - "Universities and colleges -- Africa", - "Universities and colleges -- Zambia" - ], - "publisherLiteral": [ - "Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The African university : issues and perspectives : speeches" - ], - "shelfMark": [ - "Sc D 84-502" - ], - "creatorLiteral": [ - "Goma, L. K. H." - ], - "createdString": [ - "1984" - ], - "idLccn": [ - "84980558" - ], - "seriesStatement": [ - "Zambian papers ; no. 14" - ], - "contributorLiteral": [ - "Tembo, L. P.", - "University of Zambia. Institute for African Studies." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-502" - }, - { - "type": "nypl:Bnumber", - "value": "10005910" - }, - { - "type": "bf:Lccn", - "value": "84980558" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0205900" - } - ], - "updatedAt": 1636133189056, - "publicationStatement": [ - "Lusaka, Zambia : Published on behalf of the Institute for African Studies, University of Zambia, by National Educational Co. of Zambia, 1984." - ], - "identifier": [ - "urn:bnum:10005910", - "urn:lccn:84980558", - "urn:undefined:(WaOLN)nyp0205900" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Universities and colleges -- Africa.", - "Universities and colleges -- Zambia." - ], - "titleDisplay": [ - "The African university : issues and perspectives : speeches / by L.H.K. [i.e. L.K.H.] Goma ; selected and edited by L.P. Tembo." - ], - "uri": "b10005910", - "lccClassification": [ - "DT963.A3 Z3 no. 14 LA1503" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Lusaka, Zambia :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10005910" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433021791029" - ], - "physicalLocation": [ - "Sc D 84-502" - ], - "shelfMark_sort": "aSc D 84-000502", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003896", - "shelfMark": [ - "Sc D 84-502" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-502" - }, - { - "type": "bf:Barcode", - "value": "33433021791029" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433021791029" - ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003630815" - ], - "physicalLocation": [ - "JFK 86-224" - ], - "shelfMark_sort": "aJFK 86-224 v. 000014", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003897", - "shelfMark": [ - "JFK 86-224 v. 14" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 86-224 v. 14" - }, - { - "type": "bf:Barcode", - "value": "33433003630815" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 14" - ], - "idBarcode": [ - "33433003630815" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006007", - "_score": null, - "_source": { - "extent": [ - "2 microfilm reels ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes biographical notes, scope and contents note and indexes.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm of Mss.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Washington, Fredi, 1903-1994", - "African American actresses", - "African American actresses -- Correspondence", - "African American women journalists", - "African American women journalists -- Correspondence", - "African Americans in the performing arts", - "African American actors", - "African American journalists" - ], - "publisherLiteral": [ - "Amistad Research Center" - ], - "description": [ - "Contains approximately one hundred pieces of correspondence, news clippings containing reviews of productions in which Fredi Washington appeared, and Washington's columns for The People's voice. Other groups in the collection are theatre programs, scripts, photographs and documentation of honors conferred on Fredi Washington." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1984" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Fredi Washington papers, 1925-1979." - ], - "shelfMark": [ - "Sc Micro R-4205" - ], - "creatorLiteral": [ - "Washington, Fredi, 1903-1994." - ], - "createdString": [ - "1980" - ], - "contributorLiteral": [ - "Amistad Research Center." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro R-4205" - }, - { - "type": "nypl:Bnumber", - "value": "10006007" - }, - { - "type": "nypl:Oclc", - "value": "11780064" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)11780064" - } - ], - "idOclc": [ - "11780064" - ], - "dateEndYear": [ - 1984 - ], - "updatedAt": 1651087265505, - "publicationStatement": [ - "New Orleans, La. : Amistad Research Center, [198-?]" - ], - "identifier": [ - "urn:bnum:10006007", - "urn:oclc:11780064", - "urn:undefined:(OCoLC)11780064" - ], - "genreForm": [ - "Personal correspondence." - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Washington, Fredi, 1903-1994.", - "African American actresses -- Correspondence.", - "African American women journalists -- Correspondence.", - "African Americans in the performing arts.", - "African American actors.", - "African American journalists." - ], - "titleDisplay": [ - "Fredi Washington papers, 1925-1979." - ], - "uri": "b10006007", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "New Orleans, La." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "35 mm" - ] - }, - "sort": [ - "b10006007" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900582", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4205 r. 2" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4205 r. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031242500" - } - ], - "physicalLocation": [ - "Sc Micro R-4205" - ], - "enumerationChronology": [ - "r. 2" - ], - "identifier": [ - "urn:barcode:33433031242500" - ], - "idBarcode": [ - "33433031242500" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-4205 r. 000002" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900581", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4205 r. 1" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4205 r. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433031242492" - } - ], - "physicalLocation": [ - "Sc Micro R-4205" - ], - "enumerationChronology": [ - "r. 1" - ], - "identifier": [ - "urn:barcode:33433031242492" - ], - "idBarcode": [ - "33433031242492" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-4205 r. 000001" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006011", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tem language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tem" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Der-Houssikian, Haig." - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .T425" - }, - { - "type": "nypl:Bnumber", - "value": "10006011" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507231" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206003" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636132578775, - "publicationStatement": [ - "Brattleboro, vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006011", - "urn:undefined:NNSZ00507231", - "urn:undefined:(WaOLN)nyp0206003" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tem language." - ], - "titleDisplay": [ - "Tem / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006011", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Communication and culture handbook/by Haig Der-Houssikian.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006011" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i23169346", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .T425" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .T425", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433076233265" - } - ], - "physicalLocation": [ - "Sc Ser.-M .T425" - ], - "identifier": [ - "urn:barcode:33433076233265" - ], - "idBarcode": [ - "33433076233265" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .T000425" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006012", - "_score": null, - "_source": { - "extent": [ - "v. : ill. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kabre language" - ], - "publisherLiteral": [ - "Experiment in International Living," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kabiye" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "createdString": [ - "1980" - ], - "seriesStatement": [ - "Peace Corps language handbook series" - ], - "contributorLiteral": [ - "Experiment in International Living.", - "Jassor, Essogoye.", - "Sedlak, Philip Alan Stephen, 1939-" - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc F 84-135" - }, - { - "type": "nypl:Bnumber", - "value": "10006012" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507232" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206004" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636108841395, - "publicationStatement": [ - "Brattleboro, Vt. : Experiment in International Living, 1980-" - ], - "identifier": [ - "urn:bnum:10006012", - "urn:undefined:NNSZ00507232", - "urn:undefined:(WaOLN)nyp0206004" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kabre language." - ], - "titleDisplay": [ - "Kabiye / developed by the Experiment in International Living...for ACTION/Peace Corps." - ], - "uri": "b10006012", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Brattleboro, Vt. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "Special skills handbook/compiled by Philip A.S. Sedlak; assisted by Essogoye Jassor.--" - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006012" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900585", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc F 84-135" - ], - "identifierV2": [ - { - "value": "Sc F 84-135", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036872368" - } - ], - "physicalLocation": [ - "Sc F 84-135" - ], - "identifier": [ - "urn:barcode:33433036872368" - ], - "idBarcode": [ - "33433036872368" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc F 84-000135" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006018", - "_score": null, - "_source": { - "extent": [ - "v. : ports. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Corrections to volume I\": v. 2, p. 69.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iota Phi Lambda" - ], - "publisherLiteral": [ - "The Sorority," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1959 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "A History of Iota Phi Lambda Sorority." - ], - "shelfMark": [ - "Sc Ser.-M .H592" - ], - "createdString": [ - "1959" - ], - "contributorLiteral": [ - "Greene, Ethel K.", - "Sims, Sarah B." - ], - "dateStartYear": [ - 1959 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Ser.-M .H592" - }, - { - "type": "nypl:Bnumber", - "value": "10006018" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507238" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206010" - } - ], - "dateEndYear": [ - 9999 - ], - "holdings": [ - { - "format": [ - "PRINT" - ], - "location": [ - { - "code": "loc:scf", - "label": "Schomburg Center - Research & Reference" - } - ], - "uri": "h1142937", - "shelfMark": [ - "Sc Ser.-M .H592" - ] - } - ], - "updatedAt": 1636069378411, - "publicationStatement": [ - "Washington : The Sorority, 1959-" - ], - "identifier": [ - "urn:bnum:10006018", - "urn:undefined:NNSZ00507238", - "urn:undefined:(WaOLN)nyp0206010" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1959" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iota Phi Lambda." - ], - "titleDisplay": [ - "A History of Iota Phi Lambda Sorority." - ], - "uri": "b10006018", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Washington :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1929-1958/Ethel K. Greene.--1959-1969/Sarah B. Sims." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006018" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746595", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433061038323" - } - ], - "physicalLocation": [ - "Sc Ser.-M .H592" - ], - "enumerationChronology": [ - "v. 1, 2 (1928-19, 1959-69)" - ], - "identifier": [ - "urn:barcode:33433061038323" - ], - "idBarcode": [ - "33433061038323" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006034", - "_score": null, - "_source": { - "extent": [ - "79 p. : ill., maps ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa", - "Africa -- Portuguese", - "Cão, Diogo, active 15th century", - "Dias, Bartolomeu", - "Gama, Vasco da, 1469-1524", - "Portuguese", - "Portuguese -- India", - "Portuguese -- India -- History" - ], - "publisherLiteral": [ - "Basler Afrika Bibliographien," - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen" - ], - "shelfMark": [ - "Sc D 84-477" - ], - "creatorLiteral": [ - "Kalthammer, Wilhelm." - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "Beiträge zur Afrikakunde, 0171-1660; 5" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc D 84-477" - }, - { - "type": "nypl:Bnumber", - "value": "10006034" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507257" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206027" - } - ], - "updatedAt": 1636088600902, - "publicationStatement": [ - "Basel : Basler Afrika Bibliographien, 1978." - ], - "identifier": [ - "urn:bnum:10006034", - "urn:undefined:NNSZ00507257", - "urn:undefined:(WaOLN)nyp0206027" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa -- Portuguese.", - "Cão, Diogo, active 15th century.", - "Dias, Bartolomeu.", - "Gama, Vasco da, 1469-1524.", - "Portuguese -- India -- History." - ], - "titleDisplay": [ - "Die Portugiesenkreuze in Africa und Indien : eine umfassende Darstellung aller von den portugiesischen Entdeckern Diogo Cão, Bartolomeo Dias und Vasco da Gama errichteten Steinkreuze (Padrões), deren Geschichte und deren Nachbildungen / Wilhelm Kalthammer." - ], - "uri": "b10006034", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Basel :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006034" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900606", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc D 84-477" - ], - "identifierV2": [ - { - "value": "Sc D 84-477", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036649683" - } - ], - "physicalLocation": [ - "Sc D 84-477" - ], - "identifier": [ - "urn:barcode:33433036649683" - ], - "idBarcode": [ - "33433036649683" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc D 84-000477" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006043", - "_score": null, - "_source": { - "extent": [ - "205 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographies.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Africa, Sub-Saharan", - "Africa, Sub-Saharan -- Relations", - "Africa, Sub-Saharan -- Relations -- Arab countries", - "Arab countries", - "Arab countries -- Relations", - "Arab countries -- Relations -- Africa, Sub-Saharan" - ], - "publisherLiteral": [ - "Unesco," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." - ], - "shelfMark": [ - "Sc E 84-236" - ], - "createdString": [ - "1984" - ], - "seriesStatement": [ - "General history of Africa: studies and documents; 7" - ], - "contributorLiteral": [ - "Unesco." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc E 84-236" - }, - { - "type": "nypl:Bnumber", - "value": "10006043" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206036" - } - ], - "updatedAt": 1636103134727, - "publicationStatement": [ - "Paris : Unesco, 1984." - ], - "identifier": [ - "urn:bnum:10006043", - "urn:undefined:(WaOLN)nyp0206036" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Africa, Sub-Saharan -- Relations -- Arab countries.", - "Arab countries -- Relations -- Africa, Sub-Saharan." - ], - "titleDisplay": [ - "Historical and socio-cultural relations between Black Africa and the Arab world from 1935 to the present : report and papers of the symposium organized by Unesco in Paris from 25 to 27 July 1979." - ], - "uri": "b10006043", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Paris :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10006043" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900614", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc E 84-236" - ], - "identifierV2": [ - { - "value": "Sc E 84-236", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433036807315" - } - ], - "physicalLocation": [ - "Sc E 84-236" - ], - "identifier": [ - "urn:barcode:33433036807315" - ], - "idBarcode": [ - "33433036807315" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc E 84-000236" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006159", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- Civil rights", - "Civil rights", - "Civil rights -- United States", - "Violence", - "Violence -- United States" - ], - "publisherLiteral": [ - "American Foundation for Negro Affairs," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Law and disorder [microform] : a research position paper" - ], - "shelfMark": [ - "Sc Micro R-4202, no. 16" - ], - "creatorLiteral": [ - "American Foundation for Negro Affairs. Commission on Judiciary and Law. Subcommittee on National Goals." - ], - "createdString": [ - "1970" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro R-4202, no. 16" - }, - { - "type": "nypl:Bnumber", - "value": "10006159" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507384" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206150" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636111916018, - "publicationStatement": [ - "Philadelphia, Pa. : American Foundation for Negro Affairs, 1970-" - ], - "identifier": [ - "urn:bnum:10006159", - "urn:undefined:NNSZ00507384", - "urn:undefined:(WaOLN)nyp0206150" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "African Americans -- Civil rights.", - "Civil rights -- United States.", - "Violence -- United States." - ], - "titleDisplay": [ - "Law and disorder [microform] : a research position paper / [Commission on Judiciary and Law, Subcommittee on National Goals]." - ], - "uri": "b10006159", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Philadelphia, Pa. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 x 28 cm." - ] - }, - "sort": [ - "b10006159" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i24023455", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "shelfMark": [ - "Sc Micro R-4202" - ], - "identifierV2": [ - { - "value": "Sc Micro R-4202", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059035760" - } - ], - "physicalLocation": [ - "Sc Micro R-4202" - ], - "identifier": [ - "urn:barcode:33433059035760" - ], - "idBarcode": [ - "33433059035760" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro R-004202" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006344", - "_score": null, - "_source": { - "extent": [ - "11 p. ;" - ], - "note": [ - { - "noteType": "Reproduction", - "label": "Microfiche.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Black people", - "Black people -- Caribbean Area", - "Black people -- Caribbean Area -- Social conditions", - "Middle class", - "Middle class -- Caribbean Area" - ], - "publisherLiteral": [ - "s.n." - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1999" - ], - "createdYear": [ - 1900 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The making of a middle class" - ], - "shelfMark": [ - "Sc Micro F-10459" - ], - "creatorLiteral": [ - "Franks, W. Stanley." - ], - "createdString": [ - "1900" - ], - "dateStartYear": [ - 1900 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Sc Micro F-10459" - }, - { - "type": "nypl:Bnumber", - "value": "10006344" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507572" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206335" - } - ], - "dateEndYear": [ - 1999 - ], - "updatedAt": 1657974959186, - "publicationStatement": [ - "[S.l. : s.n., 19--]" - ], - "identifier": [ - "urn:bnum:10006344", - "urn:undefined:NNSZ00507572", - "urn:undefined:(WaOLN)nyp0206335" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1900" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Black people -- Caribbean Area -- Social conditions.", - "Middle class -- Caribbean Area." - ], - "titleDisplay": [ - "The making of a middle class [microform] / by W. S. Franks ; with a foreword by Lee Llewellyn Moore." - ], - "uri": "b10006344", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "16 cm." - ] - }, - "sort": [ - "b10006344" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12540203", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:26", - "label": "microfiche" - } - ], - "catalogItemType_packed": [ - "catalogItemType:26||microfiche" - ], - "holdingLocation": [ - { - "id": "loc:scff3", - "label": "Schomburg Center - Research & Reference - Desk" - } - ], - "holdingLocation_packed": [ - "loc:scff3||Schomburg Center - Research & Reference - Desk" - ], - "shelfMark": [ - "Sc Micro F-10459" - ], - "identifierV2": [ - { - "value": "Sc Micro F-10459", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058831748" - } - ], - "physicalLocation": [ - "Sc Micro F-10459" - ], - "identifier": [ - "urn:barcode:33433058831748" - ], - "idBarcode": [ - "33433058831748" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aSc Micro F-010459" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006540", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Vol. 2 issued without edition statement has imprint date 1972.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and indexes.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Germany", - "Germany -- History", - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945", - "World War, 1939-1945 -- Germany" - ], - "publisherLiteral": [ - "Selbstverlag," - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Was geschah nach 1945?" - ], - "shelfMark": [ - "JFK 84-184" - ], - "creatorLiteral": [ - "Roth, Heinz." - ], - "createdString": [ - "1970" - ], - "seriesStatement": [ - "Auf der Suche nach der Wahrheit / Heinz Roth ; Bd. 4-5", - "Roth, Heinz. Auf der Suche nach der Wahrheit ; \\Bd. 4-5." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184" - }, - { - "type": "nypl:Bnumber", - "value": "10006540" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507771" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206529" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636143161690, - "publicationStatement": [ - "Odenhausen/Lumda : Selbstverlag, [197-?-" - ], - "identifier": [ - "urn:bnum:10006540", - "urn:undefined:NNSZ00507771", - "urn:undefined:(WaOLN)nyp0206529" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Germany -- History -- Allied occupation, 1945-", - "World War, 1939-1945 -- Germany." - ], - "titleDisplay": [ - "Was geschah nach 1945? / Heinz Roth." - ], - "uri": "b10006540", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Odenhausen/Lumda :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Was geschah nach neunzehnhundertfünfundvierzig." - ], - "tableOfContents": [ - "T.1. Der Zusammenbruch -- T.2. Kriegsverbrecherprozesse u.a." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006540" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433003841073" - ], - "physicalLocation": [ - "JFK 84-184" - ], - "shelfMark_sort": "aJFK 84-184 v. 000001-2", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003927", - "shelfMark": [ - "JFK 84-184 v. 1-2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFK 84-184 v. 1-2" - }, - { - "type": "bf:Barcode", - "value": "33433003841073" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1-2" - ], - "idBarcode": [ - "33433003841073" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006622", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Caldas (Colombia : Department)", - "Caldas (Colombia : Department) -- History" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Biblioteca de Escritores Caldenses" - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1983 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Historia del Gran Caldas" - ], - "shelfMark": [ - "HDK 84-1693" - ], - "numItemVolumesParsed": [ - 1 - ], - "creatorLiteral": [ - "Ríos Tobón, Ricardo de los." - ], - "createdString": [ - "1983" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1983 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "HDK 84-1693" - }, - { - "type": "nypl:Bnumber", - "value": "10006622" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000779-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507853" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206611" - } - ], - "idOclc": [ - "NYPG005000779-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1676385946742, - "publicationStatement": [ - "Manizales, Colombia : Biblioteca de Escritores Caldenses, 1933-" - ], - "identifier": [ - "urn:bnum:10006622", - "urn:oclc:NYPG005000779-B", - "urn:undefined:NNSZ00507853", - "urn:undefined:(WaOLN)nyp0206611" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1983" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Caldas (Colombia : Department) -- History." - ], - "titleDisplay": [ - "Historia del Gran Caldas / Ricardo de los Ríos Tobón." - ], - "uri": "b10006622", - "numItems": [ - 1 - ], - "numAvailable": [ - 0 - ], - "placeOfPublication": [ - "Manizales, Colombia" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "v. 1. Origenes y colonización hasta 1850." - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10006622" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746647", - "status": [ - { - "id": "status:co", - "label": "Loaned" - } - ], - "status_packed": [ - "status:co||Loaned" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "HDK 84-1693 v. 1" - ], - "identifierV2": [ - { - "value": "HDK 84-1693 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433097665214" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "HDK 84-1693" - ], - "identifier": [ - "urn:barcode:33433097665214" - ], - "idBarcode": [ - "33433097665214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dueDate": [ - "2023-02-15" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aHDK 84-1693 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006645", - "_score": null, - "_source": { - "extent": [ - "a, 257 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Translation of: Algoritmy upravlen︠i︡a rabotami-manipul︠i︡atorami.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"JPRS 59717.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 245-252.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Photocopy.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Manipulators (Mechanism)", - "Robots, Industrial" - ], - "publisherLiteral": [ - "Joint Publications Research Service," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "1973" - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Robot-manipulator control algorithms" - ], - "shelfMark": [ - "JSF 83-552" - ], - "creatorLiteral": [ - "Ignatʹev, M. B. (Mikhail Borisovich)" - ], - "createdString": [ - "1984" - ], - "contributorLiteral": [ - "Kulakov, F. M. (Feliks Mikhaĭlovich)", - "Pokrovskiĭ, A. M." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 83-552" - }, - { - "type": "nypl:Bnumber", - "value": "10006645" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206634" - } - ], - "uniformTitle": [ - "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami. English" - ], - "dateEndYear": [ - 1973 - ], - "updatedAt": 1636073144930, - "publicationStatement": [ - "Arlington, Va. : Joint Publications Research Service, 1973." - ], - "identifier": [ - "urn:bnum:10006645", - "urn:undefined:(WaOLN)nyp0206634" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Manipulators (Mechanism)", - "Robots, Industrial." - ], - "titleDisplay": [ - "Robot-manipulator control algorithms / by M.B. Ignatʹyev, F.M. Kulakov, A.M. Pokrovskiy." - ], - "uri": "b10006645", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Arlington, Va. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Algoritmy upravleni︠i︠a rabotami-manipul︠i︠atorami." - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10006645" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433037693748" - ], - "physicalLocation": [ - "JSF 83-552" - ], - "shelfMark_sort": "aJSF 83-000552", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i12540383", - "shelfMark": [ - "JSF 83-552" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JSF 83-552" - }, - { - "type": "bf:Barcode", - "value": "33433037693748" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433037693748" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006687", - "_score": null, - "_source": { - "extent": [ - "v. : ill., ports, ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "publisherLiteral": [ - "Bókaútgáfan Skjaldborg," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1982 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-217" - ], - "creatorLiteral": [ - "Eiður Guðmundsson, 1888-1984." - ], - "createdString": [ - "1982" - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217" - }, - { - "type": "nypl:Bnumber", - "value": "10006687" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507920" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206676" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Akureyri : Bókaútgáfan Skjaldborg, 1982-" - ], - "identifier": [ - "urn:bnum:10006687", - "urn:undefined:NNSZ00507920", - "urn:undefined:(WaOLN)nyp0206676" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Skiđuhreppur (Iceland)", - "Öxnadalshreppur (Iceland)" - ], - "titleDisplay": [ - "Ritsafn / Eidur Gudmundsson Púfnav;ollum." - ], - "uri": "b10006687", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Akureyri :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "1. Mannfelliviun mikli -- 2. Búskaparsaga i Skriđuhreppi forna." - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10006687" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069567" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003946", - "shelfMark": [ - "JFL 84-217 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069567" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069567" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069559" - ], - "physicalLocation": [ - "JFL 84-217" - ], - "shelfMark_sort": "aJFL 84-217 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003945", - "shelfMark": [ - "JFL 84-217 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-217 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069559" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069559" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006688", - "_score": null, - "_source": { - "extent": [ - "v. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iceland", - "Iceland -- Economic conditions", - "Iceland -- History", - "Iceland -- Social conditions" - ], - "publisherLiteral": [ - "Mál og Menning," - ], - "language": [ - { - "id": "lang:ice", - "label": "Icelandic" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1981 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ritsafn" - ], - "shelfMark": [ - "JFL 84-216" - ], - "creatorLiteral": [ - "Sverrir Kristjánsson, 1908-" - ], - "createdString": [ - "1981" - ], - "dateStartYear": [ - 1981 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216" - }, - { - "type": "nypl:Bnumber", - "value": "10006688" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507921" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206677" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636127047675, - "publicationStatement": [ - "Reykjavík : Mál og Menning, 1981-" - ], - "identifier": [ - "urn:bnum:10006688", - "urn:undefined:NNSZ00507921", - "urn:undefined:(WaOLN)nyp0206677" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1981" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iceland -- Economic conditions.", - "Iceland -- History.", - "Iceland -- Social conditions." - ], - "titleDisplay": [ - "Ritsafn / Sverrir Kristjánsson." - ], - "uri": "b10006688", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Reykjavík :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10006688" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069542" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000002", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003948", - "shelfMark": [ - "JFL 84-216 v. 2" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 2" - }, - { - "type": "bf:Barcode", - "value": "33433004069542" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 2" - ], - "idBarcode": [ - "33433004069542" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433004069534" - ], - "physicalLocation": [ - "JFL 84-216" - ], - "shelfMark_sort": "aJFL 84-216 v. 000001", - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10003947", - "shelfMark": [ - "JFL 84-216 v. 1" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFL 84-216 v. 1" - }, - { - "type": "bf:Barcode", - "value": "33433004069534" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "enumerationChronology": [ - "v. 1" - ], - "idBarcode": [ - "33433004069534" - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006699", - "_score": null, - "_source": { - "extent": [ - "483 p. : ill., ports ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 476-483.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dominican literature", - "Dominican literature -- Manuals, handbooks, etc", - "Latin American literature", - "Latin American literature -- Study and teaching", - "Latin American literature -- Study and teaching -- Handbooks, manuals, etc" - ], - "publisherLiteral": [ - "s.n.]," - ], - "language": [ - { - "id": "lang:spa", - "label": "Spanish" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media" - ], - "shelfMark": [ - "JFF 84-820" - ], - "createdString": [ - "1984" - ], - "contributorLiteral": [ - "Gómez de Michel, Fiume." - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 84-820" - }, - { - "type": "nypl:Bnumber", - "value": "10006699" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507932" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206688" - } - ], - "updatedAt": 1636114816670, - "publicationStatement": [ - "[Santo Domingo, R. D. : s.n.], 1984" - ], - "identifier": [ - "urn:bnum:10006699", - "urn:undefined:NNSZ00507932", - "urn:undefined:(WaOLN)nyp0206688" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dominican literature -- Manuals, handbooks, etc.", - "Latin American literature -- Study and teaching -- Handbooks, manuals, etc." - ], - "titleDisplay": [ - "Manual de literatura dominicana y americana : para el 4to teórico del bachillerato tradicional de la educación media / [compilación] Fiumé Gómez de Michel." - ], - "uri": "b10006699", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Santo Domingo, R. D. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "27 cm." - ] - }, - "sort": [ - "b10006699" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784848", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 84-820" - ], - "identifierV2": [ - { - "value": "JFF 84-820", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050352214" - } - ], - "physicalLocation": [ - "JFF 84-820" - ], - "identifier": [ - "urn:barcode:33433050352214" - ], - "idBarcode": [ - "33433050352214" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJFF 84-000820" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006705", - "_score": null, - "_source": { - "extent": [ - "v. : ill. (some col.);" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vernacular architecture", - "Vernacular architecture -- Greece", - "Architecture, Domestic", - "Architecture, Domestic -- Greece" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ekdot. Oikos \"Melissa,\"" - ], - "language": [ - { - "id": "lang:gre", - "label": "Greek, Modern (1453- )" - } - ], - "numItemsTotal": [ - 7 - ], - "createdYear": [ - 1982 - ], - "dateEndString": [ - "9999" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Hellēnikē paradosiakē architektonikē" - ], - "shelfMark": [ - "3-MQW+ 84-2551" - ], - "numItemVolumesParsed": [ - 7 - ], - "createdString": [ - "1982" - ], - "idLccn": [ - "83177376" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Philippidēs, Dēmētrēs." - ], - "dateStartYear": [ - 1982 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "3-MQW+ 84-2551" - }, - { - "type": "nypl:Bnumber", - "value": "10006705" - }, - { - "type": "bf:Lccn", - "value": "83177376" - }, - { - "type": "nypl:Oclc", - "value": "NYPG005000864-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206694" - } - ], - "idOclc": [ - "NYPG005000864-B" - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1675271456381, - "publicationStatement": [ - "Athēna : Ekdot. Oikos \"Melissa,\" c1982-" - ], - "identifier": [ - "urn:bnum:10006705", - "urn:lccn:83177376", - "urn:oclc:NYPG005000864-B", - "urn:undefined:(WaOLN)nyp0206694" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1982" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vernacular architecture -- Greece.", - "Architecture, Domestic -- Greece." - ], - "titleDisplay": [ - "Hellēnikē paradosiakē architektonikē / symvoulos kai syntonistēs tēs ekdosēs, Dēmētrēs Philippidēs ; [phōtographies, V. Voutsas]." - ], - "uri": "b10006705", - "lccClassification": [ - "NA1091 .H44 1982" - ], - "numItems": [ - 7 - ], - "numAvailable": [ - 7 - ], - "placeOfPublication": [ - "Athēna" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "t. 1. Anatoliko Aigaio. Sporades. Heptanēsa -- t. 2. Kyklades -- t. 3. Dōdekanēsa-Krētē -- t. 4. Peloponnēsos I -- t. 5 Peloponnesos II, Sterea Hellada -- t. 6. Thessalia-Ēpeiros -- t. 7. Makedonia I." - ], - "dimensions": [ - "31 cm." - ] - }, - "sort": [ - "b10006705" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 7, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 6 - }, - "_score": null, - "_source": { - "uri": "i14746675", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 7" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 7", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160679" - } - ], - "enumerationChronology": [ - "v. 7" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160679" - ], - "idBarcode": [ - "33433105160679" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 7, - "lte": 7 - } - ], - "enumerationChronology_sort": [ - " 7-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007" - }, - "sort": [ - " 7-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 5 - }, - "_score": null, - "_source": { - "uri": "i14746674", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 6" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 6", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160661" - } - ], - "enumerationChronology": [ - "v. 6" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160661" - ], - "idBarcode": [ - "33433105160661" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 6, - "lte": 6 - } - ], - "enumerationChronology_sort": [ - " 6-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006" - }, - "sort": [ - " 6-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 4 - }, - "_score": null, - "_source": { - "uri": "i14746673", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 5" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 5", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160653" - } - ], - "enumerationChronology": [ - "v. 5" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160653" - ], - "idBarcode": [ - "33433105160653" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 5, - "lte": 5 - } - ], - "enumerationChronology_sort": [ - " 5-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005" - }, - "sort": [ - " 5-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 3 - }, - "_score": null, - "_source": { - "uri": "i14746672", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 4" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 4", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160646" - } - ], - "enumerationChronology": [ - "v. 4" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160646" - ], - "idBarcode": [ - "33433105160646" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 4, - "lte": 4 - } - ], - "enumerationChronology_sort": [ - " 4-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000004" - }, - "sort": [ - " 4-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i14746671", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 3" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 3", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160638" - } - ], - "enumerationChronology": [ - "v. 3" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160638" - ], - "idBarcode": [ - "33433105160638" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 3, - "lte": 3 - } - ], - "enumerationChronology_sort": [ - " 3-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000003" - }, - "sort": [ - " 3-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i14746670", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 2" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160620" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160620" - ], - "idBarcode": [ - "33433105160620" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746669", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mab92", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" - } - ], - "holdingLocation_packed": [ - "loc:mab92||Schwarzman Building M2 - Art and Architecture Room 300" - ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 1" - ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433105160612" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "identifier": [ - "urn:barcode:33433105160612" - ], - "idBarcode": [ - "33433105160612" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006715", - "_score": null, - "_source": { - "extent": [ - "v. : ill. (some ed.);" - ], - "note": [ - { - "noteType": "Note", - "label": "Title on spine: 2222.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Austria", - "Austria -- Relations", - "Austria -- Relations -- United States", - "United States", - "United States -- Relations", - "United States -- Relations -- Austria" - ], - "publisherLiteral": [ - "The author," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "dateEndString": [ - "9999" - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Quadruple 2" - ], - "shelfMark": [ - "ICM (Austria) 85-584" - ], - "creatorLiteral": [ - "Humes, John P." - ], - "createdString": [ - "1970" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "ICM (Austria) 85-584" - }, - { - "type": "nypl:Bnumber", - "value": "10006715" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507948" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0206704" - } - ], - "dateEndYear": [ - 9999 - ], - "updatedAt": 1636124417162, - "publicationStatement": [ - "[S.l. : The author, 197-]" - ], - "identifier": [ - "urn:bnum:10006715", - "urn:undefined:NNSZ00507948", - "urn:undefined:(WaOLN)nyp0206704" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Austria -- Relations -- United States.", - "United States -- Relations -- Austria." - ], - "titleDisplay": [ - "Quadruple 2 / by John P. Humes." - ], - "uri": "b10006715", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l. :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "2222.", - "Quadruple two." - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - "b10006715" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i14746681", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "shelfMark": [ - "ICM (Austria) 85-584 v. 2" - ], - "identifierV2": [ - { - "value": "ICM (Austria) 85-584 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433090390752" - } - ], - "physicalLocation": [ - "ICM (Austria) 85-584" - ], - "enumerationChronology": [ - "v. 2" - ], - "identifier": [ - "urn:barcode:33433090390752" - ], - "idBarcode": [ - "33433090390752" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aICM (Austria) 85-584 v. 000002" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10006720", - "_score": null, - "_source": { - "extent": [ - "[24] p. : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Issued in portfolio.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Delius, Frederick, 1862-1934" - ], - "publisherLiteral": [ - "The Trust," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1984 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Delius, 1862-1934" - ], - "shelfMark": [ - "JMF 84-424" - ], - "creatorLiteral": [ - "Delius Trust." - ], - "createdString": [ - "1984" - ], - "dateStartYear": [ - 1984 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JMF 84-424" - }, - { - "type": "nypl:Bnumber", - "value": "10006720" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00507953" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0000020" - } - ], - "updatedAt": 1636086826287, - "publicationStatement": [ - "London : The Trust, [1984]" - ], - "identifier": [ - "urn:bnum:10006720", - "urn:undefined:NNSZ00507953", - "urn:undefined:(WaOLN)nyp0000020" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1984" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Delius, Frederick, 1862-1934." - ], - "titleDisplay": [ - "Delius, 1862-1934 / compiled by the Delius Trust to mark the 50th anniversary of his death." - ], - "uri": "b10006720", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "tableOfContents": [ - "A short biography -- A select bibliography -- A select discography -- List of works -- The collected edition. -- Calendar of performances and events, 1984." - ], - "dimensions": [ - "30 cm." - ] - }, - "sort": [ - "b10006720" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433032723599" - ], - "shelfMark_sort": "aJMF 84-000424", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942253", - "shelfMark": [ - "JMF 84-424" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433032723599" - } - ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" - ], - "idBarcode": [ - "33433032723599" - ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-f9cdec0fa8bba6b8d45d9bf5baa2fe97.json b/test/fixtures/query-f9cdec0fa8bba6b8d45d9bf5baa2fe97.json deleted file mode 100644 index 5deab891..00000000 --- a/test/fixtures/query-f9cdec0fa8bba6b8d45d9bf5baa2fe97.json +++ /dev/null @@ -1,918 +0,0 @@ -{ - "took": 40, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1, - "max_score": 14.907039, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b22144813", - "_score": 14.907039, - "_source": { - "extent": [ - "1234, [1] pages, x leaves : illustrations ;", - "1234, [1] p., x leaves : ill. ;", - "Third description instance : More 3rd instance ;" - ], - "partOf": [ - "In: -- 773 0b" - ], - "nyplSource": [ - "sierra-nypl" - ], - "serialPublicationDates": [ - "Publication Date (unformated) -- 362 1b" - ], - "publisherLiteral": [ - "Specious Publ. [prev.pub.-- 260.2b]", - "CopyCat pub. co. -- 260 bb" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 201 - ], - "type": [ - "nypl:Item" - ], - "parallelTitle": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "shelfMark": [ - "Q-TAG (852 8b q tag. Staff call in bib.)" - ], - "idLccn": [ - "LCCN -- 010", - "9790001138673", - "ISMN", - "Danacode", - "UPC", - "EAN" - ], - "idIssn": [ - "ISSN -- 022" - ], - "seriesStatement": [ - "440 Series ; v. number -- 440 b0", - "490 Series ; v. number -- 490 0b", - "Author, of series. CMA Test Records. -- 800 1b", - "CMA (Cat). CMA Test Records -- 810 2b " - ], - "dateStartYear": [ - 201 - ], - "parallelCreatorLiteral": [ - "‏גלוגר,מרים פ." - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "Q-TAG (852 8b q tag. Staff call in bib.)" - }, - { - "type": "nypl:Bnumber", - "value": "22144813" - }, - { - "type": "bf:Isbn", - "value": "0123456789" - }, - { - "type": "bf:Isbn", - "value": "9780123456786 (qualifier)" - }, - { - "type": "bf:Isbn", - "value": "ISBN -- 020" - }, - { - "type": "bf:Issn", - "value": "ISSN -- 022" - }, - { - "type": "bf:Lccn", - "value": "LCCN -- 010" - }, - { - "type": "bf:Lccn", - "value": "9790001138673" - }, - { - "type": "bf:Lccn", - "value": "ISMN" - }, - { - "type": "bf:Lccn", - "value": "Danacode" - }, - { - "type": "bf:Lccn", - "value": "UPC" - }, - { - "type": "bf:Lccn", - "value": "EAN" - }, - { - "type": "bf:Identifier", - "value": "Report number. -- 027" - }, - { - "type": "bf:Identifier", - "value": "Publisher no. -- 028 02 " - }, - { - "type": "bf:Identifier", - "value": "Standard number (old RLIN, etc.) -- 035" - }, - { - "type": "bf:Identifier", - "value": "Sudoc no. -- 086" - }, - { - "type": "bf:Identifier", - "value": "GPO Item number. -- 074" - }, - { - "type": "bf:Isbn", - "identifierStatus": "canceled/invalid", - "value": "ISBN -- 020 $z" - } - ], - "formerTitle": [ - "Former title -- 247 00" - ], - "updatedAt": 1659464869747, - "publicationStatement": [ - "[s.l.] : Specious Publ. [prev.pub.-- 260.2b], 2001. ", - "Long Island CIty, N.Y. : CopyCat pub. co. -- 260 bb, 2011.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "identifier": [ - "urn:bnum:22144813", - "urn:isbn:0123456789", - "urn:isbn:9780123456786 (qualifier)", - "urn:isbn:ISBN -- 020", - "urn:issn:ISSN -- 022", - "urn:lccn:LCCN -- 010", - "urn:lccn:9790001138673", - "urn:lccn:ISMN", - "urn:lccn:Danacode", - "urn:lccn:UPC", - "urn:lccn:EAN", - "urn:undefined:Report number. -- 027", - "urn:undefined:Publisher no. -- 028 02 ", - "urn:undefined:Standard number (old RLIN, etc.) -- 035", - "urn:undefined:Sudoc no. -- 086", - "urn:undefined:GPO Item number. -- 074", - "b22144813#1.0051", - "urn:isbn:ISBN -- 020 $z" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Starving artist -- 600 00.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term -- 653" - ], - "numAvailable": [ - 1 - ], - "titleAlt": [ - "Abrev. title -- 210 ", - "Key title -- 222 ", - "T tagged 240 Uniform title -- t240", - "Portion of title \\\\DO NOT DISPLAY\\\\ -- 246 10", - "Parallel title \\\\DO NOT DISPLAY\\\\ -- 246 11", - "Portion of title 246 30", - "Parallel title 246 31", - "Distinctive title 246 12", - "Other title 246 13", - "Cover title 246 14", - "Cover title 246 04", - "Added title page title 246 15", - "Running title 246 17", - "Caption title 246 16", - "Spine title 246 18", - "No type of title specified 246 3 blank", - "246 1 blank", - "Zaglavie Russiĭi", - "Added title -- 740 0b" - ], - "tableOfContents": [ - "Complete table of contents. -- 505 0b", - "1. Incomplete table of contents. -- First instance.-- 505 1b", - "2. Incomplete table of contents -- Second instance. 505 1b", - "3. Incomplete table of contents -- Third instance entered out of order. 505 1b", - "Title subfield $t and author subfield $r and miscellaneous subfield $g in enahnced contents field 505 10." - ], - "note": [ - { - "noteType": "Note", - "label": "Ordinary note. -- 500", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "²³¹", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "¯¯¯\\⠀⠀⠀⠀⠀⠀⠀⠀/¯¯¯", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "⠀⠀⠀\\___( ツ )___/", - "type": "bf:Note" - }, - { - "noteType": "With", - "label": "Bound with note. -- 501", - "type": "bf:Note" - }, - { - "noteType": "Thesis", - "label": "Thesis -- (degree) note. -- 502", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. [1235]). -- 504", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access -- 506 blank,any", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Restricted Access -- 506 1,any", - "type": "bf:Note" - }, - { - "noteType": "Scale", - "label": "Scale (graphic) -- 507", - "type": "bf:Note" - }, - { - "noteType": "Credits", - "label": "Credits (Creation/production credits note) -- 508", - "type": "bf:Note" - }, - { - "noteType": "Performer", - "label": "Cast --511 1b", - "type": "bf:Note" - }, - { - "noteType": "Type of Report", - "label": "Type of Report. -- 513", - "type": "bf:Note" - }, - { - "noteType": "Data Quality", - "label": "Data quality -- 514", - "type": "bf:Note" - }, - { - "noteType": "Numbering", - "label": "Completely irregular. -- 515", - "type": "bf:Note" - }, - { - "noteType": "File Type", - "label": "File type. -- 516", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Event. -- 518", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience: Rated for Catalogers and Metadata Junkies only -- 521", - "type": "bf:Note" - }, - { - "noteType": "Audience", - "label": "Audience (2): Test of 2nd 521 field.", - "type": "bf:Note" - }, - { - "noteType": "Coverage", - "label": "Coverage -- 522", - "type": "bf:Note" - }, - { - "noteType": "Cite As", - "label": "Cite as: The Mega-MARC test record. -- 524", - "type": "bf:Note" - }, - { - "noteType": "Supplement", - "label": "Supplement -- 525", - "type": "bf:Note" - }, - { - "noteType": "Study Program", - "label": "Study program -- 526 8b ", - "type": "bf:Note" - }, - { - "noteType": "Additional Formats", - "label": "Other test records available. -- 530", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", - "type": "bf:Note" - }, - { - "noteType": "Original Location", - "label": "Original location in SASB -- 535", - "type": "bf:Note" - }, - { - "noteType": "Funding", - "label": "Funding -- 536", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "System Details -- 538", - "type": "bf:Note" - }, - { - "noteType": "Terms of Use", - "label": "Use as test record -- 540", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source display-- 5411b", - "type": "bf:Note" - }, - { - "noteType": "Source", - "label": "Source \\\\DO NOT DISPLAY\\\\ -- 541 bb $a", - "type": "bf:Note" - }, - { - "noteType": "Location of Other Archival Materials", - "label": "Location of Other Archival Materials -- 544", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 545", - "type": "bf:Note" - }, - { - "noteType": "Biography", - "label": "Biography -- 5451 Administrative history", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In English and non-roman scripts. -- 546", - "type": "bf:Note" - }, - { - "noteType": "Former Title", - "label": "Former title (complexity note) -- 547", - "type": "bf:Note" - }, - { - "noteType": "Issued By", - "label": "Issued by CCO -- 550", - "type": "bf:Note" - }, - { - "noteType": "Indexes/Finding Aids", - "label": "Indexes -- 555 bb", - "type": "bf:Note" - }, - { - "noteType": "Documentation", - "label": "Documentation (information about, note) -- 556", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance display --5611b", - "type": "bf:Note" - }, - { - "noteType": "Provenance", - "label": "Provenance \\\\DO NOT DISPLAY\\\\ -- 561 bb", - "type": "bf:Note" - }, - { - "noteType": "Copy/Version", - "label": "Copy/Version (identification note) -- 562", - "type": "bf:Note" - }, - { - "noteType": "Binding", - "label": "Binding -- 563", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Complemented by Linking entry: Bogus title -- 580", - "type": "bf:Note" - }, - { - "noteType": "Linking Entry", - "label": "Linking Entry (complexity note) -- 580", - "type": "bf:Note" - }, - { - "noteType": "Publications", - "label": "Publications (about described material note) -- 581", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action display --583 1b", - "type": "bf:Note" - }, - { - "noteType": "Processing Action", - "label": "Processing Action \\\\DO NOT DISPLAY\\\\ -- 583 bb", - "type": "bf:Note" - }, - { - "noteType": "Exhibitions", - "label": "Exhibitions -- 585", - "type": "bf:Note" - }, - { - "noteType": "Awards", - "label": "Awards -- 586", - "type": "bf:Note" - }, - { - "noteType": "Source of Description", - "label": "Latest issue consulted: 1900/1901. -- 588 1b", - "type": "bf:Note" - } - ], - "subjectLiteral_exploded": [ - "Starving artist", - "Starving artist -- 600 00", - "Artist, Starving, 1900-1999", - "Artist, Starving, 1900-1999 -- Autobiography.", - "Artist, Starving, 1900-1999 -- Autobiography. -- 600 10 with $d $v", - "testing 4 testing a testing b testing c testing d testing e testing g", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Corporate body subject.", - "Corporate body subject. -- 610 20", - "Secret Society of Catalogers", - "Secret Society of Catalogers -- Periodicals.", - "Secret Society of Catalogers -- Periodicals. -- 610 20 $v", - "testing x as first subfield", - "testing x as first subfield -- testing v as second subfield.", - "testing x as first subfield -- testing v as second subfield. -- 610 10 $x$v only", - "Conference subject entry.", - "Conference subject entry. -- 611 20", - "Stonecutters' Annual Picnic 1995 : Springfield)", - "Stonecutters' Annual Picnic 1995 : Springfield) -- 611 20 $n, $d, $c", - "testing 4 testing a testing c testing d testing e testing g", - "testing 4 testing a testing c testing d testing e testing g -- testing v", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing c testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Uniform title", - "Life is a common square.", - "Life is a common square. -- Criticism.", - "Life is a common square. -- Criticism. -- 630 00 $l, $x", - "testing 4 testing a testing d testing e testing g", - "testing 4 testing a testing d testing e testing g -- testing v", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing d testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Textile industry testing datetesting", - "Textile industry testing datetesting -- 650 b0 $z, $x", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India", - "Textile industry testing datetesting -- 650 b0 $z, $x -- India -- History", - "testing 4 testing a testing b testing c testing d testing e", - "testing 4 testing a testing b testing c testing d testing e -- testing v", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y", - "testing 4 testing a testing b testing c testing d testing e -- testing v -- testing x -- testing y -- testing z", - "New York (N.Y.)", - "New York (N.Y.) -- 21st century", - "New York (N.Y.) -- 21st century -- Diaries.", - "New York (N.Y.) -- 21st century -- Diaries. -- 651 b0 $y, $x", - "Undiscovered country.", - "Undiscovered country. -- 651 b0", - "testing 4 testing a testing e testing g", - "testing 4 testing a testing e testing g -- testing v", - "testing 4 testing a testing e testing g -- testing v -- testing x", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y", - "testing 4 testing a testing e testing g -- testing v -- testing x -- testing y -- testing z", - "Indexed term", - "Indexed term -- 653" - ], - "description": [ - "This record was originally created as a test record in CATNYP. It was greatly expanded in ILS-STAFF to test the public display of various MARC fields. -- 520 (first)", - "Use this record to test CATALOG, OPAC, ENCORE, and BIBLIOCOMMONS display of MARC fields -- 520 (second)" - ], - "dateEndString": [ - "2011" - ], - "title": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Maintenance test record-- 245 $b" - ], - "creatorLiteral": [ - "Gloger, Miriam.", - "BookOps. Cataloging. --110 2b ab.", - "Congress (13th : 2013 : LIC, Queens) -- 111 2b (ndc)" - ], - "createdString": [ - "201" - ], - "numElectronicResources": [ - 4 - ], - "contributorLiteral": [ - "Cramer, Richard, 1948-.", - "Cramer, Richard, 1948-", - "Bayer, Jeffrey.", - "Bayer, Jeffrey", - "New York Public Library Database Management Group. -- 710 2b", - "Conference added author. 711 2b", - "Added entry (uncontrolled name) -- 7201", - "Cramer, Richard, 1948- fmo", - "Virtual collection -- 791 2b" - ], - "donor": [ - "Donor / Sponsor -- 799 bb" - ], - "uniformTitle": [ - "T tagged 240 Uniform title -- t240", - "Added title -- 730 0b", - "CMA Test Records -- 830 b0" - ], - "dateEndYear": [ - 2011 - ], - "parallelTitleAlt": [ - "", - "‏зглавие руссий" - ], - "idIsbn": [ - "0123456789", - "9780123456786 (qualifier)", - "ISBN -- 020" - ], - "genreForm": [ - "Genre heading.", - "Blank pages and looks – Someplace – 1990.", - "testing a – testing b – testing c – testing v – testing x – testing y – testing z" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "201" - ], - "titleDisplay": [ - "Life is a strange circle (updated 20180627) --245 10 $a, Test record --$k current April 19, 2013 --$f, Testing period --$g [Virtual-- 245 $h] (245-- $n) Titles, includes RDA specific fields -- 245 $p : Maintenance test record-- 245 $b, Version--$s / CMA division -- 245 $c." - ], - "uri": "b22144813", - "numItems": [ - 2 - ], - "parallelTitleDisplay": [ - "‏כותר שאינו באותיות לטינית = зглавие руссий." - ], - "placeOfPublication": [ - "[s.l.]", - "Long Island CIty, N.Y.", - "Production -- 264 b0 (RDA) ", - "Publisher -- 264 b1 (RDA)", - "Distributor -- 264 b2 (RDA)", - "Manufacturer -- 264 b3 (RDA)", - "Copyright Date -- 264 b4 (RDA)", - "Earlier Publisher -- 264 21 (RDA)", - "Earlier Distributor -- 264 22 (RDA)", - "Earlier Manufacturer -- 264 23 (RDA)", - "Earlier Copyright Date -- 264 24 (RDA)", - "Latest Publisher -- 264 31 (RDA)", - "Latest Distributor -- 264 32 (RDA)", - "Latest Manufacturer -- 264 33 (RDA)", - "Latest Copyright Date -- 264 34 (RDA)" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "supplementaryContent": [ - { - "label": "Contents", - "url": "http://www.ilibri.casalini.it/toc/07260245.pdf" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-42-supplementary.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-4b-supplementary.com/" - } - ], - "idIsbn_clean": [ - "0123456789", - "9780123456786", - "020" - ], - "dimensions": [ - "26 cm +", - "26 cm. +", - "More 3rd instance -- 300 (3rd instance)" - ] - }, - "inner_hits": { - "electronicResources": { - "hits": { - "total": 1, - "max_score": 1, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": 1, - "_source": { - "uri": "i22144813-e", - "electronicLocator": [ - { - "url": "http://blogs.nypl.org/rcramer/", - "label": "856 40" - }, - { - "url": "http://yizkor.nypl.org/index.php?id=2936", - "label": "Yizkor Book (NYPL resource) 856 41" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-40-fulltext.com/" - }, - { - "url": "http://www.ThereIsNoLabelSubfieldInThis856-41-fulltext.com/" - } - ], - "shelfMark_sort": "bi22144813-e" - } - } - ] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i37857771", - "status": [ - { - "id": "status:k", - "label": "Check with staff" - } - ], - "status_packed": [ - "status:k||Check with staff" - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "holdingLocation": [ - { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" - } - ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "3333333333" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "v.1" - ], - "identifier": [ - "urn:barcode:3333333333" - ], - "idBarcode": [ - "3333333333" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i37857772", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], - "owner_packed": [ - "orgs:1103||Dorot Jewish Division" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" - ], - "holdingLocation": [ - { - "id": "loc:rcmf2", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" - ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "44455533322211" - } - ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], - "enumerationChronology": [ - "nothing" - ], - "identifier": [ - "urn:barcode:44455533322211" - ], - "idBarcode": [ - "44455533322211" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/query-fc436ffcdd88db79315260f3cc3b1212.json b/test/fixtures/query-fc436ffcdd88db79315260f3cc3b1212.json new file mode 100644 index 00000000..f23002a3 --- /dev/null +++ b/test/fixtures/query-fc436ffcdd88db79315260f3cc3b1212.json @@ -0,0 +1,28083 @@ +{ + "body": { + "took": 604, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 20014165, + "max_score": null, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000103", + "_score": null, + "_source": { + "extent": [ + "11, 602 p.: port.;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khalīfah, Muḥammad al-ʻĪd, 1904-1979." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "75960366" + ], + "seriesStatement": [ + "Manshūrāt Wizārat al-Tarbiyah al-Waṭanīyah bi-al-Jazāʼir; 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" + }, + { + "type": "nypl:Bnumber", + "value": "10000103" + }, + { + "type": "bf:Lccn", + "value": "75960366" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000051-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100051" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200102" + } + ], + "idOclc": [ + "NYPG001000051-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[al-Jazāʼir]: al-Sharikah al-Waṭanīyah lil-Nashr wa-al-Tawzīʻ, 1967." + ], + "identifier": [ + "urn:bnum:10000103", + "urn:lccn:75960366", + "urn:oclc:NYPG001000051-B", + "urn:undefined:NNSZ00100051", + "urn:undefined:(WaOLN)nyp0200102" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." + ], + "uri": "b10000103", + "lccClassification": [ + "PJ7842.H2937 A17 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Jazāʼir]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000103" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000042", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-5137" + ], + "identifierV2": [ + { + "value": "*OFA 82-5137", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000671" + } + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000671" + ], + "idBarcode": [ + "33433002000671" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-005137" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000104", + "_score": null, + "_source": { + "extent": [ + "xiv, 211 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Ceṉṉai, mayilai Vivēkānantar Kallūri Śrī Rājāji Caivacittānta aṟakkaṭṭaḷaiyiṉ cārpil nikaḻttiyavai.\"", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Śaivism" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Caivacittāntac coṟpoḻivukaḷ." + ], + "shelfMark": [ + "*OLB 82-5150" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Somasundaram Chettiar, Kayappakkah, 1897-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73902751" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Jagannatacharya, C." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5150" + }, + { + "type": "nypl:Bnumber", + "value": "10000104" + }, + { + "type": "bf:Lccn", + "value": "73902751" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000052-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100052" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200103" + } + ], + "idOclc": [ + "NYPG001000052-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Ceṉṉai] 1972." + ], + "identifier": [ + "urn:bnum:10000104", + "urn:lccn:73902751", + "urn:oclc:NYPG001000052-B", + "urn:undefined:NNSZ00100052", + "urn:undefined:(WaOLN)nyp0200103" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Śaivism." + ], + "titleDisplay": [ + "Caivacittāntac coṟpoḻivukaḷ. Āciriyar Kayappākkam Cōmacuntaram Ceṭṭiyār. Tokuttavar C. Jakannātācāryar." + ], + "uri": "b10000104", + "lccClassification": [ + "BL1245.S5 S64" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Ceṉṉai]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000104" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000043", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5150" + ], + "identifierV2": [ + { + "value": "*OLB 82-5150", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838949" + } + ], + "physicalLocation": [ + "*OLB 82-5150" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838949" + ], + "idBarcode": [ + "33433001838949" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005150" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000105", + "_score": null, + "_source": { + "extent": [ + "60 p. illus." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Murugan (Hindu deity)", + "Murugan (Hindu deity) -- Poetry" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "innūlkaḷ kiṭaikkumiṭam Liṭṭil Pḷavar Kampeṉi" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nakkīrar aruḷiya Tirumurukāṟṟuppaṭai; teḷivurai, viḷakkavuraikaḷuṭaṉ." + ], + "shelfMark": [ + "*OLB 82-5148" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nakkīrar." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73902452" + ], + "seriesStatement": [ + "Murukaṉ aruḷ veḷiyīṭu, 3" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Kachapesvaran, S. R., 1909-" + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5148" + }, + { + "type": "nypl:Bnumber", + "value": "10000105" + }, + { + "type": "bf:Lccn", + "value": "73902452" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000053-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100053" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200104" + } + ], + "idOclc": [ + "NYPG001000053-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Ceṉṉai]; innūlkaḷ kiṭaikkumiṭam Liṭṭil Pḷavar Kampeṉi, 1972." + ], + "identifier": [ + "urn:bnum:10000105", + "urn:lccn:73902452", + "urn:oclc:NYPG001000053-B", + "urn:undefined:NNSZ00100053", + "urn:undefined:(WaOLN)nyp0200104" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Murugan (Hindu deity) -- Poetry." + ], + "titleDisplay": [ + "Nakkīrar aruḷiya Tirumurukāṟṟuppaṭai; teḷivurai, viḷakkavuraikaḷuṭaṉ. Uraiyāciriyar Ca. Rā. Kaccapēcuvaraṉ." + ], + "uri": "b10000105", + "lccClassification": [ + "PL4758.9.N28 T54" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Ceṉṉai];" + ], + "titleAlt": [ + "Tirumurukāṟṟuppaṭai." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000105" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000044", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5148" + ], + "identifierV2": [ + { + "value": "*OLB 82-5148", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838964" + } + ], + "physicalLocation": [ + "*OLB 82-5148" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838964" + ], + "idBarcode": [ + "33433001838964" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005148" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000106", + "_score": null, + "_source": { + "extent": [ + "78 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tai Nūlakam ; viṟpaṉai urimai, Kavitā Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nallakati : kuṟunāval" + ], + "shelfMark": [ + "*OLB 82-5149" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Shanmugam, A. P., 1929-" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76903205" + ], + "seriesStatement": [ + "Tai Nūlaka veḷiyīṭu ; 4" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5149" + }, + { + "type": "nypl:Bnumber", + "value": "10000106" + }, + { + "type": "bf:Lccn", + "value": "76903205" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000054-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100054" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200105" + } + ], + "idOclc": [ + "NYPG001000054-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Nācciyār Kōvil, Tañcai Māvaṭṭam : Tai Nūlakam ; Ceṉṉai : viṟpaṉai urimai, Kavitā Patippakam, 1975." + ], + "identifier": [ + "urn:bnum:10000106", + "urn:lccn:76903205", + "urn:oclc:NYPG001000054-B", + "urn:undefined:NNSZ00100054", + "urn:undefined:(WaOLN)nyp0200105" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Nallakati : kuṟunāval / Ē. Pi. Caṇmukam." + ], + "uri": "b10000106", + "lccClassification": [ + "PL4758.9.S46 N3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Nācciyār Kōvil, Tañcai Māvaṭṭam : Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000106" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000045", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5149" + ], + "identifierV2": [ + { + "value": "*OLB 82-5149", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838956" + } + ], + "physicalLocation": [ + "*OLB 82-5149" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838956" + ], + "idBarcode": [ + "33433001838956" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005149" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000107", + "_score": null, + "_source": { + "extent": [ + "X, 271 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"1958 il Em. Liṭ. Āyvukkut...innūlai...āyntu Ceṉṉaip Palkalaikkaḻakattil 1961 il Āṅkilattil eṉ āyvukkaṭṭuraiyaik koṭuttēṉ. Ataṉait taḻuvi eḻutappeṟṟatē it Tamiḻ nūl.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Paripāṭal" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maṇivācakam Nūlakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Paripāṭal tiṟaṉ." + ], + "shelfMark": [ + "*OLB 82-5147" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cāraṅkapāṇi, Irā. (Irācakōpāl), 1925-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "72901252" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5147" + }, + { + "type": "nypl:Bnumber", + "value": "10000107" + }, + { + "type": "bf:Lccn", + "value": "72901252" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000055-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100055" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200106" + } + ], + "idOclc": [ + "NYPG001000055-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Citamparam, Maṇivācakam Nūlakam [1972]" + ], + "identifier": [ + "urn:bnum:10000107", + "urn:lccn:72901252", + "urn:oclc:NYPG001000055-B", + "urn:undefined:NNSZ00100055", + "urn:undefined:(WaOLN)nyp0200106" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Paripāṭal." + ], + "titleDisplay": [ + "Paripāṭal tiṟaṉ. [Eḻutiyavar] Irā. Cāraṅkapāṇi." + ], + "uri": "b10000107", + "lccClassification": [ + "PL4758.6.P37 S2" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Citamparam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000107" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000046", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5147" + ], + "identifierV2": [ + { + "value": "*OLB 82-5147", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838972" + } + ], + "physicalLocation": [ + "*OLB 82-5147" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838972" + ], + "idBarcode": [ + "33433001838972" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005147" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000108", + "_score": null, + "_source": { + "extent": [ + "314 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Yugavāṇī Prakāśana; [Ekādhikārī Vitaraka Sahacārī Prakāśana Prasāraṇa" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nīhārikā; Kalāpūrṇa sāmājika upanyāsa." + ], + "shelfMark": [ + "*OKTN 82-5146" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pant, Govind Ballabh, 1887-1961." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "sa 68007148" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTN 82-5146" + }, + { + "type": "nypl:Bnumber", + "value": "10000108" + }, + { + "type": "bf:Lccn", + "value": "sa 68007148" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000056-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100056" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200107" + } + ], + "idOclc": [ + "NYPG001000056-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Kānapura, Yugavāṇī Prakāśana; [Ekādhikārī Vitaraka Sahacārī Prakāśana Prasāraṇa, 1968]" + ], + "identifier": [ + "urn:bnum:10000108", + "urn:lccn:sa 68007148", + "urn:oclc:NYPG001000056-B", + "urn:undefined:NNSZ00100056", + "urn:undefined:(WaOLN)nyp0200107" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Nīhārikā; Kalāpūrṇa sāmājika upanyāsa. Lekhaka Govindavallabha Panta." + ], + "uri": "b10000108", + "lccClassification": [ + "PK2098.P319 N5 1968" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kānapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000108" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942050", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTN 82-5146" + ], + "identifierV2": [ + { + "value": "*OKTN 82-5146", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012457234" + } + ], + "physicalLocation": [ + "*OKTN 82-5146" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012457234" + ], + "idBarcode": [ + "33433012457234" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTN 82-005146" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000109", + "_score": null, + "_source": { + "extent": [ + "xxii, 321 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [305]-321).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Americans", + "Americans -- Travel", + "Americans -- Travel -- History", + "Americans -- Travel -- History -- China", + "Americans -- Travel -- History -- China -- 19th century", + "Public opinion", + "Public opinion -- United States", + "Public opinion -- United States -- History", + "Public opinion -- United States -- History -- 19th century", + "United States", + "United States -- Civilization", + "United States -- Civilization -- Chinese influences", + "United States -- Intellectual life", + "United States -- Intellectual life -- 19th century", + "China", + "China -- Foreign public opinion, American", + "China -- Foreign public opinion, American -- History", + "China -- Foreign public opinion, American -- History -- 19th century", + "China -- Civilization", + "China -- Civilization -- Public opinion", + "China -- Civilization -- Public opinion -- History", + "China -- Civilization -- Public opinion -- History -- 19th century", + "China -- Description and travel", + "China -- In popular culture", + "United States -- Relations", + "United States -- Relations -- China", + "China -- Relations", + "China -- Relations -- United States" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Columbia University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 2008 + ], + "title": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 09-1362" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2008" + ], + "creatorLiteral": [ + "Haddad, John Rogers." + ], + "idLccn": [ + "2008037637" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2008 + ], + "idOclc": [ + "184821618" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 09-1362" + }, + { + "type": "nypl:Bnumber", + "value": "10000109" + }, + { + "type": "bf:Isbn", + "value": "9780231130943 (cloth : alk. paper)" + }, + { + "type": "bf:Isbn", + "value": "0231130945 (cloth : alk. paper)" + }, + { + "type": "nypl:Oclc", + "value": "184821618" + }, + { + "type": "bf:Lccn", + "value": "2008037637" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)184821618" + } + ], + "updatedAt": 1709334898828, + "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", + "urn:isbn:9780231130943 (cloth : alk. paper)", + "urn:isbn:0231130945 (cloth : alk. paper)", + "urn:oclc:184821618", + "urn:lccn:2008037637", + "urn:identifier:(OCoLC)184821618" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2008" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Americans -- Travel -- History -- China -- 19th century.", + "Public opinion -- United States -- History -- 19th century.", + "United States -- Civilization -- Chinese influences.", + "United States -- Intellectual life -- 19th century.", + "China -- Foreign public opinion, American -- History -- 19th century.", + "China -- Civilization -- Public opinion -- History -- 19th century.", + "China -- Description and travel.", + "China -- In popular culture.", + "United States -- Relations -- China.", + "China -- Relations -- United States." + ], + "titleDisplay": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876 / John Rogers Haddad." + ], + "uri": "b10000109", + "lccClassification": [ + "E183.8.C5 H175 2008" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Xanadu : an envoy at the throne of a monarch -- Romantic domesticity : a Chinese world invented at home -- Pursuing the China effect : a country described through marketing -- China in miniature : Nathan Dunn's Chinese museum -- A floating ethnology : the strange voyage of the Chinese junk Keying -- God's China : the Middle Kingdom of Samuel Wells Williams -- The cultural fruits of diplomacy : Chinese museum and panorama -- The ugly face of China : Bayard Taylor's travels in Asia -- Traditional China and Chinese Yankees : the Centennial Exposition of 1876." + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "9780231130943", + "0231130945" + ] + }, + "sort": [ + "b10000109" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dueDate": [ + "2024-05-30" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061318089" + ], + "identifier": [ + "urn:shelfmark:*OLF 82-5145", + "urn:barcode:33433061318089" + ], + "identifierV2": [ + { + "value": "*OLF 82-5145", + "type": "bf:ShelfMark" + }, + { + "value": "33433061318089", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OLF 82-5145" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*OLF 82-5145" + ], + "shelfMark_sort": "a*OLF 82-005145", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783799" + }, + "sort": [ + null + ] + }, + { + "_nested": { + "field": "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": [ + "33433084847221" + ], + "identifier": [ + "urn:shelfmark:JFE 09-1362", + "urn:barcode:33433084847221" + ], + "identifierV2": [ + { + "value": "JFE 09-1362", + "type": "bf:ShelfMark" + }, + { + "value": "33433084847221", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "JFE 09-1362" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFE 09-1362" + ], + "shelfMark_sort": "aJFE 09-001362", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i23117386" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000110", + "_score": null, + "_source": { + "extent": [ + "xi, 207 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Economic ideas in Kural.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 184-188.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maturaip Palkalaik Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kuṟaḷ kaṇṭa poruḷvāḻvu" + ], + "shelfMark": [ + "*OLB 82-5121" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Murukarattaṉam, Ti., 1934-" + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75902500" + ], + "seriesStatement": [ + "Tirukkuṟaḷ Āyvaka veḷiyīṭu ; 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5121" + }, + { + "type": "nypl:Bnumber", + "value": "10000110" + }, + { + "type": "bf:Lccn", + "value": "75902500" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000058-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100058" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200109" + } + ], + "idOclc": [ + "NYPG001000058-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Maturai : Maturaip Palkalaik Kaḻakam, 1973." + ], + "identifier": [ + "urn:bnum:10000110", + "urn:lccn:75902500", + "urn:oclc:NYPG001000058-B", + "urn:undefined:NNSZ00100058", + "urn:undefined:(WaOLN)nyp0200109" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Kuṟaḷ kaṇṭa poruḷvāḻvu / Āciriyar Ti. Murukarattaṉam." + ], + "uri": "b10000110", + "lccClassification": [ + "PL4758.9T5 M834" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maturai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000110" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000047", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5121" + ], + "identifierV2": [ + { + "value": "*OLB 82-5121", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001837818" + } + ], + "physicalLocation": [ + "*OLB 82-5121" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001837818" + ], + "idBarcode": [ + "33433001837818" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005121" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000111", + "_score": null, + "_source": { + "extent": [ + "330 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic law" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Taʻāmul fī al-Islām" + ], + "shelfMark": [ + "*OGM 82-5151" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Samāwī, ʻAbd al-Wahhāb ibn Muḥammad." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "75960238" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGM 82-5151" + }, + { + "type": "nypl:Bnumber", + "value": "10000111" + }, + { + "type": "bf:Lccn", + "value": "75960238" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000059-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100059" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200110" + } + ], + "idOclc": [ + "NYPG001000059-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[S.l. : s.n., 1975]" + ], + "identifier": [ + "urn:bnum:10000111", + "urn:lccn:75960238", + "urn:oclc:NYPG001000059-B", + "urn:undefined:NNSZ00100059", + "urn:undefined:(WaOLN)nyp0200110" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic law." + ], + "titleDisplay": [ + "al-Taʻāmul fī al-Islām / ʻAbd al-Wahhāb ibn Muḥammad al-Samāwī." + ], + "uri": "b10000111", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000111" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000048", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGM 82-5151" + ], + "identifierV2": [ + { + "value": "*OGM 82-5151", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001944218" + } + ], + "physicalLocation": [ + "*OGM 82-5151" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001944218" + ], + "idBarcode": [ + "33433001944218" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGM 82-005151" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000112", + "_score": null, + "_source": { + "extent": [ + "397 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 397.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tax accounting", + "Tax accounting -- Libya" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Jāmiʻah al-Lībīyah, Kullīyat al-Iqtiṣād wa-al-Tijārah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "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ī" + ], + "shelfMark": [ + "*OFO 82-5122" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʻAbd al-Raḥīm, Nūḥ Muḥammad." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "74222293" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFO 82-5122" + }, + { + "type": "nypl:Bnumber", + "value": "10000112" + }, + { + "type": "bf:Lccn", + "value": "74222293" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000060-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100060" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200111" + } + ], + "idOclc": [ + "NYPG001000060-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Ṭarābulus] al-Jāmiʻah al-Lībīyah, Kullīyat al-Iqtiṣād wa-al-Tijārah [1971]" + ], + "identifier": [ + "urn:bnum:10000112", + "urn:lccn:74222293", + "urn:oclc:NYPG001000060-B", + "urn:undefined:NNSZ00100060", + "urn:undefined:(WaOLN)nyp0200111" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tax accounting -- Libya." + ], + "titleDisplay": [ + "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ī [taʼlīf] Nūḥ Muḥammad ʻAbd al-Raḥīm." + ], + "uri": "b10000112", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Ṭarābulus]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000112" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000049", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFO 82-5122" + ], + "identifierV2": [ + { + "value": "*OFO 82-5122", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005586205" + } + ], + "physicalLocation": [ + "*OFO 82-5122" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005586205" + ], + "idBarcode": [ + "33433005586205" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFO 82-005122" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000113", + "_score": null, + "_source": { + "extent": [ + "140 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Previously published in Centamiḻ.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kalaimakaḷ Kāriyālayam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vipulānanta ārāyvu." + ], + "shelfMark": [ + "*OLB 82-5157" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Vipulānanta, 1892-1947." + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "78903058" + ], + "seriesStatement": [ + "His Ilakkiyam, tokuti, 4" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Selvanayagam, Arul." + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5157" + }, + { + "type": "nypl:Bnumber", + "value": "10000113" + }, + { + "type": "bf:Lccn", + "value": "78903058" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000061-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100061" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200112" + } + ], + "idOclc": [ + "NYPG001000061-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ceṉṉai, Kalaimakaḷ Kāriyālayam [1965]" + ], + "identifier": [ + "urn:bnum:10000113", + "urn:lccn:78903058", + "urn:oclc:NYPG001000061-B", + "urn:undefined:NNSZ00100061", + "urn:undefined:(WaOLN)nyp0200112" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Vipulānanta ārāyvu. Tokuppāciriyar Aruḷ Celvanāyakam. Matippurai: Ka. Ce. Naṭarācā." + ], + "uri": "b10000113", + "lccClassification": [ + "AC165.T3 V48" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000113" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000050", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5157" + ], + "identifierV2": [ + { + "value": "*OLB 82-5157", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838923" + } + ], + "physicalLocation": [ + "*OLB 82-5157" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838923" + ], + "idBarcode": [ + "33433001838923" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005157" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000114", + "_score": null, + "_source": { + "extent": [ + "134 p. : ill., map ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran-Iraq War, 1980-1988" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Muʼassisah-ʼi Maṭbūʻātī-i ʻAṭāʼī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jang-i Īran va ʻIrāq" + ], + "shelfMark": [ + "*OMZ 82-5156" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Dildam, Iskandar." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 82-5156" + }, + { + "type": "nypl:Bnumber", + "value": "10000114" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000062-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100062" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200113" + } + ], + "idOclc": [ + "NYPG001000062-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Tihrān : Muʼassisah-ʼi Maṭbūʻātī-i ʻAṭāʼī, 1359 [1980]" + ], + "identifier": [ + "urn:bnum:10000114", + "urn:oclc:NYPG001000062-B", + "urn:undefined:NNSZ00100062", + "urn:undefined:(WaOLN)nyp0200113" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran-Iraq War, 1980-1988." + ], + "titleDisplay": [ + "Jang-i Īran va ʻIrāq / Iskandar Dildam." + ], + "uri": "b10000114", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000114" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942051", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMZ 82-5156" + ], + "identifierV2": [ + { + "value": "*OMZ 82-5156", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014543452" + } + ], + "physicalLocation": [ + "*OMZ 82-5156" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014543452" + ], + "idBarcode": [ + "33433014543452" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMZ 82-005156" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000115", + "_score": null, + "_source": { + "extent": [ + "105, [2] p. : map ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Disputes of Iran and Iraq over Sovereignty and shipping rights of the two countries on Arvand Roud, by Maḥmoud M. Aghili.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [1-2] (second group).", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iran-Iraq War, 1980-1988" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Chāpkhānah-ʼi Sipihr" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "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)" + ], + "shelfMark": [ + "*OMZ 82-5155" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Musallamī ʻAqīlī, Maḥmūd." + ], + "createdString": [ + "1980" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMZ 82-5155" + }, + { + "type": "nypl:Bnumber", + "value": "10000115" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000063-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100063" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200114" + } + ], + "idOclc": [ + "NYPG001000063-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Tihrān : Chāpkhānah-ʼi Sipihr, 1359 [1980]" + ], + "identifier": [ + "urn:bnum:10000115", + "urn:oclc:NYPG001000063-B", + "urn:undefined:NNSZ00100063", + "urn:undefined:(WaOLN)nyp0200114" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iran-Iraq War, 1980-1988." + ], + "titleDisplay": [ + "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) / taʼlīf-i Maḥmūd Musallamī ʻAqīlī." + ], + "uri": "b10000115", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000115" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942052", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMZ 82-5155" + ], + "identifierV2": [ + { + "value": "*OMZ 82-5155", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014543445" + } + ], + "physicalLocation": [ + "*OMZ 82-5155" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014543445" + ], + "idBarcode": [ + "33433014543445" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMZ 82-005155" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000116", + "_score": null, + "_source": { + "extent": [ + "8, 733p., [1] leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cuntarar.", + "Cuntarar. -- Indexes", + "Hindu hymns, Tamil", + "Hindu hymns, Tamil -- Indexes" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tēvāra oḷineṟi, Cuntarar" + ], + "shelfMark": [ + "*OLB 82-5123" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ceṅkalvarāya Piḷḷai, Va. Cu., 1883-1971." + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "75901411" + ], + "seriesStatement": [ + "Kaḻaka veḷiyīṭu; 1139" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Cuntarar." + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5123" + }, + { + "type": "nypl:Bnumber", + "value": "10000116" + }, + { + "type": "bf:Lccn", + "value": "75901411" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000064-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100064" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200115" + } + ], + "idOclc": [ + "NYPG001000064-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Tirunelvēli : Tirunelvēlit Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1963." + ], + "identifier": [ + "urn:bnum:10000116", + "urn:lccn:75901411", + "urn:oclc:NYPG001000064-B", + "urn:undefined:NNSZ00100064", + "urn:undefined:(WaOLN)nyp0200115" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cuntarar. -- Indexes.", + "Hindu hymns, Tamil -- Indexes." + ], + "titleDisplay": [ + "Tēvāra oḷineṟi, Cuntarar / Va. Cu. Ceṅkalvarāya Piḷḷai eḻutiyatu." + ], + "uri": "b10000116", + "lccClassification": [ + "BL1226.3.C862 C47" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000116" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000051", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5123" + ], + "identifierV2": [ + { + "value": "*OLB 82-5123", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001839004" + } + ], + "physicalLocation": [ + "*OLB 82-5123" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001839004" + ], + "idBarcode": [ + "33433001839004" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005123" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000117", + "_score": null, + "_source": { + "extent": [ + "515 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 491-506.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Abū Hurayrah, -677?" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktabat al-Nahḍah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Difāʻ ʻan Abī Hurayrah" + ], + "shelfMark": [ + "*OFS 82-5125" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʻIzzī, ʻAbd al-Munʻim Ṣāliḥ al-ʻAlī." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75587091" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 82-5125" + }, + { + "type": "nypl:Bnumber", + "value": "10000117" + }, + { + "type": "bf:Lccn", + "value": "75587091" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000065-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100065" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200116" + } + ], + "idOclc": [ + "NYPG001000065-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Baghdād, Maktabat al-Nahḍah, 1973." + ], + "identifier": [ + "urn:bnum:10000117", + "urn:lccn:75587091", + "urn:oclc:NYPG001000065-B", + "urn:undefined:NNSZ00100065", + "urn:undefined:(WaOLN)nyp0200116" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Abū Hurayrah, -677?" + ], + "titleDisplay": [ + "Difāʻ ʻan Abī Hurayrah [taʼlīf] ʻAbd al-Munʻim Ṣāliḥ al-ʻAlī al-ʻIzzī." + ], + "uri": "b10000117", + "lccClassification": [ + "BP80.A227 A67" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000117" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000052", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 82-5125" + ], + "identifierV2": [ + { + "value": "*OFS 82-5125", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514537" + } + ], + "physicalLocation": [ + "*OFS 82-5125" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514537" + ], + "idBarcode": [ + "33433014514537" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 82-005125" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000118", + "_score": null, + "_source": { + "extent": [ + "310 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 305-308.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Socialism", + "Socialism -- Egypt", + "Egypt", + "Egypt -- History", + "Egypt -- History -- 1919-1952" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Thaqāfah al-Jadīdah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tārīkh al-ḥarakah al-ishtirākīyah fī Miṣr 1900-1925" + ], + "shelfMark": [ + "*OFP 82-5152" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Saʻīd, Rifʻat." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "75960371" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-5152" + }, + { + "type": "nypl:Bnumber", + "value": "10000118" + }, + { + "type": "bf:Lccn", + "value": "75960371" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000066-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100066" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200117" + } + ], + "idOclc": [ + "NYPG001000066-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "al-Qāhirah : Dār al-Thaqāfah al-Jadīdah, [1975?]" + ], + "identifier": [ + "urn:bnum:10000118", + "urn:lccn:75960371", + "urn:oclc:NYPG001000066-B", + "urn:undefined:NNSZ00100066", + "urn:undefined:(WaOLN)nyp0200117" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Socialism -- Egypt.", + "Egypt -- History -- 1919-1952." + ], + "titleDisplay": [ + "Tārīkh al-ḥarakah al-ishtirākīyah fī Miṣr 1900-1925 / Rifʻat al-Saʻīd." + ], + "uri": "b10000118", + "lccClassification": [ + "Hx442 .S233 1975" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000118" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000053", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 82-5152" + ], + "identifierV2": [ + { + "value": "*OFP 82-5152", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001937576" + } + ], + "physicalLocation": [ + "*OFP 82-5152" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001937576" + ], + "idBarcode": [ + "33433001937576" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 82-005152" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000119", + "_score": null, + "_source": { + "extent": [ + "120 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ḵẖāṉ, Aḥmad Razā, 1856-1921" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Markazī Majlis Razā" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aʻlāḥazrat kā fiqhī maqām" + ], + "shelfMark": [ + "*OKTY 82-5154" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Aḵẖtar Shāhjahānpūrī." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72930336" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTY 82-5154" + }, + { + "type": "nypl:Bnumber", + "value": "10000119" + }, + { + "type": "bf:Lccn", + "value": "72930336" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000067-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100067" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200118" + } + ], + "idOclc": [ + "NYPG001000067-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Lāhaur, Markazī Majlis Razā [1971]" + ], + "identifier": [ + "urn:bnum:10000119", + "urn:lccn:72930336", + "urn:oclc:NYPG001000067-B", + "urn:undefined:NNSZ00100067", + "urn:undefined:(WaOLN)nyp0200118" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ḵẖāṉ, Aḥmad Razā, 1856-1921." + ], + "titleDisplay": [ + "Aʻlāḥazrat kā fiqhī maqām, az Akhtar Shāhjahānpūrī." + ], + "uri": "b10000119", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lāhaur" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000119" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000054", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTY 82-5154" + ], + "identifierV2": [ + { + "value": "*OKTY 82-5154", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011242736" + } + ], + "physicalLocation": [ + "*OKTY 82-5154" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011242736" + ], + "idBarcode": [ + "33433011242736" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTY 82-005154" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000120", + "_score": null, + "_source": { + "extent": [ + "120 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Vāṉati Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṇṇāviṉ navamaṇikaḷ." + ], + "shelfMark": [ + "*OLB 82-5139" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "71901945" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Tarumarācaṉ, Nākai M." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 82-5139" + }, + { + "type": "nypl:Bnumber", + "value": "10000120" + }, + { + "type": "bf:Lccn", + "value": "71901945" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000068-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100068" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200119" + } + ], + "idOclc": [ + "NYPG001000068-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Ceṉṉai, Vāṉati Patippakam [1968]" + ], + "identifier": [ + "urn:bnum:10000120", + "urn:lccn:71901945", + "urn:oclc:NYPG001000068-B", + "urn:undefined:NNSZ00100068", + "urn:undefined:(WaOLN)nyp0200119" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aṇṇāviṉ navamaṇikaḷ. Tokuttavar Nākai-Tarumaṉ." + ], + "uri": "b10000120", + "lccClassification": [ + "DS481.A64 A48" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000120" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000055", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 82-5139" + ], + "identifierV2": [ + { + "value": "*OLB 82-5139", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001838998" + } + ], + "physicalLocation": [ + "*OLB 82-5139" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001838998" + ], + "idBarcode": [ + "33433001838998" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 82-005139" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000121", + "_score": null, + "_source": { + "extent": [ + "184 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Triveṇī Prakāśana" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Natuna hāoẏā." + ], + "shelfMark": [ + "*OKV 82-5138" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kar, Bimal, 1921-" + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 64001851" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-5138" + }, + { + "type": "nypl:Bnumber", + "value": "10000121" + }, + { + "type": "bf:Lccn", + "value": "sa 64001851" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000069-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100069" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200120" + } + ], + "idOclc": [ + "NYPG001000069-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Kalikātā, Triveṇī Prakāśana [1963]" + ], + "identifier": [ + "urn:bnum:10000121", + "urn:lccn:sa 64001851", + "urn:oclc:NYPG001000069-B", + "urn:undefined:NNSZ00100069", + "urn:undefined:(WaOLN)nyp0200120" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Natuna hāoẏā. [Lekhaka] Bimala Kara." + ], + "uri": "b10000121", + "lccClassification": [ + "PK1718.K3 N3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalikātā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000121" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000056", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKV 82-5138" + ], + "identifierV2": [ + { + "value": "*OKV 82-5138", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011167834" + } + ], + "physicalLocation": [ + "*OKV 82-5138" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011167834" + ], + "idBarcode": [ + "33433011167834" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKV 82-005138" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000122", + "_score": null, + "_source": { + "extent": [ + "96 p. port." + ], + "note": [ + { + "noteType": "Note", + "label": "Series romanized: Urdū ke lokapriya śāyara.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rājapāla" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Sāhira Ludhyānavī aura unakī śāyarī." + ], + "shelfMark": [ + "*OKTX 82-5136" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sāḥir Ludhiyānvī, 1921-1980." + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "sa 68008215" + ], + "seriesStatement": [ + "Urdū ke lokapriya śāyara" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Panḍit, Prakāsh, 1924-" + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 82-5136" + }, + { + "type": "nypl:Bnumber", + "value": "10000122" + }, + { + "type": "bf:Lccn", + "value": "sa 68008215" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000070-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100070" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200121" + } + ], + "idOclc": [ + "NYPG001000070-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Dillī, Rājapāla [1966]" + ], + "identifier": [ + "urn:bnum:10000122", + "urn:lccn:sa 68008215", + "urn:oclc:NYPG001000070-B", + "urn:undefined:NNSZ00100070", + "urn:undefined:(WaOLN)nyp0200121" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Sāhira Ludhyānavī aura unakī śāyarī. Sampādaka Prakāśa Paṇḍita." + ], + "uri": "b10000122", + "lccClassification": [ + "PK2200.S27 A6 1966" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000122" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000057", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-5136" + ], + "identifierV2": [ + { + "value": "*OKTX 82-5136", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004673145" + } + ], + "physicalLocation": [ + "*OKTX 82-5136" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004673145" + ], + "idBarcode": [ + "33433004673145" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-005136" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000123", + "_score": null, + "_source": { + "extent": [ + "96 p. illus." + ], + "note": [ + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrī Prakāśa Bhavana" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1962 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Elomelo." + ], + "shelfMark": [ + "*OKV 82-5135" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Bose, Buddhadeva." + ], + "createdString": [ + "1962" + ], + "idLccn": [ + "sa 63003593" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1962 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-5135" + }, + { + "type": "nypl:Bnumber", + "value": "10000123" + }, + { + "type": "bf:Lccn", + "value": "sa 63003593" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000071-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100071" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200122" + } + ], + "idOclc": [ + "NYPG001000071-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Kalakātā, Śrī Prakāśa Bhavana [1962]" + ], + "identifier": [ + "urn:bnum:10000123", + "urn:lccn:sa 63003593", + "urn:oclc:NYPG001000071-B", + "urn:undefined:NNSZ00100071", + "urn:undefined:(WaOLN)nyp0200122" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Elomelo. [Lekhaka] Buddhadeba Basu." + ], + "uri": "b10000123", + "lccClassification": [ + "PZ90.B4 B6" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalakātā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000123" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000058", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKV 82-5135" + ], + "identifierV2": [ + { + "value": "*OKV 82-5135", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011167826" + } + ], + "physicalLocation": [ + "*OKV 82-5135" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011167826" + ], + "idBarcode": [ + "33433011167826" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKV 82-005135" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000124", + "_score": null, + "_source": { + "extent": [ + "190 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Es. Si. Sarakāra" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Samudra śaṅkha." + ], + "shelfMark": [ + "*OKV 82-5134" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rājaguru, Śaktipada." + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 63004625" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 82-5134" + }, + { + "type": "nypl:Bnumber", + "value": "10000124" + }, + { + "type": "bf:Lccn", + "value": "sa 63004625" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000072-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100072" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200123" + } + ], + "idOclc": [ + "NYPG001000072-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Kalikātā, Es. Si. Sarakāra [1963]" + ], + "identifier": [ + "urn:bnum:10000124", + "urn:lccn:sa 63004625", + "urn:oclc:NYPG001000072-B", + "urn:undefined:NNSZ00100072", + "urn:undefined:(WaOLN)nyp0200123" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Samudra śaṅkha. [Lekhaka] Śaktipada Rājaguru." + ], + "uri": "b10000124", + "lccClassification": [ + "PK1718.R24 S23" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalikātā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000124" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000059", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKV 82-5134" + ], + "identifierV2": [ + { + "value": "*OKV 82-5134", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011167818" + } + ], + "physicalLocation": [ + "*OKV 82-5134" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011167818" + ], + "idBarcode": [ + "33433011167818" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKV 82-005134" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000125", + "_score": null, + "_source": { + "extent": [ + "214 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 209-214.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Poets, Arab", + "Poets, Arab -- Iraq", + "Poets, Arab -- Iraq -- Bibliography", + "Yezidis", + "Yezidis -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tawzīʻ Maktabat al-Andalus]" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Shiʻr al-Yazīdīyīn" + ], + "shelfMark": [ + "*OFS 82-3836" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ghayāḍ, Muḥsin." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74222306" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 82-3836" + }, + { + "type": "nypl:Bnumber", + "value": "10000125" + }, + { + "type": "bf:Lccn", + "value": "74222306" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000073-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100073" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200124" + } + ], + "idOclc": [ + "NYPG001000073-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[Baghdād, Tawzīʻ Maktabat al-Andalus] 1973." + ], + "identifier": [ + "urn:bnum:10000125", + "urn:lccn:74222306", + "urn:oclc:NYPG001000073-B", + "urn:undefined:NNSZ00100073", + "urn:undefined:(WaOLN)nyp0200124" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Poets, Arab -- Iraq -- Bibliography.", + "Yezidis -- Biography." + ], + "titleDisplay": [ + "Shiʻr al-Yazīdīyīn, jamaʻahu wa-ḥaqqaqahu Muḥsin Ghayāḍ." + ], + "uri": "b10000125", + "lccClassification": [ + "PJ8034 .G5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000125" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000060", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 82-3836" + ], + "identifierV2": [ + { + "value": "*OFS 82-3836", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514172" + } + ], + "physicalLocation": [ + "*OFS 82-3836" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514172" + ], + "idBarcode": [ + "33433014514172" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 82-003836" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000126", + "_score": null, + "_source": { + "extent": [ + "72 p. : ill., ports. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ramana, Maharshi" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrī Ramaṇāśrama" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "title": [ + "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OLY 82-4666" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "idOclc": [ + "NYPG001000074-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 82-4666" + }, + { + "type": "nypl:Bnumber", + "value": "10000126" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000074-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100074" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200125" + } + ], + "updatedAt": 1703706750428, + "publicationStatement": [ + "Tirūvaṇṇāmalai : Śrī Ramaṇāśrama, 1974." + ], + "identifier": [ + "urn:shelfmark:*OLY 82-4666", + "urn:bnum:10000126", + "urn:oclc:NYPG001000074-B", + "urn:identifier:NNSZ00100074", + "urn:identifier:(WaOLN)nyp0200125" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ramana, Maharshi." + ], + "titleDisplay": [ + "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." + ], + "uri": "b10000126", + "placeOfPublication": [ + "Tirūvaṇṇāmalai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000126" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060417551" + ], + "identifier": [ + "urn:shelfmark:*OLY 82-4666", + "urn:barcode:33433060417551" + ], + "identifierV2": [ + { + "value": "*OLY 82-4666", + "type": "bf:ShelfMark" + }, + { + "value": "33433060417551", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 82-4666" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OLY 82-4666" + ], + "shelfMark_sort": "a*OLY 82-004666", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783800" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000127", + "_score": null, + "_source": { + "extent": [ + "269 p. maps." + ], + "note": [ + { + "noteType": "Note", + "label": "Translation of The modern history of Lebanon.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Lebanon", + "Lebanon -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Nahār lil-Nashr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tārīkh Lubnān al-ḥadīth" + ], + "shelfMark": [ + "*OFP 82-3837" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Salibi, Kamal S. (Kamal Suleiman), 1929-2011." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "75232402" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-3837" + }, + { + "type": "nypl:Bnumber", + "value": "10000127" + }, + { + "type": "bf:Lccn", + "value": "75232402" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000075-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100075" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200126" + } + ], + "idOclc": [ + "NYPG001000075-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Bayrūt, Dār al-Nahār lil-Nashr [1967]" + ], + "identifier": [ + "urn:bnum:10000127", + "urn:lccn:75232402", + "urn:oclc:NYPG001000075-B", + "urn:undefined:NNSZ00100075", + "urn:undefined:(WaOLN)nyp0200126" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Lebanon -- History." + ], + "titleDisplay": [ + "Tārīkh Lubnān al-ḥadīth [taʼlīf] Kamāl Sulaymān al-Ṣalībī." + ], + "uri": "b10000127", + "lccClassification": [ + "DS84 .S25" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000127" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000061", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 82-3837" + ], + "identifierV2": [ + { + "value": "*OFP 82-3837", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001542319" + } + ], + "physicalLocation": [ + "*OFP 82-3837" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001542319" + ], + "idBarcode": [ + "33433001542319" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 82-003837" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000128", + "_score": null, + "_source": { + "extent": [ + "247 p. maps, ports." + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Lawrence, T. E. 1888-1935" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-Nahār" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Lūrins kamā ʻaraftuh" + ], + "shelfMark": [ + "*OFS 82-3903" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʻUmarī, Ṣubḥī, 1898-" + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "79282457" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 82-3903" + }, + { + "type": "nypl:Bnumber", + "value": "10000128" + }, + { + "type": "bf:Lccn", + "value": "79282457" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000076-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100076" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200127" + } + ], + "idOclc": [ + "NYPG001000076-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[Bayrūt] Dār al-Nahār [1969]" + ], + "identifier": [ + "urn:bnum:10000128", + "urn:lccn:79282457", + "urn:oclc:NYPG001000076-B", + "urn:undefined:NNSZ00100076", + "urn:undefined:(WaOLN)nyp0200127" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Lawrence, T. E. 1888-1935." + ], + "titleDisplay": [ + "Lūrins kamā ʻaraftuh [taʼlīf] Ṣubḥī al-ʻUmarī." + ], + "uri": "b10000128", + "lccClassification": [ + "D568.4.L45 U45" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000128" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000062", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 82-3903" + ], + "identifierV2": [ + { + "value": "*OFS 82-3903", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014514271" + } + ], + "physicalLocation": [ + "*OFS 82-3903" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014514271" + ], + "idBarcode": [ + "33433014514271" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 82-003903" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000129", + "_score": null, + "_source": { + "extent": [ + "117 p. : facsims. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 99-104.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Jumhūrīyah al-ʻIrāqīyah, Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān ʻAmr ibn Qamīʼah" + ], + "shelfMark": [ + "*OEM 82-3896" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "ʻAmr ibn Qamīʼah." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75587883" + ], + "seriesStatement": [ + "Silsilat Kutub al-turāth." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "ʻAṭīyah, Khalīl Ibrāhīm." + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OEM 82-3896" + }, + { + "type": "nypl:Bnumber", + "value": "10000129" + }, + { + "type": "bf:Lccn", + "value": "75587883" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000077-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100077" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200128" + } + ], + "idOclc": [ + "NYPG001000077-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Baghdād : al-Jumhūrīyah al-ʻIrāqīyah, Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah, 1972." + ], + "identifier": [ + "urn:bnum:10000129", + "urn:lccn:75587883", + "urn:oclc:NYPG001000077-B", + "urn:undefined:NNSZ00100077", + "urn:undefined:(WaOLN)nyp0200128" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān ʻAmr ibn Qamīʼah / ʻuniya bi-taḥqīqihi wa-sharḥih Khalīl Ibrāhīm al-ʻAṭīyah." + ], + "uri": "b10000129", + "lccClassification": [ + "PJ7696.A5 A6 1972" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000129" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000063", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OEM 82-3896" + ], + "identifierV2": [ + { + "value": "*OEM 82-3896", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002038218" + } + ], + "physicalLocation": [ + "*OEM 82-3896" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002038218" + ], + "idBarcode": [ + "33433002038218" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OEM 82-003896" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000130", + "_score": null, + "_source": { + "extent": [ + "478 p. facsims." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: al-Burhan, edited with an introd. by Ahmad Matloub [and] Khadijah al-Hadithi.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "The work, under title Naqd al-Nathr, has been attributed by Ṭāhā Ḥusayn and ʻAbd al-Ḥamīd al-ʻAbbādī to Qudāmah. The present editors, on the basis of a newly discovered MS., attribute it to Abū al-Ḥusayn Isḥāq ibn Ibrāhīm al-Kātib, an otherwise unknown author.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Arabic language", + "Arabic language -- Rhetoric" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Jāmiʻat Baghdād" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Burhān fī wujūh al-bayān" + ], + "shelfMark": [ + "*OEQ 82-4707" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "ne 68003583" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Abū al-Ḥusayn Isḥāq ibn Ibrāhīm al-Kātib.", + "Qudāmah ibn Jaʻfar, -922?", + "Maṭlūb, Aḥmad.", + "Ḥadīthī, Khadījah." + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OEQ 82-4707" + }, + { + "type": "nypl:Bnumber", + "value": "10000130" + }, + { + "type": "bf:Lccn", + "value": "ne 68003583" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000078-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100078" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200129" + } + ], + "idOclc": [ + "NYPG001000078-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Baghdād] Jāmiʻat Baghdād 1967." + ], + "identifier": [ + "urn:bnum:10000130", + "urn:lccn:ne 68003583", + "urn:oclc:NYPG001000078-B", + "urn:undefined:NNSZ00100078", + "urn:undefined:(WaOLN)nyp0200129" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Arabic language -- Rhetoric." + ], + "titleDisplay": [ + "al-Burhān fī wujūh al-bayān [allafahu] Abū al-Ḥusayn Isḥāq ibn Ibrāhīm ibn Sulaymān ibn Wahb al-Kātib. Taḥqīq Aḥmad Maṭlūb [wa]-Khadījah al-Ḥadīthī." + ], + "uri": "b10000130", + "lccClassification": [ + "PJ6161 .B78 1967" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Baghdād]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Naqd al-nathr." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000130" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000064", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OEQ 82-4707" + ], + "identifierV2": [ + { + "value": "*OEQ 82-4707", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014519783" + } + ], + "physicalLocation": [ + "*OEQ 82-4707" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014519783" + ], + "idBarcode": [ + "33433014519783" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OEQ 82-004707" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000131", + "_score": null, + "_source": { + "extent": [ + "631 p. ; 24 cm." + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 577-601.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic: Summary in English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Muqtadir billāh, Caliph, 895-932", + "Abbasids", + "Islamic Empire", + "Islamic Empire -- History", + "Islamic Empire -- History -- 750-1258" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OFM 82-4705" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kubaysī, Ḥamdān ʻAbd al-Majīd." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "78970114" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFM 82-4705" + }, + { + "type": "nypl:Bnumber", + "value": "10000131" + }, + { + "type": "bf:Lccn", + "value": "78970114" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000079-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100079" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200130" + } + ], + "idOclc": [ + "NYPG001000079-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[5.1. : s.n.], 1974" + ], + "identifier": [ + "urn:bnum:10000131", + "urn:lccn:78970114", + "urn:oclc:NYPG001000079-B", + "urn:undefined:NNSZ00100079", + "urn:undefined:(WaOLN)nyp0200130" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Muqtadir billāh, Caliph, 895-932.", + "Abbasids.", + "Islamic Empire -- History -- 750-1258." + ], + "titleDisplay": [ + "ʻ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 / taʼlīf Ḥamdān ʻAbd al-Majīd al-Kubaysī." + ], + "uri": "b10000131", + "lccClassification": [ + "DS38.6 .K82" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[5.1." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + "b10000131" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000065", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFM 82-4705" + ], + "identifierV2": [ + { + "value": "*OFM 82-4705", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014463446" + } + ], + "physicalLocation": [ + "*OFM 82-4705" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014463446" + ], + "idBarcode": [ + "33433014463446" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFM 82-004705" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000132", + "_score": null, + "_source": { + "extent": [ + "302 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 293-297.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Almohades" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Suqūṭ Dawlat al-Muwaḥḥidīn" + ], + "shelfMark": [ + "*OFO 82-4577" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ghannāy, Marājiʻ ʻAqīlah." + ], + "createdString": [ + "1975" + ], + "seriesStatement": [ + "Manshūrāt Jāmiʻat Binghāzī" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFO 82-4577" + }, + { + "type": "nypl:Bnumber", + "value": "10000132" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000080-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100080" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200131" + } + ], + "idOclc": [ + "NYPG001000080-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[S.l. : s.n.] 1975" + ], + "identifier": [ + "urn:bnum:10000132", + "urn:oclc:NYPG001000080-B", + "urn:undefined:NNSZ00100080", + "urn:undefined:(WaOLN)nyp0200131" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Almohades." + ], + "titleDisplay": [ + "Suqūṭ Dawlat al-Muwaḥḥidīn / taʼlīf Marājiʻ ʻAqīlah al-Ghannāy." + ], + "uri": "b10000132", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000132" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000066", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFO 82-4577" + ], + "identifierV2": [ + { + "value": "*OFO 82-4577", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005586346" + } + ], + "physicalLocation": [ + "*OFO 82-4577" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005586346" + ], + "idBarcode": [ + "33433005586346" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFO 82-004577" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000133", + "_score": null, + "_source": { + "extent": [ + "177 p. ; port." + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Socialism", + "Socialism -- Sudan", + "Sudan", + "Sudan -- Politics and government" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Maktabah al-ʻAṣrīyah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Dīmūqrāṭīyah wa-al-ishtirākīyah fī al-Sūdān" + ], + "shelfMark": [ + "*OFP 82-4578" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Amīn, ʻAlī ʻAbd al-Raḥmān." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 82-4578" + }, + { + "type": "nypl:Bnumber", + "value": "10000133" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000081-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100081" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200132" + } + ], + "idOclc": [ + "NYPG001000081-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Ṣaydā : al-Maktabah al-ʻAṣrīyah, 1970." + ], + "identifier": [ + "urn:bnum:10000133", + "urn:oclc:NYPG001000081-B", + "urn:undefined:NNSZ00100081", + "urn:undefined:(WaOLN)nyp0200132" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Socialism -- Sudan.", + "Sudan -- Politics and government." + ], + "titleDisplay": [ + "al-Dīmūqrāṭīyah wa-al-ishtirākīyah fī al-Sūdān / taʼlīf ʻAlī ʻAbd al-Raḥmān al-Amīn." + ], + "uri": "b10000133", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ṣaydā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000133" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000067", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFP 82-4578" + ], + "identifierV2": [ + { + "value": "*OFP 82-4578", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001937469" + } + ], + "physicalLocation": [ + "*OFP 82-4578" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001937469" + ], + "idBarcode": [ + "33433001937469" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFP 82-004578" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000134", + "_score": null, + "_source": { + "extent": [ + "192, 12 p. illus., map, plans." + ], + "note": [ + { + "noteType": "Note", + "label": "Added title: Political [sic] and aspects [sic] of the cultural life in Samarra in the third century of Hejra, by Jahadia al-Karghouli.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Risālat al-Mājistīr-- Jāmiʻat al-Qāhirah.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 141-167.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Summary in English.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sāmarrāʼ (Iraq)", + "Sāmarrāʼ (Iraq) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maṭbaʻat Dār al-Baṣrī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "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ī" + ], + "shelfMark": [ + "*OFQ 81-2737" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Qaraghūllī, Jihādīyah." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "74248948" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFQ 81-2737" + }, + { + "type": "nypl:Bnumber", + "value": "10000134" + }, + { + "type": "bf:Lccn", + "value": "74248948" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000082-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100082" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200133" + } + ], + "idOclc": [ + "NYPG001000082-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Baghdād, Maṭbaʻat Dār al-Baṣrī [1969]" + ], + "identifier": [ + "urn:bnum:10000134", + "urn:lccn:74248948", + "urn:oclc:NYPG001000082-B", + "urn:undefined:NNSZ00100082", + "urn:undefined:(WaOLN)nyp0200133" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sāmarrāʼ (Iraq) -- History." + ], + "titleDisplay": [ + "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ī [taʼlīf] Jihādīyah al-Qaraghūllī." + ], + "uri": "b10000134", + "lccClassification": [ + "DS51.S2 Q3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000134" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000068", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFQ 81-2737" + ], + "identifierV2": [ + { + "value": "*OFQ 81-2737", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433014504074" + } + ], + "physicalLocation": [ + "*OFQ 81-2737" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433014504074" + ], + "idBarcode": [ + "33433014504074" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFQ 81-002737" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000135", + "_score": null, + "_source": { + "extent": [ + "216 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Short stories", + "Short stories -- Iraq" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[Maktabat Baghdād]" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Qiṣaṣ ʻIrāqīyah muʻāṣirah" + ], + "shelfMark": [ + "*OFC 81-3162" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "75972325" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Thāmir, Fāḍil.", + "Naṣīr, Yāsīn." + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFC 81-3162" + }, + { + "type": "nypl:Bnumber", + "value": "10000135" + }, + { + "type": "bf:Lccn", + "value": "75972325" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000083-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100083" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200134" + } + ], + "idOclc": [ + "NYPG001000083-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Baghdād : [Maktabat Baghdād], 1971." + ], + "identifier": [ + "urn:bnum:10000135", + "urn:lccn:75972325", + "urn:oclc:NYPG001000083-B", + "urn:undefined:NNSZ00100083", + "urn:undefined:(WaOLN)nyp0200134" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Short stories -- Iraq." + ], + "titleDisplay": [ + "Qiṣaṣ ʻIrāqīyah muʻāṣirah / Muḥammad Khuḍayr ... [et al.] ; ditāsat Fāḍil Thāmir, Yāsīn al-Naṣīr." + ], + "uri": "b10000135", + "lccClassification": [ + "75972325" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000135" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000069", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFC 81-3162" + ], + "identifierV2": [ + { + "value": "*OFC 81-3162", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001965965" + } + ], + "physicalLocation": [ + "*OFC 81-3162" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001965965" + ], + "idBarcode": [ + "33433001965965" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFC 81-003162" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000136", + "_score": null, + "_source": { + "extent": [ + "6, 488 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 6 (1st group)", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Love" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dar al-Ṣafā, yuṭlab min Maktabat al-Jāmiʻah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rawḍat al-muḥibbīn wa-nuzhat al-mushtāqīn" + ], + "shelfMark": [ + "*OFC 81-3166" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ibn Qayyim al-Jawzīyah, Muḥammad ibn Abī Bakr, 1292-1350." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74960035" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Yūsuf, Ṣābir." + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFC 81-3166" + }, + { + "type": "nypl:Bnumber", + "value": "10000136" + }, + { + "type": "bf:Lccn", + "value": "74960035" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000084-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100084" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200135" + } + ], + "idOclc": [ + "NYPG001000084-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "al-Qāhirah, Dar al-Ṣafā, yuṭlab min Maktabat al-Jāmiʻah [1973]" + ], + "identifier": [ + "urn:bnum:10000136", + "urn:lccn:74960035", + "urn:oclc:NYPG001000084-B", + "urn:undefined:NNSZ00100084", + "urn:undefined:(WaOLN)nyp0200135" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Love." + ], + "titleDisplay": [ + "Rawḍat al-muḥibbīn wa-nuzhat al-mushtāqīn [taʼlīf] Shams al-Dīn Muḥammad ibn Abī Bakr ibn Qayyim al-Jawzīyah. Fassara gharībahu wa-rājaʻahu Ṣābir Yūsuf." + ], + "uri": "b10000136", + "lccClassification": [ + "HQ801 .I25 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000136" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000070", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFC 81-3166" + ], + "identifierV2": [ + { + "value": "*OFC 81-3166", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001965734" + } + ], + "physicalLocation": [ + "*OFC 81-3166" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001965734" + ], + "idBarcode": [ + "33433001965734" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFC 81-003166" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000137", + "_score": null, + "_source": { + "extent": [ + "947 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dīwān al-Qarawī" + ], + "shelfMark": [ + "*OFA 81-3160" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Shāʻir al-Qarawī." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74960574" + ], + "seriesStatement": [ + "Dīwān al-Shiʻr al-ʻArabī al-ḥadīth ; 27" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 81-3160" + }, + { + "type": "nypl:Bnumber", + "value": "10000137" + }, + { + "type": "bf:Lccn", + "value": "74960574" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000085-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100085" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200136" + } + ], + "idOclc": [ + "NYPG001000085-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[Baghdād] : Wizārat al-Iʻlām, Mudīrīyat al-Thaqāfah al-ʻĀmmah, [1973]" + ], + "identifier": [ + "urn:bnum:10000137", + "urn:lccn:74960574", + "urn:oclc:NYPG001000085-B", + "urn:undefined:NNSZ00100085", + "urn:undefined:(WaOLN)nyp0200136" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Dīwān al-Qarawī / Rashīd Salīm Khūrī." + ], + "uri": "b10000137", + "lccClassification": [ + "PJ7842.H858 A6 1973" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Baghdād]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + "b10000137" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000071", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 81-3160" + ], + "identifierV2": [ + { + "value": "*OFA 81-3160", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001999683" + } + ], + "physicalLocation": [ + "*OFA 81-3160" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001999683" + ], + "idBarcode": [ + "33433001999683" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 81-003160" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000138", + "_score": null, + "_source": { + "extent": [ + "112 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "In the Egyptian dialect.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Jamʻīyat Udabāʼ al-Shaʻb" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aḥibb baladī" + ], + "shelfMark": [ + "*OFA 81-3163" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Faraj, Faraj Khamīs." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "73961049" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 81-3163" + }, + { + "type": "nypl:Bnumber", + "value": "10000138" + }, + { + "type": "bf:Lccn", + "value": "73961049" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000086-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100086" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200137" + } + ], + "idOclc": [ + "NYPG001000086-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "al-Iskandarīyah, Jamʻīyat Udabāʼ al-Shaʻb [1968]" + ], + "identifier": [ + "urn:bnum:10000138", + "urn:lccn:73961049", + "urn:oclc:NYPG001000086-B", + "urn:undefined:NNSZ00100086", + "urn:undefined:(WaOLN)nyp0200137" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Aḥibb baladī, azjāl Faraj Khamīs Faraj <>" + ], + "uri": "b10000138", + "lccClassification": [ + "PJ7824.A68 A7" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Iskandarīyah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000138" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000072", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 81-3163" + ], + "identifierV2": [ + { + "value": "*OFA 81-3163", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001999675" + } + ], + "physicalLocation": [ + "*OFA 81-3163" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001999675" + ], + "idBarcode": [ + "33433001999675" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 81-003163" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000139", + "_score": null, + "_source": { + "extent": [ + "292 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [289]-290.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Nadīm, ʻAbd Allāh, 1845-1896" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktabat al-Kullīyat al-Azharīyah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "ʻAbd Allāh al-Nadīm Khaṭīb al-Thawrah al-ʻUrābīyah" + ], + "shelfMark": [ + "*OFS 81-3165" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tawfīq, Najīb." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "74963003" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFS 81-3165" + }, + { + "type": "nypl:Bnumber", + "value": "10000139" + }, + { + "type": "bf:Lccn", + "value": "74963003" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000087-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100087" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200138" + } + ], + "idOclc": [ + "NYPG001000087-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[al-Qāhirah] Maktabat al-Kullīyat al-Azharīyah [1970]" + ], + "identifier": [ + "urn:bnum:10000139", + "urn:lccn:74963003", + "urn:oclc:NYPG001000087-B", + "urn:undefined:NNSZ00100087", + "urn:undefined:(WaOLN)nyp0200138" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nadīm, ʻAbd Allāh, 1845-1896." + ], + "titleDisplay": [ + "ʻAbd Allāh al-Nadīm Khaṭīb al-Thawrah al-ʻUrābīyah, bi-qalam Najīb Tawfīq. Taqdīm ʻAbd al-Raḥmān al-Rāfiʻī." + ], + "uri": "b10000139", + "lccClassification": [ + "DT107.2.N25 T38" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000139" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000073", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFS 81-3165" + ], + "identifierV2": [ + { + "value": "*OFS 81-3165", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005562628" + } + ], + "physicalLocation": [ + "*OFS 81-3165" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005562628" + ], + "idBarcode": [ + "33433005562628" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFS 81-003165" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000140", + "_score": null, + "_source": { + "extent": [ + "184 p. : port. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Muslim pilgrims and pilgrimages", + "Muslim pilgrims and pilgrimages -- Mecca" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1979" + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ḥajj" + ], + "shelfMark": [ + "*OGH 82-280" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ṭāliqānī, Maḥmūd." + ], + "createdString": [ + "1970" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGH 82-280" + }, + { + "type": "nypl:Bnumber", + "value": "10000140" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000088-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100088" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200139" + } + ], + "idOclc": [ + "NYPG001000088-B" + ], + "dateEndYear": [ + 1979 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[S.l. : s.n., 197-?]" + ], + "identifier": [ + "urn:bnum:10000140", + "urn:oclc:NYPG001000088-B", + "urn:undefined:NNSZ00100088", + "urn:undefined:(WaOLN)nyp0200139" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Muslim pilgrims and pilgrimages -- Mecca." + ], + "titleDisplay": [ + "Ḥajj / Āyat Allāh Sayyid Maḥmūd Ṭāliqānī." + ], + "uri": "b10000140", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23cm." + ] + }, + "sort": [ + "b10000140" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858033", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGH 82-280" + ], + "identifierV2": [ + { + "value": "*OGH 82-280", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058007638" + } + ], + "physicalLocation": [ + "*OGH 82-280" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058007638" + ], + "idBarcode": [ + "33433058007638" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGH 82-000280" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000141", + "_score": null, + "_source": { + "extent": [ + "703 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Jis prugrim yūnivirsṭī n̲e muʼallif kū 1966 meṉ Ph.D. kī ra̤tā kī tahī.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Urdu poetry", + "Urdu poetry -- History and criticism", + "Women", + "Women -- Language" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nasīm Bukḍipu" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "title": [ + "Rekḥtī kā tanqīdī mṳtālaʻah" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*OKTW 82-277" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "creatorLiteral": [ + "Mushīr, Khalīl Aḥmad." + ], + "idLccn": [ + "74903710" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "idOclc": [ + "NYPG001000089-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTW 82-277" + }, + { + "type": "nypl:Bnumber", + "value": "10000141" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000089-B" + }, + { + "type": "bf:Lccn", + "value": "74903710" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100089" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200140" + } + ], + "updatedAt": 1705601948562, + "publicationStatement": [ + "Likhnu : Nasīm Bukḍipu, 1974." + ], + "identifier": [ + "urn:shelfmark:*OKTW 82-277", + "urn:bnum:10000141", + "urn:oclc:NYPG001000089-B", + "urn:lccn:74903710", + "urn:identifier:NNSZ00100089", + "urn:identifier:(WaOLN)nyp0200140" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Urdu poetry -- History and criticism.", + "Women -- Language." + ], + "titleDisplay": [ + "Rekḥtī kā tanqīdī mṳtālaʻah / az Khalīl Aḥmad Ṣiddīqī Mushīr." + ], + "uri": "b10000141", + "lccClassification": [ + "PK2167 .M794" + ], + "placeOfPublication": [ + "Likhnu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000141" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dueDate": [ + "2024-01-26" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004668285" + ], + "identifier": [ + "urn:shelfmark:*OKTW 82-277 ", + "urn:barcode:33433004668285" + ], + "identifierV2": [ + { + "value": "*OKTW 82-277 ", + "type": "bf:ShelfMark" + }, + { + "value": "33433004668285", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OKTW 82-277 " + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*OKTW 82-277 " + ], + "shelfMark_sort": "a*OKTW 82-277 ", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i10000074" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000142", + "_score": null, + "_source": { + "extent": [ + "65, 41 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Islamic government and the present revolution in Iran/by Yahja Noori.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian or English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islam and state", + "Iran", + "Iran -- Politics and government", + "Iran -- Politics and government -- 1979-1997" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Majmaʻ-i Maʻārif-i Islāmī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1979 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ḥukūmat-i Islāmī va taḥlīlī az nihẓat-i ḥāẓir" + ], + "shelfMark": [ + "*OGC 82-274" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nūrī, Yaḥyá." + ], + "createdString": [ + "1979" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1979 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 82-274" + }, + { + "type": "nypl:Bnumber", + "value": "10000142" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000090-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100090" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200141" + } + ], + "idOclc": [ + "NYPG001000090-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tihrān : Majmaʻ-i Maʻārif-i Islāmī, 1979." + ], + "identifier": [ + "urn:bnum:10000142", + "urn:oclc:NYPG001000090-B", + "urn:undefined:NNSZ00100090", + "urn:undefined:(WaOLN)nyp0200141" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1979" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islam and state.", + "Iran -- Politics and government -- 1979-1997." + ], + "titleDisplay": [ + "Ḥukūmat-i Islāmī va taḥlīlī az nihẓat-i ḥāẓir / muntakhabī az chand muṣāḥibah bā Āyat Allāh Nūrī." + ], + "uri": "b10000142", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Islamic government and the present revolution in Iran." + ], + "dimensions": [ + "22cm." + ] + }, + "sort": [ + "b10000142" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540041", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 82-274" + ], + "identifierV2": [ + { + "value": "*OGC 82-274", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022688901" + } + ], + "physicalLocation": [ + "*OGC 82-274" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022688901" + ], + "idBarcode": [ + "33433022688901" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 82-000274" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000143", + "_score": null, + "_source": { + "extent": [ + "244 p. : maps. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 243-244.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Oudh (India)", + "Oudh (India) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "taqsīmkār, Vājid ʻAlī Shāh Akāḍmī" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tārīkh-i Avadh kā mukhtaṣar jāʼizah" + ], + "shelfMark": [ + "*OLL 82-275" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḵẖāṉ, Amjad ʻAlī." + ], + "createdString": [ + "1978" + ], + "idLccn": [ + "78908573" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLL 82-275" + }, + { + "type": "nypl:Bnumber", + "value": "10000143" + }, + { + "type": "bf:Lccn", + "value": "78908573" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000091-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100091" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200142" + } + ], + "idOclc": [ + "NYPG001000091-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Lakhaʼū : taqsīmkār, Vājid ʻAlī Shāh Akāḍmī, 1978." + ], + "identifier": [ + "urn:bnum:10000143", + "urn:lccn:78908573", + "urn:oclc:NYPG001000091-B", + "urn:undefined:NNSZ00100091", + "urn:undefined:(WaOLN)nyp0200142" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Oudh (India) -- History." + ], + "titleDisplay": [ + "Tārīkh-i Avadh kā mukhtaṣar jāʼizah / Amjad ʻAlī Khāṉ." + ], + "uri": "b10000143", + "lccClassification": [ + "DS485.094 K42" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lakhaʼū" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000143" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783801", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLL 82-275" + ], + "identifierV2": [ + { + "value": "*OLL 82-275", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061320515" + } + ], + "physicalLocation": [ + "*OLL 82-275" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061320515" + ], + "idBarcode": [ + "33433061320515" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLL 82-000275" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000144", + "_score": null, + "_source": { + "extent": [ + "116 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Rafʻat" + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1979" + ], + "createdYear": [ + 1978 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Īshīq" + ], + "shelfMark": [ + "*OOX 82-272" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Nābadal, ʻAlī Rizā." + ], + "createdString": [ + "1978" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OOX 82-272" + }, + { + "type": "nypl:Bnumber", + "value": "10000144" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000092-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100092" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200143" + } + ], + "idOclc": [ + "NYPG001000092-B" + ], + "dateEndYear": [ + 1979 + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Tihrān?] : Nashr-i Rafʻat, 1357 [1978 or 1979]" + ], + "identifier": [ + "urn:bnum:10000144", + "urn:oclc:NYPG001000092-B", + "urn:undefined:NNSZ00100092", + "urn:undefined:(WaOLN)nyp0200143" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Īshīq / ʻAlī Rizā Nābadal Ukhtāy." + ], + "uri": "b10000144", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tihrān?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000144" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000075", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OOX 82-272" + ], + "identifierV2": [ + { + "value": "*OOX 82-272", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001718117" + } + ], + "physicalLocation": [ + "*OOX 82-272" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001718117" + ], + "idBarcode": [ + "33433001718117" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OOX 82-000272" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000145", + "_score": null, + "_source": { + "extent": [ + "275 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktabat Miṣr" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khān al-Khalīlī" + ], + "shelfMark": [ + "*OFC 82-271" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Maḥfūẓ, Najīb, 1911-2006." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "73962212" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFC 82-271" + }, + { + "type": "nypl:Bnumber", + "value": "10000145" + }, + { + "type": "bf:Lccn", + "value": "73962212" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000093-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100093" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200144" + } + ], + "idOclc": [ + "NYPG001000093-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[al-Qāhirah] Maktabat Miṣr [1969]" + ], + "identifier": [ + "urn:bnum:10000145", + "urn:lccn:73962212", + "urn:oclc:NYPG001000093-B", + "urn:undefined:NNSZ00100093", + "urn:undefined:(WaOLN)nyp0200144" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Khān al-Khalīlī, taʼlīf Najīb Maḥfūẓ" + ], + "uri": "b10000145", + "lccClassification": [ + "PJ7846.A46 K48 1969" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[al-Qāhirah]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "A novel" + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + "b10000145" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000076", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFC 82-271" + ], + "identifierV2": [ + { + "value": "*OFC 82-271", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001965767" + } + ], + "physicalLocation": [ + "*OFC 82-271" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001965767" + ], + "idBarcode": [ + "33433001965767" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFC 82-000271" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000146", + "_score": null, + "_source": { + "extent": [ + "767 p. port., fold. map." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 33-34.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tipu Sultan, Fath ʻAli, Nawab of Mysore, 1753-1799" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Himaliyah Pablishīng Haus" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ṣaḥīfah-yi Ṭīpū Sul̤tān" + ], + "shelfMark": [ + "*OLO 82-265" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Maḥmūd Banglaurī." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "79928817" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLO 82-265" + }, + { + "type": "nypl:Bnumber", + "value": "10000146" + }, + { + "type": "bf:Lccn", + "value": "79928817" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000094-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100094" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200145" + } + ], + "idOclc": [ + "NYPG001000094-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Dihlī, Himaliyah Pablishīng Haus [1971]" + ], + "identifier": [ + "urn:bnum:10000146", + "urn:lccn:79928817", + "urn:oclc:NYPG001000094-B", + "urn:undefined:NNSZ00100094", + "urn:undefined:(WaOLN)nyp0200145" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tipu Sultan, Fath ʻAli, Nawab of Mysore, 1753-1799." + ], + "titleDisplay": [ + "Ṣaḥīfah-yi Ṭīpū Sul̤tān, az Maḥmūd Khāṉ Maḥmūd Banglaurī." + ], + "uri": "b10000146", + "lccClassification": [ + "DS470.T6 M34" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dihlī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000146" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783802", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLO 82-265" + ], + "identifierV2": [ + { + "value": "*OLO 82-265", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061328062" + } + ], + "physicalLocation": [ + "*OLO 82-265" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061328062" + ], + "idBarcode": [ + "33433061328062" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLO 82-000265" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000147", + "_score": null, + "_source": { + "extent": [ + "70 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Vacana Māḷavikāgnimitraṃ.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Jayantipablikēṣans" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Māḷavikāgnimitraṃ." + ], + "shelfMark": [ + "*OLC 82-270" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gōpālakrṣṇa, Reṇṭāla, 1922-" + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "77901180" + ], + "seriesStatement": [ + "Vacana prabandha sāhityaṃ." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Kālidāsa." + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 82-270" + }, + { + "type": "nypl:Bnumber", + "value": "10000147" + }, + { + "type": "bf:Lccn", + "value": "77901180" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000095-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100095" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200146" + } + ], + "idOclc": [ + "NYPG001000095-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Vijayavāḍa, Jayantipablikēṣans [1968]" + ], + "identifier": [ + "urn:bnum:10000147", + "urn:lccn:77901180", + "urn:oclc:NYPG001000095-B", + "urn:undefined:NNSZ00100095", + "urn:undefined:(WaOLN)nyp0200146" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Māḷavikāgnimitraṃ. Vacana racana: Reṇṭāla Gōpālakrṣna." + ], + "uri": "b10000147", + "lccClassification": [ + "PL4780.9.G563 M27" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Vijayavāḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000147" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000077", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLC 82-270" + ], + "identifierV2": [ + { + "value": "*OLC 82-270", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004552323" + } + ], + "physicalLocation": [ + "*OLC 82-270" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004552323" + ], + "idBarcode": [ + "33433004552323" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLC 82-000270" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000148", + "_score": null, + "_source": { + "extent": [ + "68 p. port." + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Proverbs, Kannada" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sāhitya Sadana" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kannaḍa ogaṭugaḷu." + ], + "shelfMark": [ + "*OLA 82-269" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Paramashivaiah, Ji. Sam., 1933-" + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "sa 68011006" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 82-269" + }, + { + "type": "nypl:Bnumber", + "value": "10000148" + }, + { + "type": "bf:Lccn", + "value": "sa 68011006" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000096-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100096" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200147" + } + ], + "idOclc": [ + "NYPG001000096-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Maisūru, Sāhitya Sadana [1967]" + ], + "identifier": [ + "urn:bnum:10000148", + "urn:lccn:sa 68011006", + "urn:oclc:NYPG001000096-B", + "urn:undefined:NNSZ00100096", + "urn:undefined:(WaOLN)nyp0200147" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Proverbs, Kannada." + ], + "titleDisplay": [ + "Kannaḍa ogaṭugaḷu. Sampādaka Jī. Śaṃ. Paramaśivayya. Hinnuḍi Si. Pi. Ke." + ], + "uri": "b10000148", + "lccClassification": [ + "PN6519.K25 P3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000148" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000078", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 82-269" + ], + "identifierV2": [ + { + "value": "*OLA 82-269", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013118892" + } + ], + "physicalLocation": [ + "*OLA 82-269" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013118892" + ], + "idBarcode": [ + "33433013118892" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 82-000269" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000149", + "_score": null, + "_source": { + "extent": [ + "2 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Majlis-i Taraqqī-i Adab" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 2 + ], + "dateEndString": [ + "1976" + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kullīyāt-i Saudā" + ], + "shelfMark": [ + "*OKTX 82-5167" + ], + "numItemVolumesParsed": [ + 2 + ], + "creatorLiteral": [ + "Saudā, Mirzā Muḥammad Rafiʻ, 1713-1781." + ], + "createdString": [ + "1973" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ṣiddīqī, Muḥammad Shamsuddīn." + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 82-5167" + }, + { + "type": "nypl:Bnumber", + "value": "10000149" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000097-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100097" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200148" + } + ], + "idOclc": [ + "NYPG001000097-B" + ], + "dateEndYear": [ + 1976 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Lāhaur : Majlis-i Taraqqī-i Adab, 1973-1976." + ], + "identifier": [ + "urn:bnum:10000149", + "urn:oclc:NYPG001000097-B", + "urn:undefined:NNSZ00100097", + "urn:undefined:(WaOLN)nyp0200148" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Kullīyāt-i Saudā / murattabah-yi Muḥammad Shamsuddīn Ṣiddīqī." + ], + "uri": "b10000149", + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "placeOfPublication": [ + "Lāhaur" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Jild-i 1. Ghazaliyyāt.--Jild-i 2. Qaṣāʼid." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000149" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 2, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 1 + }, + "_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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-5167 v. 2" + ], + "identifierV2": [ + { + "value": "*OKTX 82-5167 v. 2", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004673160" + } + ], + "enumerationChronology": [ + "v. 2" + ], + "physicalLocation": [ + "*OKTX 82-5167" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004673160" + ], + "idBarcode": [ + "33433004673160" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-5167 v. 000002" + }, + "sort": [ + " 2-" + ] + }, + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 82-5167 v. 1" + ], + "identifierV2": [ + { + "value": "*OKTX 82-5167 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004673152" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OKTX 82-5167" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004673152" + ], + "idBarcode": [ + "33433004673152" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 82-5167 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000150", + "_score": null, + "_source": { + "extent": [ + "270 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Maktab al-Tijārī lil-Ṭibāʻah wa-al-Tawzīʻ wa-al-Nashr, 196-]" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1969" + ], + "createdYear": [ + 1960 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Min al-Yaman" + ], + "shelfMark": [ + "*OFA 82-4408" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Shāmī, Aḥmad Muḥammad, 1924-" + ], + "createdString": [ + "1960" + ], + "idLccn": [ + "ne 66000571" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1960 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFA 82-4408" + }, + { + "type": "nypl:Bnumber", + "value": "10000150" + }, + { + "type": "bf:Lccn", + "value": "ne 66000571" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000098-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100098" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200149" + } + ], + "idOclc": [ + "NYPG001000098-B" + ], + "dateEndYear": [ + 1969 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[Bayrūt, al-Maktab al-Tijārī lil-Ṭibāʻah wa-al-Tawzīʻ wa-al-Nashr, 196-]" + ], + "identifier": [ + "urn:bnum:10000150", + "urn:lccn:ne 66000571", + "urn:oclc:NYPG001000098-B", + "urn:undefined:NNSZ00100098", + "urn:undefined:(WaOLN)nyp0200149" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Min al-Yaman, shiʻr Aḥmad Muḥammad al-Shāmī." + ], + "uri": "b10000150", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000150" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000081", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OFA 82-4408" + ], + "identifierV2": [ + { + "value": "*OFA 82-4408", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002000598" + } + ], + "physicalLocation": [ + "*OFA 82-4408" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002000598" + ], + "idBarcode": [ + "33433002000598" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OFA 82-004408" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000151", + "_score": null, + "_source": { + "extent": [ + "9, 158 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Muslim saints" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Maktab al-Islāmī" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Furqān bayna awliyāʼ al-Raḥmān wa-awliyāʼ al-Shayṭān" + ], + "shelfMark": [ + "*OGL 82-4418" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ibn Taymīyah, Aḥmad ibn ʻAbd al-Ḥalīm, 1263-1328." + ], + "createdString": [ + "1971" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGL 82-4418" + }, + { + "type": "nypl:Bnumber", + "value": "10000151" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000099-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100099" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200150" + } + ], + "idOclc": [ + "NYPG001000099-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Bayrūt : al-Maktab al-Islāmī, [1971]" + ], + "identifier": [ + "urn:bnum:10000151", + "urn:oclc:NYPG001000099-B", + "urn:undefined:NNSZ00100099", + "urn:undefined:(WaOLN)nyp0200150" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Muslim saints." + ], + "titleDisplay": [ + "al-Furqān bayna awliyāʼ al-Raḥmān wa-awliyāʼ al-Shayṭān / taʼlīf Shaykh al-Islām Ibn Taymīyah." + ], + "uri": "b10000151", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Bayrūt" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000151" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858034", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGL 82-4418" + ], + "identifierV2": [ + { + "value": "*OGL 82-4418", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058069497" + } + ], + "physicalLocation": [ + "*OGL 82-4418" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058069497" + ], + "idBarcode": [ + "33433058069497" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGL 82-004418" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000152", + "_score": null, + "_source": { + "extent": [ + "[iv] 92, xi [1] p. port." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Kailāsaṃra Iṅglīṣ nāṭakagaḷu. [Lēkhaka] Ji. Es. Amūra:\" p. [73]-92.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bi. Es. Rāmarāv" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ēkalavya." + ], + "shelfMark": [ + "*OLA 83-693" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kailāsaṃ, Ṭī. Pi., 1885-1948." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "73925571" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Rāmarāv, B. S." + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-693" + }, + { + "type": "nypl:Bnumber", + "value": "10000152" + }, + { + "type": "bf:Lccn", + "value": "73925571" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000100-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100100" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200151" + } + ], + "idOclc": [ + "NYPG001000100-B" + ], + "uniformTitle": [ + "Purpose. Kannada" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Beṅgaḷūru, Bi. Es. Rāmarāv [1969]" + ], + "identifier": [ + "urn:bnum:10000152", + "urn:lccn:73925571", + "urn:oclc:NYPG001000100-B", + "urn:undefined:NNSZ00100100", + "urn:undefined:(WaOLN)nyp0200151" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Ēkalavya. Mūla Kailāsaṃ avara Iṅgliṣina ʻPurpose.ʼ Anuvāda Bi. Es. Rāmarāv. Pariṣkaraṇa: ʻŚriraṅgaʼ[sic]" + ], + "uri": "b10000152", + "lccClassification": [ + "PR9480.9.K32 P814" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "titleAlt": [ + "Purpose." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000152" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000082", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 83-693" + ], + "identifierV2": [ + { + "value": "*OLA 83-693", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013125202" + } + ], + "physicalLocation": [ + "*OLA 83-693" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013125202" + ], + "idBarcode": [ + "33433013125202" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 83-000693" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000153", + "_score": null, + "_source": { + "extent": [ + "69, 472 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 471-472.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sufism", + "Sufism -- Early works to 1800" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yanbūʻ al-asrār fī naṣāʼiḥ al-abrār : taʼlīf shudah bi-sāl-i 832 Hijrī Qamarī" + ], + "shelfMark": [ + "*OMQ 83-4676" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Khvārazmī, Kamāl al-Dīn Ḥusayn." + ], + "createdString": [ + "1981" + ], + "seriesStatement": [ + "Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī ; 7" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Dirakhshān, Mahdī." + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 83-4676" + }, + { + "type": "nypl:Bnumber", + "value": "10000153" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000101-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100101" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200152" + } + ], + "idOclc": [ + "NYPG001000101-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tihrān : Intishārāt-i Anjuman-i Ustādān-i Zabān va Adabīyāt-i Fārsī, 1360 [1981]" + ], + "identifier": [ + "urn:bnum:10000153", + "urn:oclc:NYPG001000101-B", + "urn:undefined:NNSZ00100101", + "urn:undefined:(WaOLN)nyp0200152" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sufism -- Early works to 1800." + ], + "titleDisplay": [ + "Yanbūʻ al-asrār fī naṣāʼiḥ al-abrār : taʼlīf shudah bi-sāl-i 832 Hijrī Qamarī / taʼlīf-i Kamāl al-Dīn Ḥusayn Khvārazmī ; bi-ihtimām-i Mahdī Dirakhshān." + ], + "uri": "b10000153", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000153" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000083", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMQ 83-4676" + ], + "identifierV2": [ + { + "value": "*OMQ 83-4676", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013145382" + } + ], + "physicalLocation": [ + "*OMQ 83-4676" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013145382" + ], + "idBarcode": [ + "33433013145382" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMQ 83-004676" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000154", + "_score": null, + "_source": { + "extent": [ + "26, 117 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rshabhadeva" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Śrī Vivēkōdaya Granthamāle" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āditīrthankara Rṣabhadēva." + ], + "shelfMark": [ + "*OLA 83-4815" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Anna Rao Appanna, Mirji, 1918-" + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72903657" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-4815" + }, + { + "type": "nypl:Bnumber", + "value": "10000154" + }, + { + "type": "bf:Lccn", + "value": "72903657" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000102-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100102" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200153" + } + ], + "idOclc": [ + "NYPG001000102-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Guḍibaṇḍe, Kōlārajille, Śrī Vivēkōdaya Granthamāle [1971]" + ], + "identifier": [ + "urn:bnum:10000154", + "urn:lccn:72903657", + "urn:oclc:NYPG001000102-B", + "urn:undefined:NNSZ00100102", + "urn:undefined:(WaOLN)nyp0200153" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rshabhadeva." + ], + "titleDisplay": [ + "Āditīrthankara Rṣabhadēva. [Lēkhaka] Mirji Aṇṇārāya." + ], + "uri": "b10000154", + "lccClassification": [ + "BL1373.R7 A66" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Guḍibaṇḍe, Kōlārajille" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000154" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000084", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 83-4815" + ], + "identifierV2": [ + { + "value": "*OLA 83-4815", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012996868" + } + ], + "physicalLocation": [ + "*OLA 83-4815" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012996868" + ], + "idBarcode": [ + "33433012996868" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 83-004815" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000155", + "_score": null, + "_source": { + "extent": [ + "270 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jāḥiẓ, -868 or 869", + "Jāḥiẓ, -868 or 869 -- Knowledge", + "Jāḥiẓ, -868 or 869 -- Knowledge -- Folklore", + "Jāḥiẓ, -868 or 869 -- Mythology" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Wizārah" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1976 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Mawrūth al-shaʻbī fī āthār al-Jāḥiẓ i : muʻjam mufahras" + ], + "shelfMark": [ + "*OEM 83-4899" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Markaz al-Fūlklurī al-ʻIrāqī." + ], + "createdString": [ + "1976" + ], + "idLccn": [ + "78971085" + ], + "seriesStatement": [ + "Silsilat al-maʻājim wa-al-fahāris ; 10" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1976 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OEM 83-4899" + }, + { + "type": "nypl:Bnumber", + "value": "10000155" + }, + { + "type": "bf:Lccn", + "value": "78971085" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000103-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100103" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200154" + } + ], + "idOclc": [ + "NYPG001000103-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[Baghdād] : al-Wizārah, [1976]" + ], + "identifier": [ + "urn:bnum:10000155", + "urn:lccn:78971085", + "urn:oclc:NYPG001000103-B", + "urn:undefined:NNSZ00100103", + "urn:undefined:(WaOLN)nyp0200154" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jāḥiẓ, -868 or 869 -- Knowledge -- Folklore.", + "Jāḥiẓ, -868 or 869 -- Mythology." + ], + "titleDisplay": [ + "al-Mawrūth al-shaʻbī fī āthār al-Jāḥiẓ i : muʻjam mufahras / aṣdarahu al-Markaz al-fulklūrī al-ʻIrāqī, Wizārat al-Iʻlām." + ], + "uri": "b10000155", + "lccClassification": [ + "PJ7745.J3 Z785" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Baghdād]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000155" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000085", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OEM 83-4899" + ], + "identifierV2": [ + { + "value": "*OEM 83-4899", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001925001" + } + ], + "physicalLocation": [ + "*OEM 83-4899" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001925001" + ], + "idBarcode": [ + "33433001925001" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OEM 83-004899" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000156", + "_score": null, + "_source": { + "extent": [ + "10, 9 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Additions and corrections in MS.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter in Sanskrit or English.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindu gods", + "Hindu hymns, Sanskrit" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Go. Venkaṭarāmaśāstri]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + ], + "shelfMark": [ + "*OLY 83-4674" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "75902648" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Lakshmikantaiah, Garikapati, 1900-" + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" + }, + { + "type": "nypl:Bnumber", + "value": "10000156" + }, + { + "type": "bf:Lccn", + "value": "75902648" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000104-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100104" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200155" + } + ], + "idOclc": [ + "NYPG001000104-B" + ], + "uniformTitle": [ + "Aṣṭakapañcaka" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[S.l. : Go. Venkaṭarāmaśāstri], 1972." + ], + "identifier": [ + "urn:bnum:10000156", + "urn:lccn:75902648", + "urn:oclc:NYPG001000104-B", + "urn:undefined:NNSZ00100104", + "urn:undefined:(WaOLN)nyp0200155" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindu gods.", + "Hindu hymns, Sanskrit." + ], + "titleDisplay": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari / praṇetā Garikapāṭi Lakshmīkāntaḥ." + ], + "uri": "b10000156", + "lccClassification": [ + "BL1216 .L34" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l." + ], + "titleAlt": [ + "Aṣṭakapañcaka", + "Jaladhijānandalaharī." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000156" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060370396" + ], + "physicalLocation": [ + "*OLY 83-4674" + ], + "shelfMark_sort": "a*OLY 83-004674", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783803", + "shelfMark": [ + "*OLY 83-4674" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" + }, + { + "type": "bf:Barcode", + "value": "33433060370396" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060370396" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000157", + "_score": null, + "_source": { + "extent": [ + "342 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Prophets in the Qurʼan" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dār al-shaʻb" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1970 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Anbiyāʼ fī al-Qurʼān al-karīm" + ], + "shelfMark": [ + "*OGDM 83-4900" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sharqāwī, Maḥmūd." + ], + "createdString": [ + "1970" + ], + "idLccn": [ + "75961943" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1970 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGDM 83-4900" + }, + { + "type": "nypl:Bnumber", + "value": "10000157" + }, + { + "type": "bf:Lccn", + "value": "75961943" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000105-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100105" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200156" + } + ], + "idOclc": [ + "NYPG001000105-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "al-Qāhirah, Dār al-shaʻb [1970]" + ], + "identifier": [ + "urn:bnum:10000157", + "urn:lccn:75961943", + "urn:oclc:NYPG001000105-B", + "urn:undefined:NNSZ00100105", + "urn:undefined:(WaOLN)nyp0200156" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1970" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Prophets in the Qurʼan." + ], + "titleDisplay": [ + "al-Anbiyāʼ fī al-Qurʼān al-karīm [taʼlīf] Maḥmūd al-Sharqāwī." + ], + "uri": "b10000157", + "lccClassification": [ + "BP134.P745 S5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "al-Qāhirah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000157" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000086", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGDM 83-4900" + ], + "identifierV2": [ + { + "value": "*OGDM 83-4900", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433005577659" + } + ], + "physicalLocation": [ + "*OGDM 83-4900" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433005577659" + ], + "idBarcode": [ + "33433005577659" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGDM 83-004900" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000158", + "_score": null, + "_source": { + "extent": [ + "241, [27] p. : port. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Śrīnātha, active 1400-1440", + "Śrīnātha, active 1400-1440 -- Criticism and interpretation" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tammayya" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Śrīnāthamahākavi" + ], + "shelfMark": [ + "*OLC 83-4816" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Thammaiah, Bandaru, 1891-1970." + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "79901118" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-4816" + }, + { + "type": "nypl:Bnumber", + "value": "10000158" + }, + { + "type": "bf:Lccn", + "value": "79901118" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000106-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100106" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200157" + } + ], + "idOclc": [ + "NYPG001000106-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Kākināḍa : Tammayya, 1968." + ], + "identifier": [ + "urn:bnum:10000158", + "urn:lccn:79901118", + "urn:oclc:NYPG001000106-B", + "urn:undefined:NNSZ00100106", + "urn:undefined:(WaOLN)nyp0200157" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Śrīnātha, active 1400-1440 -- Criticism and interpretation." + ], + "titleDisplay": [ + "Śrīnāthamahākavi / granthakarta Baṇḍāru Tamayya." + ], + "uri": "b10000158", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kākināḍa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000158" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLC 83-4816" + ], + "identifierV2": [ + { + "value": "*OLC 83-4816", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004689307" + } + ], + "physicalLocation": [ + "*OLC 83-4816" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004689307" + ], + "idBarcode": [ + "33433004689307" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLC 83-004816" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000159", + "_score": null, + "_source": { + "extent": [ + "64 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tales, Kannada" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Āśā Sāhitya" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jānapada kathālōka" + ], + "shelfMark": [ + "*OLA 83-4817" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902609" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Srikripananda Basavani, 1933-" + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-4817" + }, + { + "type": "nypl:Bnumber", + "value": "10000159" + }, + { + "type": "bf:Lccn", + "value": "75902609" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000107-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100107" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200158" + } + ], + "idOclc": [ + "NYPG001000107-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Beṅgaḷūru : Āśā Sāhitya, 1974." + ], + "identifier": [ + "urn:bnum:10000159", + "urn:lccn:75902609", + "urn:oclc:NYPG001000107-B", + "urn:undefined:NNSZ00100107", + "urn:undefined:(WaOLN)nyp0200158" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tales, Kannada." + ], + "titleDisplay": [ + "Jānapada kathālōka / Krpānanda." + ], + "uri": "b10000159", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Beṅgaḷūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000159" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000088", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 83-4817" + ], + "identifierV2": [ + { + "value": "*OLA 83-4817", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012996876" + } + ], + "physicalLocation": [ + "*OLA 83-4817" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012996876" + ], + "idBarcode": [ + "33433012996876" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 83-004817" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000160", + "_score": null, + "_source": { + "extent": [ + "143 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil literature", + "Tamil literature -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Paḻaṉiyappā Piratars" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Ilakkiya nayam" + ], + "shelfMark": [ + "*OLB 83-4818" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Irācāmaṇi, R." + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "75908529" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-4818" + }, + { + "type": "nypl:Bnumber", + "value": "10000160" + }, + { + "type": "bf:Lccn", + "value": "75908529" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000108-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100108" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200159" + } + ], + "idOclc": [ + "NYPG001000108-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Ceṉṉai : Paḻaṉiyappā Piratars, [1966]." + ], + "identifier": [ + "urn:bnum:10000160", + "urn:lccn:75908529", + "urn:oclc:NYPG001000108-B", + "urn:undefined:NNSZ00100108", + "urn:undefined:(WaOLN)nyp0200159" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil literature -- History and criticism." + ], + "titleDisplay": [ + "Ilakkiya nayam / [Eḻutiyavar] Ra. Irācāmaṇi." + ], + "uri": "b10000160", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000160" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783804", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-4818" + ], + "identifierV2": [ + { + "value": "*OLB 83-4818", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299065" + } + ], + "physicalLocation": [ + "*OLB 83-4818" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299065" + ], + "idBarcode": [ + "33433061299065" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-004818" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000161", + "_score": null, + "_source": { + "extent": [ + "xiv, 71 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Title on t.p. verso: Manitha soroobangal.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Short stories.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Civaṉ Kalvi Nilaiya Veḷiyīṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Maṉita coṟūpaṅkaḷ : paṉṉiru ciṟu kataikaḷ" + ], + "shelfMark": [ + "*OLB 83-4819" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kohila Mahendiran." + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83900649" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-4819" + }, + { + "type": "nypl:Bnumber", + "value": "10000161" + }, + { + "type": "bf:Lccn", + "value": "83900649" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000109-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100109" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200160" + } + ], + "idOclc": [ + "NYPG001000109-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "[Tellippalai] : Civaṉ Kalvi Nilaiya Veḷiyīṭu, 1982." + ], + "identifier": [ + "urn:bnum:10000161", + "urn:lccn:83900649", + "urn:oclc:NYPG001000109-B", + "urn:undefined:NNSZ00100109", + "urn:undefined:(WaOLN)nyp0200160" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Maṉita coṟūpaṅkaḷ : paṉṉiru ciṟu kataikaḷ / Kōkilā Makēntiraṉ." + ], + "uri": "b10000161", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Tellippalai]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000161" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783805", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-4819" + ], + "identifierV2": [ + { + "value": "*OLB 83-4819", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299073" + } + ], + "physicalLocation": [ + "*OLB 83-4819" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299073" + ], + "idBarcode": [ + "33433061299073" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-004819" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000162", + "_score": null, + "_source": { + "extent": [ + "x, 96 p. (p. 95-96 advertisements)" + ], + "note": [ + { + "noteType": "Note", + "label": "Running title: Candrahāsa nāṭaka samīkṣe.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "On page 96: x + 96 = 106.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Kannada.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kuvempu, 1904-1994" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Pampa Prakāśạna" + ], + "language": [ + { + "id": "lang:kan", + "label": "Kannada" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Mahākavi Kuvempu avara Candrahāsa nāṭaka samīkṣe." + ], + "shelfMark": [ + "*OLA 83-4864" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Vasantakumār, Maḷali." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72902165" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLA 83-4864" + }, + { + "type": "nypl:Bnumber", + "value": "10000162" + }, + { + "type": "bf:Lccn", + "value": "72902165" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000110-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100110" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200161" + } + ], + "idOclc": [ + "NYPG001000110-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Maisūru, Pampa Prakāśạna [1971]" + ], + "identifier": [ + "urn:bnum:10000162", + "urn:lccn:72902165", + "urn:oclc:NYPG001000110-B", + "urn:undefined:NNSZ00100110", + "urn:undefined:(WaOLN)nyp0200161" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kuvempu, 1904-1994." + ], + "titleDisplay": [ + "Mahākavi Kuvempu avara Candrahāsa nāṭaka samīkṣe. Sampādaka Eṃ. Si. Vasantakumār." + ], + "uri": "b10000162", + "lccClassification": [ + "PL4659.P797 C339" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Maisūru" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Candrahāsa nāṭaka samīkṣe." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000162" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000089", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLA 83-4864" + ], + "identifierV2": [ + { + "value": "*OLA 83-4864", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433012996892" + } + ], + "physicalLocation": [ + "*OLA 83-4864" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433012996892" + ], + "idBarcode": [ + "33433012996892" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLA 83-004864" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000163", + "_score": null, + "_source": { + "extent": [ + "13 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Novelette.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Kalaiñar Patippaka veḷiyīṭu-3.\"", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kalaiñar Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Iruḷiṉ viṭivu : kuṟunāval" + ], + "shelfMark": [ + "*OLB 83-4821" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tāvaiyūr Kāṇṭīpaṉ." + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83900646" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-4821" + }, + { + "type": "nypl:Bnumber", + "value": "10000163" + }, + { + "type": "bf:Lccn", + "value": "83900646" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000111-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100111" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200162" + } + ], + "idOclc": [ + "NYPG001000111-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Tirunelvēli, Yāḻppāṇam : Kalaiñar Patippakam, 1982." + ], + "identifier": [ + "urn:bnum:10000163", + "urn:lccn:83900646", + "urn:oclc:NYPG001000111-B", + "urn:undefined:NNSZ00100111", + "urn:undefined:(WaOLN)nyp0200162" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Iruḷiṉ viṭivu : kuṟunāval / Tāvaiyūr Kāṇṭīpaṉ." + ], + "uri": "b10000163", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirunelvēli, Yāḻppāṇam" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000163" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783806", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-4821" + ], + "identifierV2": [ + { + "value": "*OLB 83-4821", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299099" + } + ], + "physicalLocation": [ + "*OLB 83-4821" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299099" + ], + "idBarcode": [ + "33433061299099" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-004821" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000164", + "_score": null, + "_source": { + "extent": [ + "148 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Kannadhasan, 1927-", + "Kannadhasan, 1927- -- Criticism and interpretation" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Vāṉati Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kaṇṇatācaṉ kavinayam" + ], + "shelfMark": [ + "*OLB 83-4822" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gunasekar, P., 1936-" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900404" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-4822" + }, + { + "type": "nypl:Bnumber", + "value": "10000164" + }, + { + "type": "bf:Lccn", + "value": "76900404" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000112-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100112" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200163" + } + ], + "idOclc": [ + "NYPG001000112-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ceṉṉai : Vāṉati Patippakam, 1975." + ], + "identifier": [ + "urn:bnum:10000164", + "urn:lccn:76900404", + "urn:oclc:NYPG001000112-B", + "urn:undefined:NNSZ00100112", + "urn:undefined:(WaOLN)nyp0200163" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Kannadhasan, 1927- -- Criticism and interpretation." + ], + "titleDisplay": [ + "Kaṇṇatācaṉ kavinayam / Pa. Kuṇacēkar." + ], + "uri": "b10000164", + "lccClassification": [ + "PL4758.9.K327 Z65" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000164" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783807", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-4822" + ], + "identifierV2": [ + { + "value": "*OLB 83-4822", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299107" + } + ], + "physicalLocation": [ + "*OLB 83-4822" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299107" + ], + "idBarcode": [ + "33433061299107" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-004822" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000165", + "_score": null, + "_source": { + "extent": [ + "47, 112 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vaishnavism", + "Vaishnavism -- Prayer books and devotions", + "Vaishnavism -- Prayer books and devotions -- Tamil" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nārāyaṇacāmi Nāyaṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" + ], + "shelfMark": [ + "*OLY 83-4895" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76901471" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Narayanaswami Naidu, Tiruchirrambalam Krishnaswamy, 1906-" + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" + }, + { + "type": "nypl:Bnumber", + "value": "10000165" + }, + { + "type": "bf:Lccn", + "value": "76901471" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000113-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100113" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200164" + } + ], + "idOclc": [ + "NYPG001000113-B" + ], + "uniformTitle": [ + "Nālāyirat tivviyap pirapantam. Selections." + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Kaṭalūr : Nārāyaṇacāmi Nāyaṭu, 1975." + ], + "identifier": [ + "urn:bnum:10000165", + "urn:lccn:76901471", + "urn:oclc:NYPG001000113-B", + "urn:undefined:NNSZ00100113", + "urn:undefined:(WaOLN)nyp0200164" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vaishnavism -- Prayer books and devotions -- Tamil." + ], + "titleDisplay": [ + "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ / [Tokuppāciriyar Ti. Ki. Nārāyaṇacāmi Nāyaṭu]." + ], + "uri": "b10000165", + "lccClassification": [ + "BL1245.V3 N28 1975" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kaṭalūr" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000165" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419649" + ], + "physicalLocation": [ + "*OLY 83-4895" + ], + "shelfMark_sort": "a*OLY 83-004895", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783808", + "shelfMark": [ + "*OLY 83-4895" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" + }, + { + "type": "bf:Barcode", + "value": "33433060419649" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419649" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000166", + "_score": null, + "_source": { + "extent": [ + "328, 8 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sufism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dānishgāh-i Tihrān, Dānishkadah-ʼi ʻUlūm-i Maʻqūl va Manqūl" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1962 + ], + "type": [ + "nypl:Item" + ], + "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" + ], + "shelfMark": [ + "*OMQ 84-154" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥakīm, Muḥammad ʻAlī." + ], + "createdString": [ + "1962" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1962 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OMQ 84-154" + }, + { + "type": "nypl:Bnumber", + "value": "10000166" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000114-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100114" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200165" + } + ], + "idOclc": [ + "NYPG001000114-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Tihrān : Dānishgāh-i Tihrān, Dānishkadah-ʼi ʻUlūm-i Maʻqūl va Manqūl, 1340 [1962]" + ], + "identifier": [ + "urn:bnum:10000166", + "urn:oclc:NYPG001000114-B", + "urn:undefined:NNSZ00100114", + "urn:undefined:(WaOLN)nyp0200165" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sufism." + ], + "titleDisplay": [ + "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 / taʼlīf-i Muḥammad ʻAlī Ḥakīm." + ], + "uri": "b10000166", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000166" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000090", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OMQ 84-154 " + ], + "identifierV2": [ + { + "value": "*OMQ 84-154 ", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013145390" + } + ], + "physicalLocation": [ + "*OMQ 84-154 " + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013145390" + ], + "idBarcode": [ + "33433013145390" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OMQ 84-154 " + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000167", + "_score": null, + "_source": { + "extent": [ + "4, 261 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Persian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Islamic civilization" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Chakāmah" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "ʻUlūm-i Islāmī dar qarn-i avval-i Hijrī" + ], + "shelfMark": [ + "*OGC 84-151" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Manṣūrī, Ẕabīḥ Allāh." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGC 84-151" + }, + { + "type": "nypl:Bnumber", + "value": "10000167" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000115-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100115" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200166" + } + ], + "idOclc": [ + "NYPG001000115-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Tihrān : Nashr-i Chakāmah, 1362 [1983]" + ], + "identifier": [ + "urn:bnum:10000167", + "urn:oclc:NYPG001000115-B", + "urn:undefined:NNSZ00100115", + "urn:undefined:(WaOLN)nyp0200166" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Islamic civilization." + ], + "titleDisplay": [ + "ʻUlūm-i Islāmī dar qarn-i avval-i Hijrī / nivishtah-ʼi Ẕabīḥ Allāh Manṣūrī." + ], + "uri": "b10000167", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000167" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12540042", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OGC 84-151" + ], + "identifierV2": [ + { + "value": "*OGC 84-151", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433022691053" + } + ], + "physicalLocation": [ + "*OGC 84-151" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433022691053" + ], + "idBarcode": [ + "33433022691053" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OGC 84-000151" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000168", + "_score": null, + "_source": { + "extent": [ + "83 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title on p. facing t.p.: Kerala Panineeyam, chila anubandhachinthakal.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rajaraja Varma, A. R., 1863-1918", + "Malayalam language", + "Malayalam language -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Mīrākkuṭṭi ; vitaraṇaṃ, Nāṣanal Bukksṯāḷ" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kēraḷapāṇinīyaṃ, cila anubandhacintakaḷ : paṭhanaṃ" + ], + "shelfMark": [ + "*OLD 84-110" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Mīrākkuṭṭi, Pi., 1930-" + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "82906730" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-110" + }, + { + "type": "nypl:Bnumber", + "value": "10000168" + }, + { + "type": "bf:Lccn", + "value": "82906730" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000116-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100116" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200167" + } + ], + "idOclc": [ + "NYPG001000116-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[S.l.] : Mīrākkuṭṭi ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Bukksṯāḷ, 1982." + ], + "identifier": [ + "urn:bnum:10000168", + "urn:lccn:82906730", + "urn:oclc:NYPG001000116-B", + "urn:undefined:NNSZ00100116", + "urn:undefined:(WaOLN)nyp0200167" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rajaraja Varma, A. R., 1863-1918.", + "Malayalam language -- History and criticism." + ], + "titleDisplay": [ + "Kēraḷapāṇinīyaṃ, cila anubandhacintakaḷ : paṭhanaṃ / Pi. Mīrākkuṭṭi." + ], + "uri": "b10000168", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[S.l.] : Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000168" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000091", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 84-110" + ], + "identifierV2": [ + { + "value": "*OLD 84-110", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011098963" + } + ], + "physicalLocation": [ + "*OLD 84-110" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011098963" + ], + "idBarcode": [ + "33433011098963" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 84-000110" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000169", + "_score": null, + "_source": { + "extent": [ + "xii, 639 p. : ill., fold. map. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [635]-639.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamils", + "Tamils -- Social life and customs", + "South Arcot (India)", + "South Arcot (India) -- Social life and customs" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "viṟpaṉai urimai, Tirunelvēli Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Keṭilakkarai nākarikam" + ], + "shelfMark": [ + "*OLB 84-112" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Cuntara Caṇmukaṉār, 1922-" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900317" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-112" + }, + { + "type": "nypl:Bnumber", + "value": "10000169" + }, + { + "type": "bf:Lccn", + "value": "76900317" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000117-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100117" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200168" + } + ], + "idOclc": [ + "NYPG001000117-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Ceṉṉai : viṟpaṉai urimai, Tirunelvēli Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam, 1975." + ], + "identifier": [ + "urn:bnum:10000169", + "urn:lccn:76900317", + "urn:oclc:NYPG001000117-B", + "urn:undefined:NNSZ00100117", + "urn:undefined:(WaOLN)nyp0200168" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamils -- Social life and customs.", + "South Arcot (India) -- Social life and customs." + ], + "titleDisplay": [ + "Keṭilakkarai nākarikam / Āciriyar Cuntara Caṇmukaṉār." + ], + "uri": "b10000169", + "lccClassification": [ + "DS432.T3 S95" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000169" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783809", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-112" + ], + "identifierV2": [ + { + "value": "*OLB 84-112", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299735" + } + ], + "physicalLocation": [ + "*OLB 84-112" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299735" + ], + "idBarcode": [ + "33433061299735" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-000112" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000170", + "_score": null, + "_source": { + "extent": [ + "ix, 488 p., [6] leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Perunthamizh: the third ten days' seminar papers.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Organized by the Dept. of Tamil, Madras University.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tamil philology", + "Tamil philology -- Congresses" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ceṉṉai Palkalaik Kaḻaka Veḷiyīṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Peruṅkāppiyac ciṟṟilakkiyap peruntamiḻ : mūṉṟām Potunilaip Pattunāḷ Karuttāyvaraṅkak kaṭṭuraikaḷ" + ], + "shelfMark": [ + "*OLB 84-105" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Potunilaip Pattunāḷ Karuttaraṅku (3rd : 1974 : University of Madras, India)" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76901454" + ], + "seriesStatement": [ + "Ceṉṉaip Palkalaik Kaḻakat Tamiḻt Tuṟai veḷiyīṭu ; 37" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Cañcīvi, Na., 1927-", + "University of Madras. Tamil Department." + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-105" + }, + { + "type": "nypl:Bnumber", + "value": "10000170" + }, + { + "type": "bf:Lccn", + "value": "76901454" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000118-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100118" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200169" + } + ], + "idOclc": [ + "NYPG001000118-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[Ceṉṉai] : Ceṉṉai Palkalaik Kaḻaka Veḷiyīṭu, 1975." + ], + "identifier": [ + "urn:bnum:10000170", + "urn:lccn:76901454", + "urn:oclc:NYPG001000118-B", + "urn:undefined:NNSZ00100118", + "urn:undefined:(WaOLN)nyp0200169" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tamil philology -- Congresses." + ], + "titleDisplay": [ + "Peruṅkāppiyac ciṟṟilakkiyap peruntamiḻ : mūṉṟām Potunilaip Pattunāḷ Karuttāyvaraṅkak kaṭṭuraikaḷ / Potup patippāciriyar, Na. Cañcīvi ; utavi, Tamiḻttuṟai āciriyarkaḷum māṇavarkaḷum." + ], + "uri": "b10000170", + "lccClassification": [ + "PL4751 .P73 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Ceṉṉai]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000170" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783810", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-105" + ], + "identifierV2": [ + { + "value": "*OLB 84-105", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299719" + } + ], + "physicalLocation": [ + "*OLB 84-105" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299719" + ], + "idBarcode": [ + "33433061299719" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-000105" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000171", + "_score": null, + "_source": { + "extent": [ + "261p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "At the head of title: Haykakan SSH Gitutʻyunneri Akademia Patmutʻian Institut.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added title page : Dvizhenie dzhelaliev i polozhenie arm︠i︡anskogo naroda v Osmanskoĭ imperii (XVI-XVII veka).", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 221-226.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Summary in Russian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jellali Insurrections", + "Turkey", + "Turkey -- History", + "Turkey -- History -- 1453-1683", + "Armenia", + "Armenia -- History", + "Armenia -- History -- 1522-1800" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Haykakan SSH GA Hratarakchʻutʻyun" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Jalalineri sharzhumě ev Hay zhoghovrdi vichake Osmanian Kaysrutʻian mej (XVI-XVII darer)" + ], + "shelfMark": [ + "*ONQ 84-119" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Zulalyan, M. K. (Manvel Karapeti)" + ], + "createdString": [ + "1966" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONQ 84-119" + }, + { + "type": "nypl:Bnumber", + "value": "10000171" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000119-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100119" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200170" + } + ], + "idOclc": [ + "NYPG001000119-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Erevan : Haykakan SSH GA Hratarakchʻutʻyun" + ], + "identifier": [ + "urn:bnum:10000171", + "urn:oclc:NYPG001000119-B", + "urn:undefined:NNSZ00100119", + "urn:undefined:(WaOLN)nyp0200170" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jellali Insurrections.", + "Turkey -- History -- 1453-1683.", + "Armenia -- History -- 1522-1800." + ], + "titleDisplay": [ + "Jalalineri sharzhumě ev Hay zhoghovrdi vichake Osmanian Kaysrutʻian mej (XVI-XVII darer) / M.K. Zulalian." + ], + "uri": "b10000171", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Erevan" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Dvizhenie dzhelaliev i polozhenie arm︠i︡anskogo naroda v Osmanskoĭ imperii (XVI-XVII veka)." + ], + "dimensions": [ + "22cm." + ] + }, + "sort": [ + "b10000171" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000092", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*ONQ 84-119" + ], + "identifierV2": [ + { + "value": "*ONQ 84-119", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001889223" + } + ], + "physicalLocation": [ + "*ONQ 84-119" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001889223" + ], + "idBarcode": [ + "33433001889223" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ONQ 84-000119" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000172", + "_score": null, + "_source": { + "extent": [ + "225p. : [2] facsims. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p. in Russian.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Head of title: \"Matenadaran\" Haykakan SSH Ministrneri Sovetin aṛĕntʻer Mashtotsʻi anvan hin dzeṛagreri institut.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Armenian.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Armenian language, Classical", + "Armenian language, Classical -- Grammar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Haykakan SSH GA Hratarakchutʻyun" + ], + "language": [ + { + "id": "lang:arm", + "label": "Armenian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1977 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Haghags ḳerakani" + ], + "shelfMark": [ + "*ONL 84-118" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Hovhannes, Ḳṛnetsʻi, active 14th century." + ], + "createdString": [ + "1977" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Khachʻikyan, L. S. (Levon Stepʻani), 1918-1982.", + "Avagian, S. A." + ], + "dateStartYear": [ + 1977 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ONL 84-118" + }, + { + "type": "nypl:Bnumber", + "value": "10000172" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000120-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100120" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200171" + } + ], + "idOclc": [ + "NYPG001000120-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Erevan : Haykakan SSH GA Hratarakchutʻyun, 1977." + ], + "identifier": [ + "urn:bnum:10000172", + "urn:oclc:NYPG001000120-B", + "urn:undefined:NNSZ00100120", + "urn:undefined:(WaOLN)nyp0200171" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Armenian language, Classical -- Grammar." + ], + "titleDisplay": [ + "Haghags ḳerakani / Hovhannes Ḳṛnetsʻi. Bnagire hratarakutʻian patrastetsʻ L.S. Khachʻikianĕ. Neratsutʻyunĕ L.S. Khachʻikiani ev S.A. Avagiani." + ], + "uri": "b10000172", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Erevan" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + "b10000172" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000093", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*ONL 84-118" + ], + "identifierV2": [ + { + "value": "*ONL 84-118", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433013020924" + } + ], + "physicalLocation": [ + "*ONL 84-118" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433013020924" + ], + "idBarcode": [ + "33433013020924" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*ONL 84-000118" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000173", + "_score": null, + "_source": { + "extent": [ + "520 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Navadhāra" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1980 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kāṭṭāḷan" + ], + "shelfMark": [ + "*OLD 84-113" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Manōj." + ], + "createdString": [ + "1980" + ], + "idLccn": [ + "82903306" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1980 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-113" + }, + { + "type": "nypl:Bnumber", + "value": "10000173" + }, + { + "type": "bf:Lccn", + "value": "82903306" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000121-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100121" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200172" + } + ], + "idOclc": [ + "NYPG001000121-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Tiruvanantapuram : Navadhāra, 1980." + ], + "identifier": [ + "urn:bnum:10000173", + "urn:lccn:82903306", + "urn:oclc:NYPG001000121-B", + "urn:undefined:NNSZ00100121", + "urn:undefined:(WaOLN)nyp0200172" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Kāṭṭāḷan / Manoj." + ], + "uri": "b10000173", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tiruvanantapuram" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000173" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000094", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 84-113" + ], + "identifierV2": [ + { + "value": "*OLD 84-113", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011098971" + } + ], + "physicalLocation": [ + "*OLD 84-113" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011098971" + ], + "idBarcode": [ + "33433011098971" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 84-000113" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000174", + "_score": null, + "_source": { + "extent": [ + "xvi, 232 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Dictionary of dialectal usages, courtesy-language and culture of Kerala Brahmins.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title on page facing t.p.. :Namboodiribhasha sabdakosham.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Malayalam language", + "Malayalam language -- Terms and phrases" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Visnunampūtiri ; Nāṣanal Bukksṯāḷ" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nampūtiribhāṣā śabdakōśaṃ" + ], + "shelfMark": [ + "*OLD 84-116" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Viṣṇunampūtiri, Eṃ. Vi." + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83900738" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-116" + }, + { + "type": "nypl:Bnumber", + "value": "10000174" + }, + { + "type": "bf:Lccn", + "value": "83900738" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000122-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100122" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200173" + } + ], + "idOclc": [ + "NYPG001000122-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "[Rāmantaḷi] : Visnunampūtiri ; Kōṭṭayaṃ : Nāṣanal Bukksṯāḷ 1982." + ], + "identifier": [ + "urn:bnum:10000174", + "urn:lccn:83900738", + "urn:oclc:NYPG001000122-B", + "urn:undefined:NNSZ00100122", + "urn:undefined:(WaOLN)nyp0200173" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Malayalam language -- Terms and phrases." + ], + "titleDisplay": [ + "Nampūtiribhāṣā śabdakōśaṃ / Eṃ. Vi. Viṣṇunampūtiri." + ], + "uri": "b10000174", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Rāmantaḷi] : Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000174" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000095", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 84-116" + ], + "identifierV2": [ + { + "value": "*OLD 84-116", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011098989" + } + ], + "physicalLocation": [ + "*OLD 84-116" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011098989" + ], + "idBarcode": [ + "33433011098989" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 84-000116" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000175", + "_score": null, + "_source": { + "extent": [ + "15,111 p. : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Persian and Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit language", + "Sanskrit language -- Self-instruction" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Shirkat-i Dānish" + ], + "language": [ + { + "id": "lang:per", + "label": "Persian" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1983" + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Khud'āmūz-i zabān-i Sanskrīt" + ], + "shelfMark": [ + "*OKE 84-115" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ḥasanī Dāʻī al-Islāmī, Muḥammad ʻAlī." + ], + "createdString": [ + "1982" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKE 84-115" + }, + { + "type": "nypl:Bnumber", + "value": "10000175" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000123-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100123" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200174" + } + ], + "idOclc": [ + "NYPG001000123-B" + ], + "dateEndYear": [ + 1983 + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Tihrān : Shirkat-i Dānish, 1361 [1982 or 1983]" + ], + "identifier": [ + "urn:bnum:10000175", + "urn:oclc:NYPG001000123-B", + "urn:undefined:NNSZ00100123", + "urn:undefined:(WaOLN)nyp0200174" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit language -- Self-instruction." + ], + "titleDisplay": [ + "Khud'āmūz-i zabān-i Sanskrīt / taʼlīf-i Muḥammad ʻAlī Ḥasanī Dāʻī al-Islāmī." + ], + "uri": "b10000175", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + "b10000175" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i12858035", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKE 84-115" + ], + "identifierV2": [ + { + "value": "*OKE 84-115", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058552856" + } + ], + "physicalLocation": [ + "*OKE 84-115" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058552856" + ], + "idBarcode": [ + "33433058552856" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKE 84-000115" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000176", + "_score": null, + "_source": { + "extent": [ + "44, 286 p., [4] leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p. in English.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit; introductory matter and paraphrase in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Raj Singh, Maharana of Mewar, 1629-1680", + "Raj Singh, Maharana of Mewar, 1629-1680 -- Poetry" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sāhitya saṃsthāna, Rājasthāna Vidyāpīṭha" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rājapraśastiḥ mahākāvyam" + ], + "shelfMark": [ + "*OKP 84-84" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Raṇachoḍabhaṭṭa, active 1661-1681." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "75902395" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Menaria, Moti Lal, 1905-" + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-84" + }, + { + "type": "nypl:Bnumber", + "value": "10000176" + }, + { + "type": "bf:Lccn", + "value": "75902395" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000124-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100124" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200175" + } + ], + "idOclc": [ + "NYPG001000124-B" + ], + "uniformTitle": [ + "Rājapraśasti" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Udayapura : Sāhitya saṃsthāna, Rājasthāna Vidyāpīṭha, 1973." + ], + "identifier": [ + "urn:bnum:10000176", + "urn:lccn:75902395", + "urn:oclc:NYPG001000124-B", + "urn:undefined:NNSZ00100124", + "urn:undefined:(WaOLN)nyp0200175" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Raj Singh, Maharana of Mewar, 1629-1680 -- Poetry." + ], + "titleDisplay": [ + "Rājapraśastiḥ mahākāvyam / Raṇachoṛabhaṭṭa praṇītam ; sampādaka Motilāla Menāriyā." + ], + "uri": "b10000176", + "lccClassification": [ + "PK3798.R2872 R3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura" + ], + "titleAlt": [ + "Rājapraśasti", + "Rājapraśasti." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000176" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783811", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-84" + ], + "identifierV2": [ + { + "value": "*OKP 84-84", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153408" + } + ], + "physicalLocation": [ + "*OKP 84-84" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153408" + ], + "idBarcode": [ + "33433058153408" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-000084" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000177", + "_score": null, + "_source": { + "extent": [ + "4, 4, 354 p. col. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [349]-354.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Rām Sanehīs" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Rāmasnehī Sāhitya Śodha Saṃsthāna" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." + ], + "shelfMark": [ + "*OLY 84-85" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Pāṇḍeya, Śivāśaṅkara, 1935-" + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "74901467" + ], + "seriesStatement": [ + "Rāmasnehī sāhitya śodha saṃsthāna, pushpa 1" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-85" + }, + { + "type": "nypl:Bnumber", + "value": "10000177" + }, + { + "type": "bf:Lccn", + "value": "74901467" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000125-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100125" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200176" + } + ], + "idOclc": [ + "NYPG001000125-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Dillī, Rāmasnehī Sāhitya Śodha Saṃsthāna [1973]" + ], + "identifier": [ + "urn:bnum:10000177", + "urn:lccn:74901467", + "urn:oclc:NYPG001000125-B", + "urn:undefined:NNSZ00100125", + "urn:undefined:(WaOLN)nyp0200176" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Rām Sanehīs." + ], + "titleDisplay": [ + "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi. Lekhaka Śivāśaṅkara Pāṇḍeya." + ], + "uri": "b10000177", + "lccClassification": [ + "BL1245.R35 P36" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000177" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060419680" + ], + "physicalLocation": [ + "*OLY 84-85" + ], + "shelfMark_sort": "a*OLY 84-000085", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783812", + "shelfMark": [ + "*OLY 84-85" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 84-85" + }, + { + "type": "bf:Barcode", + "value": "33433060419680" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060419680" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000178", + "_score": null, + "_source": { + "extent": [ + "16, 440 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Kāśī Hindū Viśvavidyālaya kī Pī. ech. Ḍī. upādhi ke lie svīkrta śodha prabandha.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [436]-440.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindi poetry", + "Hindi poetry -- History and criticism", + "Bhakti in literature" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Abhinava Bhārati Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hindī Krshṇabhakti sāhitya meṃ madhurabhāva kī upāsanā." + ], + "shelfMark": [ + "*OKTM 84-81" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rai, Purnamasi, 1928-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74901757" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-81" + }, + { + "type": "nypl:Bnumber", + "value": "10000178" + }, + { + "type": "bf:Lccn", + "value": "74901757" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000126-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100126" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200177" + } + ], + "idOclc": [ + "NYPG001000126-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Ilāhābāda, Abhinava Bhārati Prakāśana [1974]" + ], + "identifier": [ + "urn:bnum:10000178", + "urn:lccn:74901757", + "urn:oclc:NYPG001000126-B", + "urn:undefined:NNSZ00100126", + "urn:undefined:(WaOLN)nyp0200177" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindi poetry -- History and criticism.", + "Bhakti in literature." + ], + "titleDisplay": [ + "Hindī Krshṇabhakti sāhitya meṃ madhurabhāva kī upāsanā. [Lekhaka] Pūrṇamāsī Rāya." + ], + "uri": "b10000178", + "lccClassification": [ + "PK2040 .R33" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ilāhābāda" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000178" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942053", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-81" + ], + "identifierV2": [ + { + "value": "*OKTM 84-81", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011093949" + } + ], + "physicalLocation": [ + "*OKTM 84-81" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011093949" + ], + "idBarcode": [ + "33433011093949" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-000081" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000179", + "_score": null, + "_source": { + "extent": [ + "126 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Series romanized: Śrīrāmavarmma granthāvali.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Added t.p. in English: Kalakeyavadham.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Libretto for thullal, a variation of the kathakali dance drama of Kerala.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Malayalam.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ottanthullal", + "Dance", + "Dance -- Kerala", + "Kathakali" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Malayāḷasāhityanidhi, Kēraḷa Sāhitya Akkādami ; vitaraṇaṃ, Nāṣanal Buksṯṯāḷ" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Kālakēyavadhaṃ : śītaṅkantuḷḷal" + ], + "shelfMark": [ + "*MGS (Hindu) 84-117" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Dāmōdaran Nampūtiri, Pūntōttattu, 1815-1865." + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "78900937" + ], + "seriesStatement": [ + "Sṟīrāmavarmma granthāvali" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*MGS (Hindu) 84-117" + }, + { + "type": "nypl:Bnumber", + "value": "10000179" + }, + { + "type": "bf:Lccn", + "value": "78900937" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000127-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100127" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200178" + } + ], + "idOclc": [ + "NYPG001000127-B" + ], + "updatedAt": 1690381457572, + "publicationStatement": [ + "[Trśśūr] : Malayāḷasāhityanidhi, Kēraḷa Sāhitya Akkādami ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Buksṯṯāḷ, 1975." + ], + "identifier": [ + "urn:bnum:10000179", + "urn:lccn:78900937", + "urn:oclc:NYPG001000127-B", + "urn:undefined:NNSZ00100127", + "urn:undefined:(WaOLN)nyp0200178" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ottanthullal", + "Dance -- Kerala.", + "Kathakali." + ], + "titleDisplay": [ + "Kālakēyavadhaṃ : śītaṅkantuḷḷal / Granthakarttā Puntōṭṭattu Dāmōdaran Nampūtiri." + ], + "uri": "b10000179", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Trśśūr] : Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000179" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i14746410", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:pad32", + "label": "Performing Arts Research Collections - Dance" + } + ], + "holdingLocation_packed": [ + "loc:pad32||Performing Arts Research Collections - Dance" + ], + "shelfMark": [ + "*MGS (Hindu) 84-117" + ], + "identifierV2": [ + { + "value": "*MGS (Hindu) 84-117", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433093040370" + } + ], + "physicalLocation": [ + "*MGS (Hindu) 84-117" + ], + "identifier": [ + "urn:barcode:33433093040370" + ], + "idBarcode": [ + "33433093040370" + ], + "requestable": [ + false + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*MGS (Hindu) 84-000117" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000180", + "_score": null, + "_source": { + "extent": [ + "95 p. ;" + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Putumaip Piracuram" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vitiyō? Vīṇaiyō?" + ], + "shelfMark": [ + "*OLB 84-102" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Tamiḻoḷi." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72908855" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Iḷaṅkōvaṭikaḷ." + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-102" + }, + { + "type": "nypl:Bnumber", + "value": "10000180" + }, + { + "type": "bf:Lccn", + "value": "72908855" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000128-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100128" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200179" + } + ], + "idOclc": [ + "NYPG001000128-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Ceṉṉai : Putumaip Piracuram, [1971]" + ], + "identifier": [ + "urn:bnum:10000180", + "urn:lccn:72908855", + "urn:oclc:NYPG001000128-B", + "urn:undefined:NNSZ00100128", + "urn:undefined:(WaOLN)nyp0200179" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Vitiyō? Vīṇaiyō? / Kaviñar Tamiḻoḷi ; muṉṉurai : A. Citamparanātaṉ." + ], + "uri": "b10000180", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000180" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783813", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-102" + ], + "identifierV2": [ + { + "value": "*OLB 84-102", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299701" + } + ], + "physicalLocation": [ + "*OLB 84-102" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299701" + ], + "idBarcode": [ + "33433061299701" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-000102" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000181", + "_score": null, + "_source": { + "extent": [ + "104 p. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title on p. facing t.p.: Inside Singhbhum of Bihar.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Mēri Jōsna", + "Social workers", + "Social workers -- Kerala", + "Social workers -- Kerala -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Kaṟanṯ Buks" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1981 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Simhabhūmiyil : yātṟāvivaraṇaṃ" + ], + "shelfMark": [ + "*OLD 84-103" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Kuryan Pāmpāṭi, 1941-" + ], + "createdString": [ + "1981" + ], + "idLccn": [ + "82904779" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1981 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-103" + }, + { + "type": "nypl:Bnumber", + "value": "10000181" + }, + { + "type": "bf:Lccn", + "value": "82904779" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000129-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100129" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200180" + } + ], + "idOclc": [ + "NYPG001000129-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Kōṭṭayaṃ : Kaṟanṯ Buks, 1981." + ], + "identifier": [ + "urn:bnum:10000181", + "urn:lccn:82904779", + "urn:oclc:NYPG001000129-B", + "urn:undefined:NNSZ00100129", + "urn:undefined:(WaOLN)nyp0200180" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Mēri Jōsna.", + "Social workers -- Kerala -- Biography." + ], + "titleDisplay": [ + "Simhabhūmiyil : yātṟāvivaraṇaṃ / Kuryan Pāmpāṭi." + ], + "uri": "b10000181", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Inside Singhbhum of Bihar." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000181" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000096", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 84-103" + ], + "identifierV2": [ + { + "value": "*OLD 84-103", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011098955" + } + ], + "physicalLocation": [ + "*OLD 84-103" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011098955" + ], + "idBarcode": [ + "33433011098955" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 84-000103" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000182", + "_score": null, + "_source": { + "extent": [ + "5, v, 281 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Viśvavidyālaya-starīya grantha-nirmāṇa-yojanā ke antargata ... prakāśita.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [275]-281.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindi poetry", + "Hindi poetry -- 1947-", + "Hindi poetry -- 1947- -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bihāra Hindī Grantha Akādamī" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Naī kavitā, udbhava aura vikāsa" + ], + "shelfMark": [ + "*OKTM 84-86" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rāya, Rāma Vacana." + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "75902264" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-86" + }, + { + "type": "nypl:Bnumber", + "value": "10000182" + }, + { + "type": "bf:Lccn", + "value": "75902264" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000130-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100130" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200181" + } + ], + "idOclc": [ + "NYPG001000130-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Patanā : Bihāra Hindī Grantha Akādamī, 1974." + ], + "identifier": [ + "urn:bnum:10000182", + "urn:lccn:75902264", + "urn:oclc:NYPG001000130-B", + "urn:undefined:NNSZ00100130", + "urn:undefined:(WaOLN)nyp0200181" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindi poetry -- 1947- -- History and criticism." + ], + "titleDisplay": [ + "Naī kavitā, udbhava aura vikāsa / lekhaka Rāmavacana Rāya." + ], + "uri": "b10000182", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Patanā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000182" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942054", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-86" + ], + "identifierV2": [ + { + "value": "*OKTM 84-86", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011093956" + } + ], + "physicalLocation": [ + "*OKTM 84-86" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011093956" + ], + "idBarcode": [ + "33433011093956" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-000086" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000183", + "_score": null, + "_source": { + "extent": [ + "680, [1] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "In Malayalam.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: P. 681.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Malayalam language", + "Malayalam language -- Idioms" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sāhityapṟavarttaka Sahakaraṇasaṅghaṃ : Nāṣanal Bukksṯāḷ" + ], + "language": [ + { + "id": "lang:mal", + "label": "Malayalam" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1982 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Apaśabdabodhini" + ], + "shelfMark": [ + "*OLD 84-90" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Damodaran Nair, P., 1913-" + ], + "createdString": [ + "1982" + ], + "idLccn": [ + "83901968" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1982 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLD 84-90" + }, + { + "type": "nypl:Bnumber", + "value": "10000183" + }, + { + "type": "bf:Lccn", + "value": "83901968" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000131-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100131" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200182" + } + ], + "idOclc": [ + "NYPG001000131-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Kōṭṭayaṃ : Sāhityapṟavarttaka Sahakaraṇasaṅghaṃ : Nāṣanal Bukksṯāḷ, 1982." + ], + "identifier": [ + "urn:bnum:10000183", + "urn:lccn:83901968", + "urn:oclc:NYPG001000131-B", + "urn:undefined:NNSZ00100131", + "urn:undefined:(WaOLN)nyp0200182" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1982" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Malayalam language -- Idioms." + ], + "titleDisplay": [ + "Apaśabdabodhini / Pi. Dāmōdarannāyar." + ], + "uri": "b10000183", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kōṭṭayaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000183" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000097", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLD 84-90" + ], + "identifierV2": [ + { + "value": "*OLD 84-90", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011098930" + } + ], + "physicalLocation": [ + "*OLD 84-90" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011098930" + ], + "idBarcode": [ + "33433011098930" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLD 84-000090" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000184", + "_score": null, + "_source": { + "extent": [ + "18, 343 p. facsims., ports." + ], + "note": [ + { + "noteType": "Note", + "label": "Reviews of the author's works: p. 16-18.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Singh, Bhagat" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bhāratīya Jñānapīṭha Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1968 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Yugadrashṭā Bhagata Siṃha aura una ke mrtyuñjaya purakhe." + ], + "shelfMark": [ + "*OKTO 84-164" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sindhu, Virendra, 1940-" + ], + "createdString": [ + "1968" + ], + "idLccn": [ + "75901954" + ], + "seriesStatement": [ + "Lokodaya granthamālā, granthaṅka 268" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1968 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTO 84-164" + }, + { + "type": "nypl:Bnumber", + "value": "10000184" + }, + { + "type": "bf:Lccn", + "value": "75901954" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000132-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100132" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200183" + } + ], + "idOclc": [ + "NYPG001000132-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[Vārāṇasī] Bhāratīya Jñānapīṭha Prakāśana [1968]" + ], + "identifier": [ + "urn:bnum:10000184", + "urn:lccn:75901954", + "urn:oclc:NYPG001000132-B", + "urn:undefined:NNSZ00100132", + "urn:undefined:(WaOLN)nyp0200183" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Singh, Bhagat." + ], + "titleDisplay": [ + "Yugadrashṭā Bhagata Siṃha aura una ke mrtyuñjaya purakhe. Lekhikā Vīrendra Sindhu. Bhūmikā: Yaśavantarāva Cahvāṇa." + ], + "uri": "b10000184", + "lccClassification": [ + "DS481.S55 S5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Vārāṇasī]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000184" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000098", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTO 84-164" + ], + "identifierV2": [ + { + "value": "*OKTO 84-164", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011049917" + } + ], + "physicalLocation": [ + "*OKTO 84-164" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011049917" + ], + "idBarcode": [ + "33433011049917" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTO 84-000164" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000185", + "_score": null, + "_source": { + "extent": [ + "xiv, 259 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"'Periya Purāṇattil uvamaikaḷʼ eṉṉum āyvuk kaṭṭuraiyiṉai mutukalaippaṭṭat tērviṉ oru pakutiyākat tantuḷḷār. Avvārāyccik kaṭṭuraiyē ... āyvu nūlāka ippoḻutu veḷivarukiṉṟatu.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 255-259.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cēkkiḻār, active 12th century" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sankari ; viṟpaṉai urimai, Jeyakumāri Sṭōrs" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1975 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Periya purāṇattil uvamaikaḷ" + ], + "shelfMark": [ + "*OLB 84-92" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Sankari, A., 1950-" + ], + "createdString": [ + "1975" + ], + "idLccn": [ + "76900433" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 84-92" + }, + { + "type": "nypl:Bnumber", + "value": "10000185" + }, + { + "type": "bf:Lccn", + "value": "76900433" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000133-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100133" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200184" + } + ], + "idOclc": [ + "NYPG001000133-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Ayinkamam : Sankari ; Nākarkōvil : viṟpaṉai urimai, Jeyakumāri Sṭōrs, 1975." + ], + "identifier": [ + "urn:bnum:10000185", + "urn:lccn:76900433", + "urn:oclc:NYPG001000133-B", + "urn:undefined:NNSZ00100133", + "urn:undefined:(WaOLN)nyp0200184" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cēkkiḻār, active 12th century." + ], + "titleDisplay": [ + "Periya purāṇattil uvamaikaḷ / A. Caṅkari." + ], + "uri": "b10000185", + "lccClassification": [ + "PL4758.9.C385 P479" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ayinkamam : Nākarkōvil" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000185" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783814", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 84-92" + ], + "identifierV2": [ + { + "value": "*OLB 84-92", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061299693" + } + ], + "physicalLocation": [ + "*OLB 84-92" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061299693" + ], + "idBarcode": [ + "33433061299693" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 84-000092" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000186", + "_score": null, + "_source": { + "extent": [ + "15, 146 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vedic language", + "Vedic language -- Pronunciation", + "Vedic language -- Accents and accentuation" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Vaidika Sāhitya Sadana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vaidika-svara-bodha." + ], + "shelfMark": [ + "*OKTH 84-163" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Caube, Vrajabihārī, 1940-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "72902691" + ], + "seriesStatement": [ + "Vaidika sāhitya sadana granthamālā, pushpa 2" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTH 84-163" + }, + { + "type": "nypl:Bnumber", + "value": "10000186" + }, + { + "type": "bf:Lccn", + "value": "72902691" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000134-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100134" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200185" + } + ], + "idOclc": [ + "NYPG001000134-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Hośiyārapura, Vaidika Sāhitya Sadana, 1972." + ], + "identifier": [ + "urn:bnum:10000186", + "urn:lccn:72902691", + "urn:oclc:NYPG001000134-B", + "urn:undefined:NNSZ00100134", + "urn:undefined:(WaOLN)nyp0200185" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vedic language -- Pronunciation.", + "Vedic language -- Accents and accentuation." + ], + "titleDisplay": [ + "Vaidika-svara-bodha. Lekhaka Vrajabihārī Caube." + ], + "uri": "b10000186", + "lccClassification": [ + "PK243 .C5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Hośiyārapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000186" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000099", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTH 84-163" + ], + "identifierV2": [ + { + "value": "*OKTH 84-163", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010762189" + } + ], + "physicalLocation": [ + "*OKTH 84-163" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010762189" + ], + "idBarcode": [ + "33433010762189" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTH 84-000163" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000187", + "_score": null, + "_source": { + "extent": [ + "535 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Added t.p.: Azărbaĭjanja-Farsja lüghăt [by] Măhămmăd Peĭfun.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "p.[375]-381: Jughrāfī ādlār-nāmhā-yi jughrāfiyāʼī.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "p. [383]-535: Fihrist-i vāzhigān bā āvā'nivīsī-i Āẕarbāyjānī.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Persian and Azerbaijani.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Azerbaijani language", + "Azerbaijani language -- Dictionaries", + "Azerbaijani language -- Dictionaries -- Persian" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Nashr-i Dānishpāyah" + ], + "language": [ + { + "id": "lang:aze", + "label": "Azerbaijani" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1983 + ], + "type": [ + "nypl:Item" + ], + "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ī" + ], + "shelfMark": [ + "*OOX 84-178" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Payfun, Muḥammad." + ], + "createdString": [ + "1983" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OOX 84-178" + }, + { + "type": "nypl:Bnumber", + "value": "10000187" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000135-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100135" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200186" + } + ], + "idOclc": [ + "NYPG001000135-B" + ], + "updatedAt": 1674870755402, + "publicationStatement": [ + "Tihrān : Nashr-i Dānishpāyah, 1361 [1983]" + ], + "identifier": [ + "urn:bnum:10000187", + "urn:oclc:NYPG001000135-B", + "urn:undefined:NNSZ00100135", + "urn:undefined:(WaOLN)nyp0200186" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Azerbaijani language -- Dictionaries -- Persian." + ], + "titleDisplay": [ + "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ī / Muḥammad Payfun." + ], + "uri": "b10000187", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tihrān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Azărbaĭjanja-Farsja lüghăt." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000187" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000100", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OOX 84-178" + ], + "identifierV2": [ + { + "value": "*OOX 84-178", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433001718323" + } + ], + "physicalLocation": [ + "*OOX 84-178" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433001718323" + ], + "idBarcode": [ + "33433001718323" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OOX 84-000178" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000188", + "_score": null, + "_source": { + "extent": [ + "160 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Urdu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bahār Urdū Ākādimī" + ], + "language": [ + { + "id": "lang:urd", + "label": "Urdu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Intikhāb-i kalām-i kulliyyāt-i Muntaẓar, (nuskhah-yi Nadvat al-ʻUlamāʼ Lakhav)" + ], + "shelfMark": [ + "*OKTX 84-150" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Muntaẓar Lakhnavī, Nūrulislām, 1769?-1806?" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903706" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Kutub Ḵẖȧnah Nadvat al Ulamaʻ." + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTX 84-150" + }, + { + "type": "nypl:Bnumber", + "value": "10000188" + }, + { + "type": "bf:Lccn", + "value": "74903706" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000136-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100136" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200187" + } + ], + "idOclc": [ + "NYPG001000136-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Paṭnah, Bahār Urdū Ākādimī [1974]" + ], + "identifier": [ + "urn:bnum:10000188", + "urn:lccn:74903706", + "urn:oclc:NYPG001000136-B", + "urn:undefined:NNSZ00100136", + "urn:undefined:(WaOLN)nyp0200187" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Intikhāb-i kalām-i kulliyyāt-i Muntaẓar, (nuskhah-yi Nadvat al-ʻUlamāʼ Lakhav) [Shāʻir] Nūrulislām Muntaẓar Lakhnav̄. Murattabah-yi Shamsī Nadvī." + ], + "uri": "b10000188", + "lccClassification": [ + "PK2198.M874 I58" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Paṭnah" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000188" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942055", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTX 84-150" + ], + "identifierV2": [ + { + "value": "*OKTX 84-150", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433015458726" + } + ], + "physicalLocation": [ + "*OKTX 84-150" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433015458726" + ], + "idBarcode": [ + "33433015458726" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTX 84-000150" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000189", + "_score": null, + "_source": { + "extent": [ + "5, 227 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Dillī Viśvavidyālaya se Pīeca. Ḍī kī upādhi ke lie svīkrta śodha prabandha kā parivartita tathā parivardhita rūpa.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p.[220]-227.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hindi language", + "Hindi language -- Vocabulary", + "Hindi language -- Etymology" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Neśanala Pabḷiśiṅga Hāusa" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hindī meṃ deśaja śabda." + ], + "shelfMark": [ + "*OKTH 84-155" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Daḅāsa, Pūrṇasiṃha, 1938-" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73903281" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTH 84-155" + }, + { + "type": "nypl:Bnumber", + "value": "10000189" + }, + { + "type": "bf:Lccn", + "value": "73903281" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000137-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100137" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200188" + } + ], + "idOclc": [ + "NYPG001000137-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Dillī, Neśanala Pabḷiśiṅga Hāusa [1972]" + ], + "identifier": [ + "urn:bnum:10000189", + "urn:lccn:73903281", + "urn:oclc:NYPG001000137-B", + "urn:undefined:NNSZ00100137", + "urn:undefined:(WaOLN)nyp0200188" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hindi language -- Vocabulary.", + "Hindi language -- Etymology." + ], + "titleDisplay": [ + "Hindī meṃ deśaja śabda. [Lekhaka] Pūrṇasiṃha Ḍabāsa. Bhūmikā Bholānātha Tivārī." + ], + "uri": "b10000189", + "lccClassification": [ + "PK1939 .D24" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Dillī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000189" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000101", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTH 84-155" + ], + "identifierV2": [ + { + "value": "*OKTH 84-155", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010762171" + } + ], + "physicalLocation": [ + "*OKTH 84-155" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010762171" + ], + "idBarcode": [ + "33433010762171" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTH 84-000155" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000190", + "_score": null, + "_source": { + "extent": [ + "168 p." + ], + "note": [ + { + "noteType": "Language", + "label": "Hindi and Sanskrit; introductory matter in Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Gītā Presa" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "dateEndString": [ + "1967" + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vidura nīti; Mahābhārata Udyogaparva se." + ], + "shelfMark": [ + "*OKOC 84-137" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "sa 68014141" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKOC 84-137" + }, + { + "type": "nypl:Bnumber", + "value": "10000190" + }, + { + "type": "bf:Lccn", + "value": "sa 68014141" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000138-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100138" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200189" + } + ], + "idOclc": [ + "NYPG001000138-B" + ], + "uniformTitle": [ + "Mahābhārata. Udyogaparva Viduranīti." + ], + "dateEndYear": [ + 1967 + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Gorakhapura, Gītā Presa [1966 or 7]" + ], + "identifier": [ + "urn:bnum:10000190", + "urn:lccn:sa 68014141", + "urn:oclc:NYPG001000138-B", + "urn:undefined:NNSZ00100138", + "urn:undefined:(WaOLN)nyp0200189" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Vidura nīti; Mahābhārata Udyogaparva se." + ], + "uri": "b10000190", + "lccClassification": [ + "PK3631 .U32 1966" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Gorakhapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000190" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783815", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKOC 84-137" + ], + "identifierV2": [ + { + "value": "*OKOC 84-137", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058630249" + } + ], + "physicalLocation": [ + "*OKOC 84-137" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058630249" + ], + "idBarcode": [ + "33433058630249" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKOC 84-000137" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000191", + "_score": null, + "_source": { + "extent": [ + "482 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title: Hindī Krshṇa kāvya.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Originally presented as the author's thesis, University of Lucknow.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p.[478]-482.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Krishna (Hindu deity) in literature", + "Hindi poetry", + "Hindi poetry -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Aśoka Prakāśana" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Dvārakālīlāparaka Hindī Krshṇa kāvya." + ], + "shelfMark": [ + "*OKTM 84-130" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Caturvedī, Sudhā, 1944-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74902459" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-130" + }, + { + "type": "nypl:Bnumber", + "value": "10000191" + }, + { + "type": "bf:Lccn", + "value": "74902459" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000139-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100139" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200190" + } + ], + "idOclc": [ + "NYPG001000139-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Lakhanaū, Aśoka Prakāśana [1974]" + ], + "identifier": [ + "urn:bnum:10000191", + "urn:lccn:74902459", + "urn:oclc:NYPG001000139-B", + "urn:undefined:NNSZ00100139", + "urn:undefined:(WaOLN)nyp0200190" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Krishna (Hindu deity) in literature.", + "Hindi poetry -- History and criticism." + ], + "titleDisplay": [ + "Dvārakālīlāparaka Hindī Krshṇa kāvya. Lekhikā Sudhā Caturvedī." + ], + "uri": "b10000191", + "lccClassification": [ + "PK2040 .C313 1974" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Lakhanaū" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000191" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942056", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-130" + ], + "identifierV2": [ + { + "value": "*OKTM 84-130", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011093998" + } + ], + "physicalLocation": [ + "*OKTM 84-130" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011093998" + ], + "idBarcode": [ + "33433011093998" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-000130" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000192", + "_score": null, + "_source": { + "extent": [ + "636 p." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [634]-636.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Hindi.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Indic literature", + "Indic literature -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Granthama" + ], + "language": [ + { + "id": "lang:hin", + "label": "Hindi" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1973 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Bhāratīya sāhitya darśana." + ], + "shelfMark": [ + "*OKTM 84-136" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Krishnalal." + ], + "createdString": [ + "1973" + ], + "idLccn": [ + "73902642" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1973 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-136" + }, + { + "type": "nypl:Bnumber", + "value": "10000192" + }, + { + "type": "bf:Lccn", + "value": "73902642" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000140-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100140" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200191" + } + ], + "idOclc": [ + "NYPG001000140-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Kānapura, Granthama [1973]" + ], + "identifier": [ + "urn:bnum:10000192", + "urn:lccn:73902642", + "urn:oclc:NYPG001000140-B", + "urn:undefined:NNSZ00100140", + "urn:undefined:(WaOLN)nyp0200191" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1973" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Indic literature -- History and criticism." + ], + "titleDisplay": [ + "Bhāratīya sāhitya darśana. [Lekhaka] Krshṇalāla Haṃsa." + ], + "uri": "b10000192", + "lccClassification": [ + "PK2903 .K675" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kānapura" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + "b10000192" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10942057", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKTM 84-136" + ], + "identifierV2": [ + { + "value": "*OKTM 84-136", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011094004" + } + ], + "physicalLocation": [ + "*OKTM 84-136" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011094004" + ], + "idBarcode": [ + "33433011094004" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKTM 84-000136" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000193", + "_score": null, + "_source": { + "extent": [ + "8, 242, 5 p., [1] leaf of plates : port. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "No more published.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Sanskrit.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sanskrit poetry", + "Sanskrit poetry -- History and criticism", + "Poetics" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Vyāsabandhu ; prāptisthānam Caukhambā Vidyābhawana]" + ], + "language": [ + { + "id": "lang:san", + "label": "Sanskrit" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1966 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Abhinava-kāvya-prakāśaḥ" + ], + "shelfMark": [ + "*OKP 84-162" + ], + "numItemVolumesParsed": [ + 1 + ], + "creatorLiteral": [ + "Vyāsa, Giridharalāla, 1894-" + ], + "createdString": [ + "1966" + ], + "idLccn": [ + "76902375" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-162" + }, + { + "type": "nypl:Bnumber", + "value": "10000193" + }, + { + "type": "bf:Lccn", + "value": "76902375" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000141-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100141" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200192" + } + ], + "idOclc": [ + "NYPG001000141-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Udayapura : Vyāsabandhu ; [Vāṛāṇasī : prāptisthānam Caukhambā Vidyābhawana], 1966." + ], + "identifier": [ + "urn:bnum:10000193", + "urn:lccn:76902375", + "urn:oclc:NYPG001000141-B", + "urn:undefined:NNSZ00100141", + "urn:undefined:(WaOLN)nyp0200192" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sanskrit poetry -- History and criticism.", + "Poetics." + ], + "titleDisplay": [ + "Abhinava-kāvya-prakāśaḥ / Vyāsopāhṇena Paṇḍitaśrīgovardhanatanujanuṣā Giridharalālena saṃkalitaḥ." + ], + "uri": "b10000193", + "lccClassification": [ + "PK2916 .V93 1966" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Udayapura : [Vāṛāṇasī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm" + ] + }, + "sort": [ + "b10000193" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783816", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKP 84-162 v. 1" + ], + "identifierV2": [ + { + "value": "*OKP 84-162 v. 1", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433058153416" + } + ], + "enumerationChronology": [ + "v. 1" + ], + "physicalLocation": [ + "*OKP 84-162" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433058153416" + ], + "idBarcode": [ + "33433058153416" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKP 84-162 v. 000001" + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000194", + "_score": null, + "_source": { + "extent": [ + "147 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Yam. Śēṣācalaṃ; [distributors: Andhra Pradesh Book Distributors, Secunderabad" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Hampīkanyalu." + ], + "shelfMark": [ + "*OLC 83-2593" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Calaṃ, 1894-1979." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "77908094" + ], + "seriesStatement": [ + "EMESCO pocket books, 86" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-2593" + }, + { + "type": "nypl:Bnumber", + "value": "10000194" + }, + { + "type": "bf:Lccn", + "value": "77908094" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000142-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100142" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200193" + } + ], + "idOclc": [ + "NYPG001000142-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Macilīpaṭnaṃ, Yam. Śēṣācalaṃ; [distributors: Andhra Pradesh Book Distributors, Secunderabad, 1969]" + ], + "identifier": [ + "urn:bnum:10000194", + "urn:lccn:77908094", + "urn:oclc:NYPG001000142-B", + "urn:undefined:NNSZ00100142", + "urn:undefined:(WaOLN)nyp0200193" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Hampīkanyalu. [Racana] Calaṃ." + ], + "uri": "b10000194", + "lccClassification": [ + "PL4780.9.V4 H3" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Macilīpaṭnaṃ" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000194" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000102", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLC 83-2593" + ], + "identifierV2": [ + { + "value": "*OLC 83-2593", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004689018" + } + ], + "physicalLocation": [ + "*OLC 83-2593" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004689018" + ], + "idBarcode": [ + "33433004689018" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLC 83-002593" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000195", + "_score": null, + "_source": { + "extent": [ + "116 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Vālmīki" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1972 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." + ], + "shelfMark": [ + "*OLY 83-2592" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Rāmacāmi, Ī. Ve., Tantai Periyār, 1878-1973." + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "73903633" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" + }, + { + "type": "nypl:Bnumber", + "value": "10000195" + }, + { + "type": "bf:Lccn", + "value": "73903633" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000143-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100143" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200194" + } + ], + "idOclc": [ + "NYPG001000143-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tirucci, Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu [1972]" + ], + "identifier": [ + "urn:bnum:10000195", + "urn:lccn:73903633", + "urn:oclc:NYPG001000143-B", + "urn:undefined:NNSZ00100143", + "urn:undefined:(WaOLN)nyp0200194" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Vālmīki." + ], + "titleDisplay": [ + "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu. [Eḻutiyavar] Periyār Ī. Ve. Rā." + ], + "uri": "b10000195", + "lccClassification": [ + "PK3659 .R34 1972" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tirucci" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000195" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:barcode:33433060418526" + ], + "physicalLocation": [ + "*OLY 83-2592" + ], + "shelfMark_sort": "a*OLY 83-002592", + "m2CustomerCode": [ + "XA" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13783817", + "shelfMark": [ + "*OLY 83-2592" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" + }, + { + "type": "bf:Barcode", + "value": "33433060418526" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060418526" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000196", + "_score": null, + "_source": { + "extent": [ + "96 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "India", + "India -- Politics and government", + "India -- Politics and government -- 1947-" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tirāviṭappaṇṇai" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Paṇattōṭṭam." + ], + "shelfMark": [ + "*OLB 83-2591" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Annadurai, C. N., 1909-1969." + ], + "createdString": [ + "1969" + ], + "idLccn": [ + "79909527" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2591" + }, + { + "type": "nypl:Bnumber", + "value": "10000196" + }, + { + "type": "bf:Lccn", + "value": "79909527" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000144-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100144" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200195" + } + ], + "idOclc": [ + "NYPG001000144-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Tiruccirāppaḷḷi, Tirāviṭappaṇṇai [1969]" + ], + "identifier": [ + "urn:bnum:10000196", + "urn:lccn:79909527", + "urn:oclc:NYPG001000144-B", + "urn:undefined:NNSZ00100144", + "urn:undefined:(WaOLN)nyp0200195" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "India -- Politics and government -- 1947-" + ], + "titleDisplay": [ + "Paṇattōṭṭam. [Eḻutiyavar] C. N. Aṇṇāturai." + ], + "uri": "b10000196", + "lccClassification": [ + "DS480.84 .A76 1969" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Tiruccirāppaḷḷi" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + "b10000196" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783818", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-2591" + ], + "identifierV2": [ + { + "value": "*OLB 83-2591", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061296400" + } + ], + "physicalLocation": [ + "*OLB 83-2591" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061296400" + ], + "idBarcode": [ + "33433061296400" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-002591" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000197", + "_score": null, + "_source": { + "extent": [ + "159 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Cilampuc celvar Ma. Po. Ci. avarkaḷatu 69 - vatu piṟanta nāḷ veḷiyīṭu.\"", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Tamil.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tiruvaḷḷuvar" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Pūṅkoṭi Patippakam" + ], + "language": [ + { + "id": "lang:tam", + "label": "Tamil" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1974 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Tirukkuṟaḷilē kalaipaṟṟik kūṟātatēṉ?" + ], + "shelfMark": [ + "*OLB 83-2587" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Civañāṉam, Ma. Po., 1906-" + ], + "createdString": [ + "1974" + ], + "idLccn": [ + "74903607" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-2587" + }, + { + "type": "nypl:Bnumber", + "value": "10000197" + }, + { + "type": "bf:Lccn", + "value": "74903607" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000145-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100145" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200196" + } + ], + "idOclc": [ + "NYPG001000145-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Ceṉṉai, Pūṅkoṭi Patippakam [1974]" + ], + "identifier": [ + "urn:bnum:10000197", + "urn:lccn:74903607", + "urn:oclc:NYPG001000145-B", + "urn:undefined:NNSZ00100145", + "urn:undefined:(WaOLN)nyp0200196" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tiruvaḷḷuvar." + ], + "titleDisplay": [ + "Tirukkuṟaḷilē kalaipaṟṟik kūṟātatēṉ? [Eḻutiyavar] Ma. Po. Civañāṉam." + ], + "uri": "b10000197", + "lccClassification": [ + "PL4758.9.T5 S54" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Ceṉṉai" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + "b10000197" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i13783819", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLB 83-2587" + ], + "identifierV2": [ + { + "value": "*OLB 83-2587", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433061296392" + } + ], + "physicalLocation": [ + "*OLB 83-2587" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433061296392" + ], + "idBarcode": [ + "33433061296392" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLB 83-002587" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000198", + "_score": null, + "_source": { + "extent": [ + "96 p." + ], + "note": [ + { + "noteType": "Language", + "label": "In Telugu.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Si. Vi. Krṣṇā Bukḍipō" + ], + "language": [ + { + "id": "lang:tel", + "label": "Telugu" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Vēmanapadyaratnamulu." + ], + "shelfMark": [ + "*OLC 83-2645" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Vēmana." + ], + "createdString": [ + "1967" + ], + "idLccn": [ + "73907881" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLC 83-2645" + }, + { + "type": "nypl:Bnumber", + "value": "10000198" + }, + { + "type": "bf:Lccn", + "value": "73907881" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000146-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100146" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200197" + } + ], + "idOclc": [ + "NYPG001000146-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Madarāsu, Si. Vi. Krṣṇā Bukḍipō [1967]" + ], + "identifier": [ + "urn:bnum:10000198", + "urn:lccn:73907881", + "urn:oclc:NYPG001000146-B", + "urn:undefined:NNSZ00100146", + "urn:undefined:(WaOLN)nyp0200197" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Vēmanapadyaratnamulu." + ], + "uri": "b10000198", + "lccClassification": [ + "PL4780.9.V38 V5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Madarāsu" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + "b10000198" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000103", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OLC 83-2645" + ], + "identifierV2": [ + { + "value": "*OLC 83-2645", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433004689042" + } + ], + "physicalLocation": [ + "*OLC 83-2645" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433004689042" + ], + "idBarcode": [ + "33433004689042" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OLC 83-002645" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000199", + "_score": null, + "_source": { + "extent": [ + "32 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Bengali.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sāhitya" + ], + "language": [ + { + "id": "lang:ben", + "label": "Bengali" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nijera bipakshe." + ], + "shelfMark": [ + "*OKV 83-2643" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Haque, Samsul, 1937-" + ], + "createdString": [ + "1965" + ], + "idLccn": [ + "sa 65006162" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKV 83-2643" + }, + { + "type": "nypl:Bnumber", + "value": "10000199" + }, + { + "type": "bf:Lccn", + "value": "sa 65006162" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000147-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100147" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200198" + } + ], + "idOclc": [ + "NYPG001000147-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "Kalakātā, Sāhitya [1965]" + ], + "identifier": [ + "urn:bnum:10000199", + "urn:lccn:sa 65006162", + "urn:oclc:NYPG001000147-B", + "urn:undefined:NNSZ00100147", + "urn:undefined:(WaOLN)nyp0200198" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Nijera bipakshe. [Lekhaka] Sāmasula Haka." + ], + "uri": "b10000199", + "lccClassification": [ + "PK1718" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Kalakātā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000199" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000104", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OKV 83-2643" + ], + "identifierV2": [ + { + "value": "*OKV 83-2643", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011439092" + } + ], + "physicalLocation": [ + "*OKV 83-2643" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011439092" + ], + "idBarcode": [ + "33433011439092" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OKV 83-002643" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000200", + "_score": null, + "_source": { + "extent": [ + "102 p." + ], + "note": [ + { + "noteType": "Note", + "label": "A novel.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Assamese.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Laẏārcha Buka Shṭala" + ], + "language": [ + { + "id": "lang:asm", + "label": "Assamese" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1963 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nirupāya, nirupāya." + ], + "shelfMark": [ + "*OYE 83-2641" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Dāsa, Yogeśa, 1927-" + ], + "createdString": [ + "1963" + ], + "idLccn": [ + "sa 64006442" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1963 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OYE 83-2641" + }, + { + "type": "nypl:Bnumber", + "value": "10000200" + }, + { + "type": "bf:Lccn", + "value": "sa 64006442" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000148-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100148" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200199" + } + ], + "idOclc": [ + "NYPG001000148-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Guwāhāṭī, Laẏārcha Buka Shṭala [1963]" + ], + "identifier": [ + "urn:bnum:10000200", + "urn:lccn:sa 64006442", + "urn:oclc:NYPG001000148-B", + "urn:undefined:NNSZ00100148", + "urn:undefined:(WaOLN)nyp0200199" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Nirupāya, nirupāya. [Likhaka] Yogeśa Dāsa." + ], + "uri": "b10000200", + "lccClassification": [ + "PK1569.D2 N5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Guwāhāṭī" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000200" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000105", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OYE 83-2641" + ], + "identifierV2": [ + { + "value": "*OYE 83-2641", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433011486549" + } + ], + "physicalLocation": [ + "*OYE 83-2641" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433011486549" + ], + "idBarcode": [ + "33433011486549" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OYE 83-002641" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000201", + "_score": null, + "_source": { + "extent": [ + "58 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Plays.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Assamese.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:asm", + "label": "Assamese" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1964 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Nimātīra māta." + ], + "shelfMark": [ + "*OYE 83-2642" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Das, Kandarpa, 1941-" + ], + "createdString": [ + "1964" + ], + "idLccn": [ + "sa 66006179" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1964 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OYE 83-2642" + }, + { + "type": "nypl:Bnumber", + "value": "10000201" + }, + { + "type": "bf:Lccn", + "value": "sa 66006179" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000149-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100149" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200200" + } + ], + "idOclc": [ + "NYPG001000149-B" + ], + "updatedAt": 1674870759272, + "publicationStatement": [ + "[Barapeṭā, 1964]" + ], + "identifier": [ + "urn:bnum:10000201", + "urn:lccn:sa 66006179", + "urn:oclc:NYPG001000149-B", + "urn:undefined:NNSZ00100149", + "urn:undefined:(WaOLN)nyp0200200" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Nimātīra māta. [Likhaka] Kandarpa Dāsa." + ], + "uri": "b10000201", + "lccClassification": [ + "PK1569.D223 N5" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Barapeṭā" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + "b10000201" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000106", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OYE 83-2642" + ], + "identifierV2": [ + { + "value": "*OYE 83-2642", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433010171373" + } + ], + "physicalLocation": [ + "*OYE 83-2642" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433010171373" + ], + "idBarcode": [ + "33433010171373" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OYE 83-002642" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10000202", + "_score": null, + "_source": { + "extent": [ + "2 v." + ], + "note": [ + { + "noteType": "Note", + "label": "Title page of v.2 bears subtitle only.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Arabic literature", + "Arabic literature -- Iraq", + "Arabic literature -- Iraq -- History and criticism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Maktabat al-Andalus" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1971 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "al-Fann al-Qaṣaṣī fī al-adab al-ʻIrāqī al-ḥadīth" + ], + "shelfMark": [ + "*OEM 83-2834" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Ṭālib, ʻUmar." + ], + "createdString": [ + "1971" + ], + "idLccn": [ + "72218369" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1971 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OEM 83-2834" + }, + { + "type": "nypl:Bnumber", + "value": "10000202" + }, + { + "type": "bf:Lccn", + "value": "72218369" + }, + { + "type": "nypl:Oclc", + "value": "NYPG001000150-B" + }, + { + "type": "bf:Identifier", + "value": "NNSZ00100150" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0200201" + } + ], + "idOclc": [ + "NYPG001000150-B" + ], + "updatedAt": 1674870754295, + "publicationStatement": [ + "Baghdād, Maktabat al-Andalus, 1971." + ], + "identifier": [ + "urn:bnum:10000202", + "urn:lccn:72218369", + "urn:oclc:NYPG001000150-B", + "urn:undefined:NNSZ00100150", + "urn:undefined:(WaOLN)nyp0200201" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1971" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Arabic literature -- Iraq -- History and criticism." + ], + "titleDisplay": [ + "al-Fann al-Qaṣaṣī fī al-adab al-ʻIrāqī al-ḥadīth [taʼlīf]ʻUmar al-Ṭālib." + ], + "uri": "b10000202", + "lccClassification": [ + "PJ8038 .T35" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "Baghdād" + ], + "titleAlt": [ + "Masraḥīyah al-ʻArabīyah fī al-ʻIrāq." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Juzʼ 1. al-Riwāyah al-ʻArabīyah fī al-Irāq.-- Juzʼ 2. al-Masraḥīyah al-ʻArabīyah fī al-ʻIrāq." + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + "b10000202" + ], + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 1, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "uri": "i10000107", + "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" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "shelfMark": [ + "*OEM 83-2834" + ], + "identifierV2": [ + { + "value": "*OEM 83-2834", + "type": "bf:ShelfMark" + }, + { + "type": "bf:Barcode", + "value": "33433002039166" + } + ], + "physicalLocation": [ + "*OEM 83-2834" + ], + "recapCustomerCode": [ + "NA" + ], + "identifier": [ + "urn:barcode:33433002039166" + ], + "idBarcode": [ + "33433002039166" + ], + "requestable": [ + true + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "type": [ + "bf:Item" + ], + "formatLiteral": [ + "Text" + ], + "shelfMark_sort": "a*OEM 83-002834" + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 15:37:01 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "331396", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"from\":100,\"size\":100,\"sort\":[\"uri\"],\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"query\":{\"bool\":{\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":\"100\",\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}}]}}]}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "539" + }, + "timeout": 30000 + }, + "options": {}, + "id": 43 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-fceda164d061c2f414161e43132029cf.json b/test/fixtures/query-fceda164d061c2f414161e43132029cf.json new file mode 100644 index 00000000..04febd7e --- /dev/null +++ b/test/fixtures/query-fceda164d061c2f414161e43132029cf.json @@ -0,0 +1,2741 @@ +{ + "body": { + "took": 487, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 1, + "max_score": 13.494152, + "hits": [ + { + "_index": "resources-2018-04-09", + "_type": "resource", + "_id": "b10833141", + "_score": 13.494152, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Some issues bear also thematic titles.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Harold Ross, 1925-1951; William Shawn, 1951-1987; Robert Gotllieb, 1987-1992, Tina Brown, 1992-1998; David Remnick, 1998-", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 73, no. 1 never published.", + "type": "bf:Note" + }, + { + "noteType": "Supplement", + "label": "Has occasional supplements.", + "type": "bf:Note" + }, + { + "noteType": "Source of Description", + "label": "Vol. 90, no. 24 (Aug. 25, 2014).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began with issue for Feb. 21, 1925." + ], + "subjectLiteral_exploded": [ + "Literature", + "Literature -- Collections", + "Literature -- Collections -- Periodicals", + "Intellectual life", + "Electronic journals", + "New York (N.Y.)", + "New York (N.Y.) -- Intellectual life", + "New York (N.Y.) -- Intellectual life -- Directories", + "New York (State)", + "New York (State) -- New York" + ], + "numItemDatesParsed": [ + 811 + ], + "publisherLiteral": [ + "F-R Pub. Corp.", + "D. Carey", + "Condé Nast Publications" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 816 + ], + "createdYear": [ + 1925 + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The New Yorker." + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "numItemVolumesParsed": [ + 746 + ], + "createdString": [ + "1925" + ], + "idLccn": [ + "28005329" + ], + "idIssn": [ + "0028-792X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Ross, Harold Wallace, 1892-1951", + "Shawn, William", + "Brown, Tina", + "Remnick, David", + "White, Katharine Sergeant Angell", + "White, E. B. (Elwyn Brooks), 1899-1985", + "Irvin, Rea, 1881-1972", + "Angell, Roger" + ], + "dateStartYear": [ + 1925 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest (copy held in Per. Sect.)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA+ (New Yorker)" + }, + { + "type": "nypl:Bnumber", + "value": "10833141" + }, + { + "type": "nypl:Oclc", + "value": "1760231" + }, + { + "type": "bf:Lccn", + "value": "28005329" + }, + { + "type": "bf:Issn", + "value": "0028-792X" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1760231" + }, + { + "type": "bf:Identifier", + "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" + } + ], + "idOclc": [ + "1760231" + ], + "uniformTitle": [ + "New Yorker (New York, N.Y. : 1925)" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 1 (Feb. 15, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 2 (Mar. 1, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 3 (Mar. 8, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 4 (Mar. 15, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 5 (Mar. 22, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 6 (Mar. 29, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 7 (Apr. 5, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 8 (Apr. 12, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 9 (Apr. 19, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 11 (May. 10, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 12 (May. 17, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 13 (May. 24, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 14 (May. 31, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 15 (Jun. 7, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 16 (Jun. 14, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 17 (Jun. 21, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 18 (Jun. 28, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 19 (Jul. 5, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 20 (Jul. 12, 2021)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 21 (Jul. 26, 2021)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 22 (Aug. 2, 2021)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 23 (Aug. 9, 2021)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 24 (Aug. 16, 2021)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + } + ], + "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)--" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "ROOM 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "FEB. 15/22, 2021 - AUG. 16, 2021", + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1059671" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 97 No. 25 (Aug. 23, 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 26 (Aug. 30, 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 27 (Sep. 6, 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 28 (Sep. 13, 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 29 (Sep. 20, 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 30 (Sep. 27, 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 31 (Oct. 4, 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 32 (Oct. 11, 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 33 (Oct. 18, 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 34 (Oct. 25, 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 35 (Nov. 1, 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 36 (Nov. 8, 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Missing" + }, + { + "coverage": "Vol. 97 No. 37 (Nov. 15, 2021)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 38 (Nov. 22, 2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 39 (Nov. 29, 2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 40 (Dec. 6, 2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 41 (Dec. 13, 2021)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 42 (Dec. 20, 2021)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 97 No. 43 (Dec. 27, 2021)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 97 No. 44 (Jan. 3, 2022 - Jan. 10, 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 45 (Jan. 10, 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 46 (Jan. 24, 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 47 (Jan. 31, 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 97 No. 48 (Feb. 7, 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 98 No. 1-49 (Feb. 14, 2022 - Feb. 6, 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 1 (Feb. 13, 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 2 (Feb. 27, 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 3 (Mar. 6, 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 4 (Mar. 13, 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 5 (Mar. 20, 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 6 (Mar. 27, 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 7 (Apr. 3, 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 8 (Apr. 10, 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 9 (Apr. 17, 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 10 (Apr. 24, 2023 - May. 1, 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 11 (May. 8, 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 12 (May. 15, 2023)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 13 (May. 22, 2023)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 14 (May. 29, 2023)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 15 (Jun. 5, 2023)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 16 (Jun. 12, 2023)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 17 (Jun. 19, 2023)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 18 (Jun. 26, 2023)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 19 (Jul. 3, 2023)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 20 (Jul. 10, 2023)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 21 (Jul. 24, 2023)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 22 (Jul. 31, 2023)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 23 (Aug. 7, 2023)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 24 (Aug. 14, 2023)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 25 (Aug. 21, 2023)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 26 (Aug. 28, 2023)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 27 (Sep. 4, 2023)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 28 (Sep. 11, 2023)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 29 (Sep. 18, 2023)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 30 (Sep. 25, 2023)", + "position": 55, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 31 (Oct. 2, 2023)", + "position": 56, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 32 (Oct. 9, 2023)", + "position": 57, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 33 (Oct. 16, 2023)", + "position": 58, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 34 (Oct. 23, 2023)", + "position": 59, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 35 (Oct. 30, 2023)", + "position": 60, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 36 (Nov. 6, 2023)", + "position": 61, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 37 (Nov. 13, 2023)", + "position": 62, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 38 (Nov. 20, 2023)", + "position": 63, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 39 (Nov. 27, 2023)", + "position": 64, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 40 (Dec. 4, 2023)", + "position": 65, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 41 (Dec. 11, 2023)", + "position": 66, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 42 (Dec. 18, 2023)", + "position": 67, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 43 (Dec. 25, 2023)", + "position": 68, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 44 (Jan. 1, 2024)", + "position": 69, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 45 (Jan. 15, 2024)", + "position": 70, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 46 (Jan. 22, 2024)", + "position": 71, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 47 (Jan. 29, 2024)", + "position": 72, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 99 No. 48 (Feb. 5, 2024)", + "position": 73, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 1 (Feb. 12, 2024)", + "position": 74, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 2 (Feb. 26, 2024)", + "position": 75, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 3 (Mar. 4, 2024)", + "position": 76, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 4 (Mar. 11, 2024)", + "position": 77, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 100 No. 5 (Mar. 18, 2024)", + "position": 78, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 6 (Mar. 25, 2024)", + "position": 79, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 7 (Apr. 1, 2024)", + "position": 80, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 8 (Apr. 8, 2024)", + "position": 81, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 9 (Apr. 15, 2024)", + "position": 82, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 10 (Apr. 22, 2024)", + "position": 83, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 11 (Apr. 29, 2024)", + "position": 84, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 12 (May. 6, 2024)", + "position": 85, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 13 (May. 13, 2024)", + "position": 86, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 14 (May. 20, 2024)", + "position": 87, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 100 No. 15 (May. 27, 2024)", + "position": 88, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "status": "Expected" + } + ], + "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)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA+ (New Yorker)" + } + ], + "notes": [ + "Room 108" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "format": [ + "AUG. 23, 2021-CURRENT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "*DA+ (New Yorker)" + ], + "uri": "h1144777" + } + ], + "updatedAt": 1710179827073, + "publicationStatement": [ + "New York : F-R Pub. Corp., 1925-", + "[New York] : D. Carey", + "[New York] : Condé Nast Publications" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker)", + "urn:bnum:10833141", + "urn:oclc:1760231", + "urn:lccn:28005329", + "urn:issn:0028-792X", + "urn:identifier:(OCoLC)1760231", + "urn:identifier:(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" + ], + "genreForm": [ + "Collections.", + "Directories.", + "Periodicals." + ], + "numCheckinCardItems": [ + 112 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1925" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Literature -- Collections -- Periodicals.", + "Intellectual life.", + "Literature.", + "Electronic journals.", + "New York (N.Y.) -- Intellectual life -- Directories.", + "New York (State) -- New York." + ], + "titleDisplay": [ + "The New Yorker." + ], + "uri": "b10833141", + "lccClassification": [ + "AP2 .N6763" + ], + "placeOfPublication": [ + "New York", + "[New York]" + ], + "titleAlt": [ + "New Yorker", + "The New Yorker" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28-31 cm" + ] + }, + "inner_hits": { + "electronicResources": { + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "items": { + "hits": { + "total": 13, + "max_score": null, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 791 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-27", + "lte": "2024-05-27" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 15 (May. 27, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-0", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 15" + ] + }, + "sort": [ + " 100-2024-05-27" + ] + }, + { + "_nested": { + "field": "items", + "offset": 790 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-20", + "lte": "2024-05-20" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 14 (May. 20, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-20" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-1", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 14" + ] + }, + "sort": [ + " 100-2024-05-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 789 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-13", + "lte": "2024-05-13" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 13 (May. 13, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-2", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 13" + ] + }, + "sort": [ + " 100-2024-05-13" + ] + }, + { + "_nested": { + "field": "items", + "offset": 788 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-05-06", + "lte": "2024-05-06" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 12 (May. 6, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-05-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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-3", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 12" + ] + }, + "sort": [ + " 100-2024-05-06" + ] + }, + { + "_nested": { + "field": "items", + "offset": 787 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-29", + "lte": "2024-04-29" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 11 (Apr. 29, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-29" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-4", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 11" + ] + }, + "sort": [ + " 100-2024-04-29" + ] + }, + { + "_nested": { + "field": "items", + "offset": 786 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-22", + "lte": "2024-04-22" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 10 (Apr. 22, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-22" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-5", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 10" + ] + }, + "sort": [ + " 100-2024-04-22" + ] + }, + { + "_nested": { + "field": "items", + "offset": 785 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-15", + "lte": "2024-04-15" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 9 (Apr. 15, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-15" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-6", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 9" + ] + }, + "sort": [ + " 100-2024-04-15" + ] + }, + { + "_nested": { + "field": "items", + "offset": 784 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-08", + "lte": "2024-04-08" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 8 (Apr. 8, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-08" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-7", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 8" + ] + }, + "sort": [ + " 100-2024-04-08" + ] + }, + { + "_nested": { + "field": "items", + "offset": 783 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-04-01", + "lte": "2024-04-01" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 7 (Apr. 1, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-04-01" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-8", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 7" + ] + }, + "sort": [ + " 100-2024-04-01" + ] + }, + { + "_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": "2024-03-25", + "lte": "2024-03-25" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 6 (Mar. 25, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-25" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-9", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 6" + ] + }, + "sort": [ + " 100-2024-03-25" + ] + }, + { + "_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": "2024-03-18", + "lte": "2024-03-18" + } + ], + "enumerationChronology": [ + "Vol. 100 No. 5 (Mar. 18, 2024)" + ], + "enumerationChronology_sort": [ + " 100-2024-03-18" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-10", + "volumeRange": [ + { + "gte": 100, + "lte": 100 + } + ], + "volumeRaw": [ + "Vol. 100 No. 5" + ] + }, + "sort": [ + " 100-2024-03-18" + ] + }, + { + "_nested": { + "field": "items", + "offset": 704 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-12-20", + "lte": "2021-12-20" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 42 (Dec. 20, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-12-20" + ], + "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:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1144777-87", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 42" + ] + }, + "sort": [ + " 97-2021-12-20" + ] + }, + { + "_nested": { + "field": "items", + "offset": 28 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2014", + "lte": "2014" + } + ], + "enumerationChronology": [ + "v. 90 (July-Sept 2014)" + ], + "enumerationChronology_sort": [ + " 90-2014" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433114102084" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "urn:barcode:33433114102084" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 90 (July-Sept 2014)", + "type": "bf:ShelfMark" + }, + { + "value": "33433114102084", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 90 (July-Sept 2014)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000090 (July-Sept 2014)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "volumeRange": [ + { + "gte": 90, + "lte": 90 + } + ], + "uri": "i34327829" + }, + "sort": [ + " 90-2014" + ] + } + ] + } + }, + "allItems": { + "hits": { + "total": 816, + "max_score": 1, + "hits": [ + { + "_nested": { + "field": "items", + "offset": 815 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-04-26", + "lte": "2021-05-03" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 10 (Apr. 26, 2021 - May. 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-04-26" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-0", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 10" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 814 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-29", + "lte": "2021-03-29" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 6 (Mar. 29, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-29" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-1", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 6" + ] + } + }, + { + "_nested": { + "field": "items", + "offset": 813 + }, + "_score": 1, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2021-03-22", + "lte": "2021-03-22" + } + ], + "enumerationChronology": [ + "Vol. 97 No. 5 (Mar. 22, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021-03-22" + ], + "formatLiteral": [ + "FEB. 15/22, 2021 - AUG. 16, 2021" + ], + "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-h1059671-2", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ], + "volumeRaw": [ + "Vol. 97 No. 5" + ] + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 572 + }, + { + "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", + "doc_count": 112 + }, + { + "key": "loc:rc2ma||Offsite", + "doc_count": 66 + }, + { + "key": "loc:rcma2||Offsite", + "doc_count": 66 + } + ] + } + }, + "item_format": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Text", + "doc_count": 704 + }, + { + "key": "AUG. 23, 2021-CURRENT", + "doc_count": 88 + }, + { + "key": "FEB. 15/22, 2021 - AUG. 16, 2021", + "doc_count": 24 + } + ] + } + }, + "item_status": { + "doc_count": 816, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "status:a||Available", + "doc_count": 753 + }, + { + "key": "status:i||At bindery", + "doc_count": 41 + }, + { + "key": "status:na||Not available", + "doc_count": 12 + }, + { + "key": "status:co||Loaned", + "doc_count": 5 + }, + { + "key": "status:oh||On Holdshelf", + "doc_count": 3 + }, + { + "key": "status:m||Missing", + "doc_count": 1 + }, + { + "key": "status:t||In transit", + "doc_count": 1 + } + ] + } + } + } + }, + "statusCode": 200, + "headers": { + "date": "Mon, 11 Mar 2024 18:06:23 GMT", + "content-type": "application/json; charset=UTF-8", + "content-length": "39284", + "connection": "keep-alive", + "access-control-allow-origin": "*" + }, + "meta": { + "context": null, + "request": { + "params": { + "method": "POST", + "path": "/resources-2018-04-09/_search", + "body": "{\"size\":1,\"query\":{\"bool\":{\"must\":[{\"term\":{\"uri\":\"b10833141\"}}],\"filter\":[{\"bool\":{\"should\":[{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}],\"filter\":[{\"bool\":{\"should\":[{\"bool\":{\"must\":[{\"bool\":{\"must_not\":{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}}}},{\"terms\":{\"items.status.id\":[\"status:na\"]}}]}},{\"bool\":{\"must\":[{\"regexp\":{\"items.holdingLocation.id\":\"loc:rc.*\"}},{\"script\":{\"script\":{\"inline\":\"doc['items.idBarcode'].value == null || params.unavailableRecapBarcodes.contains(doc['items.idBarcode'].values[0])\",\"lang\":\"painless\",\"params\":{\"unavailableRecapBarcodes\":[\"33433114102084\"]}}}}]}}]}}]}},\"inner_hits\":{\"sort\":[{\"items.enumerationChronology_sort\":\"desc\"}],\"size\":100,\"from\":0,\"name\":\"items\"}}},{\"nested\":{\"path\":\"items\",\"query\":{\"exists\":{\"field\":\"items.electronicLocator\"}},\"inner_hits\":{\"name\":\"electronicResources\"}}},{\"match_all\":{}},{\"nested\":{\"path\":\"items\",\"query\":{\"bool\":{\"must_not\":[{\"exists\":{\"field\":\"items.electronicLocator\"}}]}},\"inner_hits\":{\"name\":\"allItems\"}}}]}}]}},\"_source\":{\"excludes\":[\"uris\",\"*_packed\",\"*_sort\",\"items.*_packed\",\"contentsTitle\",\"items\"]},\"aggregations\":{\"item_location\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.holdingLocation_packed\"}}}},\"item_status\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.status_packed\"}}}},\"item_format\":{\"nested\":{\"path\":\"items\"},\"aggs\":{\"_nested\":{\"terms\":{\"size\":100,\"field\":\"items.formatLiteral\"}}}}}}", + "querystring": "", + "headers": { + "user-agent": "elasticsearch-js/7.12.0 (darwin 21.6.0-x64; Node.js v18.12.1)", + "x-elastic-client-meta": "es=7.12.0,js=18.12.1,t=7.12.0,hc=18.12.1", + "content-type": "application/json", + "content-length": "1523" + }, + "timeout": 30000 + }, + "options": {}, + "id": 1 + }, + "name": "elasticsearch-js", + "connection": { + "url": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "id": "https://search-discovery-api-production-wio7hqrai645zhzi2cvpitpu6q.us-east-1.es.amazonaws.com/", + "headers": {}, + "deadCount": 0, + "resurrectTimeout": 0, + "_openRequests": 0, + "status": "alive", + "roles": { + "master": true, + "data": true, + "ingest": true, + "ml": false + } + }, + "attempts": 0, + "aborted": false + } +} \ No newline at end of file diff --git a/test/fixtures/query-fed340f471700bc9bc37480d8c1495a6.json b/test/fixtures/query-fed340f471700bc9bc37480d8c1495a6.json deleted file mode 100644 index 785d8547..00000000 --- a/test/fixtures/query-fed340f471700bc9bc37480d8c1495a6.json +++ /dev/null @@ -1,13423 +0,0 @@ -{ - "took": 268, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 1389083, - "max_score": null, - "hits": [ - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000002", - "_score": null, - "_source": { - "extent": [ - "ix, 368 p., [1] leaf of plates : port. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Contributions in German and Italian.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographies and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Dante Alighieri, 1265-1321", - "Dante Alighieri, 1265-1321 -- Criticism and interpretation", - "Gmelin, Hermann, 1900-1958" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Stauffenburg" - ], - "language": [ - { - "id": "lang:ger", - "label": "German" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1985 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1985" - ], - "idLccn": [ - "86124252" - ], - "seriesStatement": [ - "Romanica et comparatistica ; Bd. 4" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Gmelin, Hermann, 1900-1958.", - "Baum, Richard.", - "Hirdt, Willi." - ], - "dateStartYear": [ - 1985 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFE 86-3252" - }, - { - "type": "nypl:Bnumber", - "value": "10000002" - }, - { - "type": "bf:Isbn", - "value": "3923721544" - }, - { - "type": "bf:Lccn", - "value": "86124252" - }, - { - "type": "nypl:Oclc", - "value": "NYPGNYPG-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200001" - } - ], - "idOclc": [ - "NYPGNYPG-B" - ], - "updatedAt": 1678937667178, - "publicationStatement": [ - "Tübingen : Stauffenburg, c1985." - ], - "identifier": [ - "urn:bnum:10000002", - "urn:isbn:3923721544", - "urn:lccn:86124252", - "urn:oclc:NYPGNYPG-B", - "urn:undefined:(WaOLN)nyp0200001" - ], - "idIsbn": [ - "3923721544" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1985" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Dante Alighieri, 1265-1321 -- Criticism and interpretation.", - "Gmelin, Hermann, 1900-1958." - ], - "titleDisplay": [ - "Dante Alighieri 1985 : in memoriam Hermann Gmelin / herausgegeben von Richard Baum und Willi Hirdt." - ], - "uri": "b10000002", - "lccClassification": [ - "PQ4390 .D274 1985" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tübingen" - ], - "titleAlt": [ - "Dante Alighieri neunzehnhundertfünfundachtzig." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "3923721544" - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000002" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858031", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFE 86-3252" - ], - "identifierV2": [ - { - "value": "JFE 86-3252", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433046113795" - } - ], - "physicalLocation": [ - "JFE 86-3252" - ], - "identifier": [ - "urn:barcode:33433046113795" - ], - "idBarcode": [ - "33433046113795" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFE 86-003252" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000003", - "_score": null, - "_source": { - "extent": [ - "199 p. : col. ill. maps ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hebrides (Scotland)", - "Hebrides (Scotland) -- Pictorial works" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Constable" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1989 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Scottish islands" - ], - "shelfMark": [ - "JFF 89-526" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Waite, Charlie." - ], - "createdString": [ - "1989" - ], - "idLccn": [ - "gb 89012970" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1989 - ], - "donor": [ - "Gift of the Drue Heinz Book Fund for English Literature" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JFF 89-526" - }, - { - "type": "nypl:Bnumber", - "value": "10000003" - }, - { - "type": "bf:Isbn", - "value": "0094675708 :" - }, - { - "type": "bf:Lccn", - "value": "gb 89012970" - }, - { - "type": "nypl:Oclc", - "value": "NYPGUKBPGP8917-B" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200002" - } - ], - "idOclc": [ - "NYPGUKBPGP8917-B" - ], - "updatedAt": 1674870747963, - "publicationStatement": [ - "London : Constable, 1989." - ], - "identifier": [ - "urn:bnum:10000003", - "urn:isbn:0094675708 :", - "urn:lccn:gb 89012970", - "urn:oclc:NYPGUKBPGP8917-B", - "urn:undefined:(WaOLN)nyp0200002" - ], - "idIsbn": [ - "0094675708 " - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1989" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hebrides (Scotland) -- Pictorial works." - ], - "titleDisplay": [ - "Scottish islands / Charlie Waite." - ], - "uri": "b10000003", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "London" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "0094675708" - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000003" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783780", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "JFF 89-526" - ], - "identifierV2": [ - { - "value": "JFF 89-526", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433050409147" - } - ], - "physicalLocation": [ - "JFF 89-526" - ], - "identifier": [ - "urn:barcode:33433050409147" - ], - "idBarcode": [ - "33433050409147" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "aJFF 89-000526" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000126", - "_score": null, - "_source": { - "extent": [ - "72 p. : ill., ports. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ramana, Maharshi", - "Ramana, Maharshi -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śrī Ramaṇāśrama" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." - ], - "shelfMark": [ - "*OLY 82-4666" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1974" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-4666" - }, - { - "type": "nypl:Bnumber", - "value": "10000126" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000074-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100074" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200125" - } - ], - "idOclc": [ - "NYPG001000074-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tirūvaṇṇāmalai : Śrī Ramaṇāśrama, 1974." - ], - "identifier": [ - "urn:bnum:10000126", - "urn:oclc:NYPG001000074-B", - "urn:undefined:NNSZ00100074", - "urn:undefined:(WaOLN)nyp0200125" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ramana, Maharshi -- Biography." - ], - "titleDisplay": [ - "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." - ], - "uri": "b10000126", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirūvaṇṇāmalai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10000126" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783800", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-4666" - ], - "identifierV2": [ - { - "value": "*OLY 82-4666", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417551" - } - ], - "physicalLocation": [ - "*OLY 82-4666" - ], - "identifier": [ - "urn:barcode:33433060417551" - ], - "idBarcode": [ - "33433060417551" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-004666" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000156", - "_score": null, - "_source": { - "extent": [ - "10, 9 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Cover title.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Additions and corrections in MS.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit; introductory matter in Sanskrit or English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu gods", - "Hindu hymns, Sanskrit" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Go. Venkaṭarāmaśāstri]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" - ], - "shelfMark": [ - "*OLY 83-4674" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "75902648" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Lakshmikantaiah, Garikapati, 1900-" - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-4674" - }, - { - "type": "nypl:Bnumber", - "value": "10000156" - }, - { - "type": "bf:Lccn", - "value": "75902648" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000104-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100104" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200155" - } - ], - "idOclc": [ - "NYPG001000104-B" - ], - "uniformTitle": [ - "Aṣṭakapañcaka" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "[S.l. : Go. Venkaṭarāmaśāstri], 1972." - ], - "identifier": [ - "urn:bnum:10000156", - "urn:lccn:75902648", - "urn:oclc:NYPG001000104-B", - "urn:undefined:NNSZ00100104", - "urn:undefined:(WaOLN)nyp0200155" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu gods.", - "Hindu hymns, Sanskrit." - ], - "titleDisplay": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari / praṇetā Garikapāṭi Lakshmīkāntaḥ." - ], - "uri": "b10000156", - "lccClassification": [ - "BL1216 .L34" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[S.l." - ], - "titleAlt": [ - "Aṣṭakapañcaka", - "Jaladhijānandalaharī." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000156" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783803", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-4674" - ], - "identifierV2": [ - { - "value": "*OLY 83-4674", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060370396" - } - ], - "physicalLocation": [ - "*OLY 83-4674" - ], - "identifier": [ - "urn:barcode:33433060370396" - ], - "idBarcode": [ - "33433060370396" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-004674" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000165", - "_score": null, - "_source": { - "extent": [ - "47, 112 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes indexes.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vaishnavism", - "Vaishnavism -- Prayer books and devotions", - "Vaishnavism -- Prayer books and devotions -- Tamil" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Nārāyaṇacāmi Nāyaṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" - ], - "shelfMark": [ - "*OLY 83-4895" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76901471" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Narayanaswami Naidu, Tiruchirrambalam Krishnaswamy, 1906-" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-4895" - }, - { - "type": "nypl:Bnumber", - "value": "10000165" - }, - { - "type": "bf:Lccn", - "value": "76901471" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000113-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100113" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200164" - } - ], - "idOclc": [ - "NYPG001000113-B" - ], - "uniformTitle": [ - "Nālāyirat tivviyap pirapantam. Selections." - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Kaṭalūr : Nārāyaṇacāmi Nāyaṭu, 1975." - ], - "identifier": [ - "urn:bnum:10000165", - "urn:lccn:76901471", - "urn:oclc:NYPG001000113-B", - "urn:undefined:NNSZ00100113", - "urn:undefined:(WaOLN)nyp0200164" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vaishnavism -- Prayer books and devotions -- Tamil." - ], - "titleDisplay": [ - "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ / [Tokuppāciriyar Ti. Ki. Nārāyaṇacāmi Nāyaṭu]." - ], - "uri": "b10000165", - "lccClassification": [ - "BL1245.V3 N28 1975" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kaṭalūr" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000165" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783808", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-4895" - ], - "identifierV2": [ - { - "value": "*OLY 83-4895", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419649" - } - ], - "physicalLocation": [ - "*OLY 83-4895" - ], - "identifier": [ - "urn:barcode:33433060419649" - ], - "idBarcode": [ - "33433060419649" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-004895" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000177", - "_score": null, - "_source": { - "extent": [ - "4, 4, 354 p. col. illus." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [349]-354.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rām Sanehīs" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Rāmasnehī Sāhitya Śodha Saṃsthāna" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." - ], - "shelfMark": [ - "*OLY 84-85" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Pāṇḍeya, Śivāśaṅkara, 1935-" - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74901467" - ], - "seriesStatement": [ - "Rāmasnehī sāhitya śodha saṃsthāna, pushpa 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-85" - }, - { - "type": "nypl:Bnumber", - "value": "10000177" - }, - { - "type": "bf:Lccn", - "value": "74901467" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000125-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100125" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200176" - } - ], - "idOclc": [ - "NYPG001000125-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Dillī, Rāmasnehī Sāhitya Śodha Saṃsthāna [1973]" - ], - "identifier": [ - "urn:bnum:10000177", - "urn:lccn:74901467", - "urn:oclc:NYPG001000125-B", - "urn:undefined:NNSZ00100125", - "urn:undefined:(WaOLN)nyp0200176" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rām Sanehīs." - ], - "titleDisplay": [ - "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi. Lekhaka Śivāśaṅkara Pāṇḍeya." - ], - "uri": "b10000177", - "lccClassification": [ - "BL1245.R35 P36" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Dillī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000177" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783812", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-85" - ], - "identifierV2": [ - { - "value": "*OLY 84-85", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419680" - } - ], - "physicalLocation": [ - "*OLY 84-85" - ], - "identifier": [ - "urn:barcode:33433060419680" - ], - "idBarcode": [ - "33433060419680" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-000085" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000195", - "_score": null, - "_source": { - "extent": [ - "116 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vālmīki" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." - ], - "shelfMark": [ - "*OLY 83-2592" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Rāmacāmi, Ī. Ve., Tantai Periyār, 1878-1973." - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73903633" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-2592" - }, - { - "type": "nypl:Bnumber", - "value": "10000195" - }, - { - "type": "bf:Lccn", - "value": "73903633" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000143-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100143" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200194" - } - ], - "idOclc": [ - "NYPG001000143-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tirucci, Periyār Cuyamariyātaip Piracāra Niṟuvaṉa Veḷiyīṭu [1972]" - ], - "identifier": [ - "urn:bnum:10000195", - "urn:lccn:73903633", - "urn:oclc:NYPG001000143-B", - "urn:undefined:NNSZ00100143", - "urn:undefined:(WaOLN)nyp0200194" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vālmīki." - ], - "titleDisplay": [ - "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu. [Eḻutiyavar] Periyār Ī. Ve. Rā." - ], - "uri": "b10000195", - "lccClassification": [ - "PK3659 .R34 1972" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirucci" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000195" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783817", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-2592" - ], - "identifierV2": [ - { - "value": "*OLY 83-2592", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418526" - } - ], - "physicalLocation": [ - "*OLY 83-2592" - ], - "identifier": [ - "urn:barcode:33433060418526" - ], - "idBarcode": [ - "33433060418526" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-002592" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000203", - "_score": null, - "_source": { - "extent": [ - "201 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ramana, Maharshi" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Śivalāla Agravāla eṇḍa Kampanī" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1978 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Vedālaṅkāra, Vedarāja." - ], - "createdString": [ - "1978" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Osbourne, Arthur." - ], - "dateStartYear": [ - 1978 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-3981" - }, - { - "type": "nypl:Bnumber", - "value": "10000203" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000151-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100151" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200202" - } - ], - "idOclc": [ - "NYPG001000151-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Āgarā : Śivalāla Agravāla eṇḍa Kampanī, 1978." - ], - "identifier": [ - "urn:bnum:10000203", - "urn:oclc:NYPG001000151-B", - "urn:undefined:NNSZ00100151", - "urn:undefined:(WaOLN)nyp0200202" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1978" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ramana, Maharshi." - ], - "titleDisplay": [ - "Ramaṇa Maharshi : evaṃ ātma-jñāna kā mārga. [́Hindi edition of Ramana Maharshi and the Path of Self-Knowledge by Arthur Osbourne] / lekhaka Ārthara Āsaborna ; bhūmikā lekhaka Ḍā. Sarvapallī Rādhākṛshṇana ; anuvādaka Vedarāja Vedālankāra." - ], - "uri": "b10000203", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Āgarā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000203" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783820", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-3981" - ], - "identifierV2": [ - { - "value": "*OLY 82-3981", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417486" - } - ], - "physicalLocation": [ - "*OLY 82-3981" - ], - "identifier": [ - "urn:barcode:33433060417486" - ], - "idBarcode": [ - "33433060417486" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-003981" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000229", - "_score": null, - "_source": { - "extent": [ - "97, 5 p. : ill. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Running title: Silver jubilee souvenir '72", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Tamil or English.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Advertising matter included in paging.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu devotional literature, Tamil", - "Vaishnavites", - "Vaishnavites -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "[Thirumazhisaiars' Association" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "The Thirumazhisaiars' Association : (Mahisara Abhijana Sabha) silver jubilee souvenir, 1972." - ], - "shelfMark": [ - "*OLY 84-1084" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73902510" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Thirumazhisaiars' Association." - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1084" - }, - { - "type": "nypl:Bnumber", - "value": "10000229" - }, - { - "type": "bf:Lccn", - "value": "73902510" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000177-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100177" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200228" - } - ], - "idOclc": [ - "NYPG001000177-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Madras : [Thirumazhisaiars' Association, 1972]" - ], - "identifier": [ - "urn:bnum:10000229", - "urn:lccn:73902510", - "urn:oclc:NYPG001000177-B", - "urn:undefined:NNSZ00100177", - "urn:undefined:(WaOLN)nyp0200228" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu devotional literature, Tamil.", - "Vaishnavites -- Biography." - ], - "titleDisplay": [ - "The Thirumazhisaiars' Association : (Mahisara Abhijana Sabha) silver jubilee souvenir, 1972." - ], - "uri": "b10000229", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Madras" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000229" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783829", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1084" - ], - "identifierV2": [ - { - "value": "*OLY 84-1084", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419979" - } - ], - "physicalLocation": [ - "*OLY 84-1084" - ], - "identifier": [ - "urn:barcode:33433060419979" - ], - "idBarcode": [ - "33433060419979" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001084" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000292", - "_score": null, - "_source": { - "extent": [ - "56 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit and English on opposite pages.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ramana, Maharshi" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sri Ramanasramam" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1980 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Revelation : Śrīramaṇahṛdayam. A Sanskrit Version of the Ulladu Narpadu of Bhagavan Sri Ramana with an English translation" - ], - "shelfMark": [ - "*OLY 82-3739" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sarma, K. Lakshmana." - ], - "createdString": [ - "1980" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1980 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-3739" - }, - { - "type": "nypl:Bnumber", - "value": "10000292" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000245-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100245" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200291" - } - ], - "idOclc": [ - "NYPG001000245-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tiruvannamalai : Sri Ramanasramam, 1980." - ], - "identifier": [ - "urn:bnum:10000292", - "urn:oclc:NYPG001000245-B", - "urn:undefined:NNSZ00100245", - "urn:undefined:(WaOLN)nyp0200291" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1980" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ramana, Maharshi." - ], - "titleDisplay": [ - "Revelation : Śrīramaṇahṛdayam. A Sanskrit Version of the Ulladu Narpadu of Bhagavan Sri Ramana with an English translation / by K. Lakshmana Sarma, \"WHO.\"" - ], - "uri": "b10000292", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tiruvannamalai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000292" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783845", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-3739" - ], - "identifierV2": [ - { - "value": "*OLY 82-3739", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417452" - } - ], - "physicalLocation": [ - "*OLY 82-3739" - ], - "identifier": [ - "urn:barcode:33433060417452" - ], - "idBarcode": [ - "33433060417452" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-003739" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000338", - "_score": null, - "_source": { - "extent": [ - "8, 323 p. illus." - ], - "note": [ - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu hymns" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Khemarāja Śrīkṛshṇadāsa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bṛhatstotraratrākaraḥ, sacitraḥ; stotrasaṃkhyā 224." - ], - "shelfMark": [ - "*OLY 82-3968" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 68013360" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-3968" - }, - { - "type": "nypl:Bnumber", - "value": "10000338" - }, - { - "type": "bf:Lccn", - "value": "sa 68013360" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000291-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100291" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200337" - } - ], - "idOclc": [ - "NYPG001000291-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Bambaī, Khemarāja Śrīkṛshṇadāsa, 1963." - ], - "identifier": [ - "urn:bnum:10000338", - "urn:lccn:sa 68013360", - "urn:oclc:NYPG001000291-B", - "urn:undefined:NNSZ00100291", - "urn:undefined:(WaOLN)nyp0200337" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu hymns." - ], - "titleDisplay": [ - "Bṛhatstotraratrākaraḥ, sacitraḥ; stotrasaṃkhyā 224." - ], - "uri": "b10000338", - "lccClassification": [ - "BL1226.3 .B7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Bambaī" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000338" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783847", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-3968" - ], - "identifierV2": [ - { - "value": "*OLY 82-3968", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417478" - } - ], - "physicalLocation": [ - "*OLY 82-3968" - ], - "identifier": [ - "urn:barcode:33433060417478" - ], - "idBarcode": [ - "33433060417478" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-003968" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000344", - "_score": null, - "_source": { - "extent": [ - "194 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Persian or Arabic", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Translation of: Ṭibb al-Imām al-Ṣādiq.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jaʻfar al-Ṣādiq, 702?-765 or 6", - "Medicine, Medieval", - "Hygiene" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Bungāh-i Maṭbūʻātī-i ʻAṭāʼī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1961 - ], - "dateEndString": [ - "1962" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ṭibb al-Ṣādiq, ṭibb va bihdāsht az naẓar-i Imām Jaʻfar Ṣādiq." - ], - "shelfMark": [ - "*OGI 82-3991" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Khalīlī, Muḥammad." - ], - "createdString": [ - "1961" - ], - "idLccn": [ - "72274632" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Tihrānī, Nāṣir al-Dīn Ṣādiq." - ], - "dateStartYear": [ - 1961 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGI 82-3991" - }, - { - "type": "nypl:Bnumber", - "value": "10000344" - }, - { - "type": "bf:Lccn", - "value": "72274632" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000297-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100297" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200343" - } - ], - "idOclc": [ - "NYPG001000297-B" - ], - "dateEndYear": [ - 1962 - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tihrān, Bungāh-i Maṭbūʻātī-i ʻAṭāʼī, 1339 [1961 or 1962]" - ], - "identifier": [ - "urn:bnum:10000344", - "urn:lccn:72274632", - "urn:oclc:NYPG001000297-B", - "urn:undefined:NNSZ00100297", - "urn:undefined:(WaOLN)nyp0200343" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1961" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jaʻfar al-Ṣādiq, 702?-765 or 6.", - "Medicine, Medieval.", - "Hygiene." - ], - "titleDisplay": [ - "Ṭibb al-Ṣādiq, ṭibb va bihdāsht az naẓar-i Imām Jaʻfar Ṣādiq. Taʼlīf-i Muḥammad Khalī̄li. Tarjumah va sharḥ az Naṣīr al-Dīn Ṣādiq Tihrānī." - ], - "uri": "b10000344", - "lccClassification": [ - "BP193.16. K516 1961" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23cm." - ] - }, - "sort": [ - "b10000344" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858044", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OGI 82-3991" - ], - "identifierV2": [ - { - "value": "*OGI 82-3991", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058031224" - } - ], - "physicalLocation": [ - "*OGI 82-3991" - ], - "identifier": [ - "urn:barcode:33433058031224" - ], - "idBarcode": [ - "33433058031224" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGI 82-003991" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000345", - "_score": null, - "_source": { - "extent": [ - "5, 247 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Persian or Arabic.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "ʻAlī al-Riḍāʼs Risālah dhahabīyah: p.191-220.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "ʻAlī al-Riḍā ibn Mūsá, -818 or 19", - "Medicine, Medieval", - "Hygiene" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Muḥammad Rizā Lavāsānī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1961 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā" - ], - "shelfMark": [ - "*OGI 82-3989" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Tihrānī, Nāṣir al-Dīn Ṣādiq." - ], - "createdString": [ - "1961" - ], - "idLccn": [ - "74214957" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "ʻAlī al-Riḍā ibn Mūsá, -818 or 19." - ], - "dateStartYear": [ - 1961 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGI 82-3989" - }, - { - "type": "nypl:Bnumber", - "value": "10000345" - }, - { - "type": "bf:Lccn", - "value": "74214957" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000298-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100298" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200344" - } - ], - "idOclc": [ - "NYPG001000298-B" - ], - "updatedAt": 1674870754295, - "publicationStatement": [ - "Tihrān, Muḥammad Rizā Lavāsānī, 1340 [1961]" - ], - "identifier": [ - "urn:bnum:10000345", - "urn:lccn:74214957", - "urn:oclc:NYPG001000298-B", - "urn:undefined:NNSZ00100298", - "urn:undefined:(WaOLN)nyp0200344" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1961" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "ʻAlī al-Riḍā ibn Mūsá, -818 or 19.", - "Medicine, Medieval.", - "Hygiene." - ], - "titleDisplay": [ - "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā, nivishtah-ʼi Naṣīr al-Dīn Mīr Ṣādiqī Tihrānī." - ], - "uri": "b10000345", - "lccClassification": [ - "R141. T53" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000345" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858045", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OGI 82-3989" - ], - "identifierV2": [ - { - "value": "*OGI 82-3989", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058030721" - } - ], - "physicalLocation": [ - "*OGI 82-3989" - ], - "identifier": [ - "urn:barcode:33433058030721" - ], - "idBarcode": [ - "33433058030721" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGI 82-003989" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000348", - "_score": null, - "_source": { - "extent": [ - "[28], 573 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. [7-10] (1st group)", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Persian.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Iran", - "Iran -- Description and travel" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Mīrzā Ḥabīb Allāh" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1880" - ], - "createdYear": [ - 1879 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kitāb-i mustaṭāb-i ganj-i dānish" - ], - "shelfMark": [ - "*ONA+ 82-2677" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Muʻtamid al-Sulṭān, Muḥammad Taqī khān Ḥakīm, mutakhalliṣ bih Ḥakīm." - ], - "createdString": [ - "1879" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1879 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*ONA+ 82-2677" - }, - { - "type": "nypl:Bnumber", - "value": "10000348" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000301-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100301" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200347" - } - ], - "idOclc": [ - "NYPG001000301-B" - ], - "dateEndYear": [ - 1880 - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ṭihrān : Mīrzā Ḥabīb Allāh, 1305 [1879 or 1880]" - ], - "identifier": [ - "urn:bnum:10000348", - "urn:oclc:NYPG001000301-B", - "urn:undefined:NNSZ00100301", - "urn:undefined:(WaOLN)nyp0200347" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1879" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Iran -- Description and travel." - ], - "titleDisplay": [ - "Kitāb-i mustaṭāb-i ganj-i dānish / az taʼlīfāt-i Muʻtamid al-Sulṭān Muḥammad Taqī Khān mutikhalliṣ bih Ḥakīm ; bi-saʻī va ihtimām-i Mullā Maḥmūd va Mullā Rizā Kitābfurūsh." - ], - "uri": "b10000348", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ṭihrān" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Ganj-i dānish." - ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - "b10000348" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783848", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*ONA+ 82-2677 " - ], - "identifierV2": [ - { - "value": "*ONA+ 82-2677 ", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059840763" - } - ], - "physicalLocation": [ - "*ONA+ 82-2677 " - ], - "identifier": [ - "urn:barcode:33433059840763" - ], - "idBarcode": [ - "33433059840763" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*ONA+ 82-2677 " - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000379", - "_score": null, - "_source": { - "extent": [ - "2 v. in 1. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Persian or Arabic.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Shiites", - "Shiites -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Intishārāt-i Markazī" - ], - "language": [ - { - "id": "lang:per", - "label": "Persian" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1949 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Favāʼid al-Razavīyah : zindigānī-i ʻulamāʼī maẕ hab-i shīʻah" - ], - "shelfMark": [ - "*OGI 83-4798" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Qummī, ʻAbbās ibn Muḥammad Riḍā, -1941." - ], - "createdString": [ - "1949" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1949 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGI 83-4798" - }, - { - "type": "nypl:Bnumber", - "value": "10000379" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000332-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100332" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200378" - } - ], - "idOclc": [ - "NYPG001000332-B" - ], - "updatedAt": 1676664769349, - "publicationStatement": [ - "[Tihrān?] : Intishārāt-i Markazī, 1327 [1949]" - ], - "identifier": [ - "urn:bnum:10000379", - "urn:oclc:NYPG001000332-B", - "urn:undefined:NNSZ00100332", - "urn:undefined:(WaOLN)nyp0200378" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1949" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Shiites -- Biography." - ], - "titleDisplay": [ - "Favāʼid al-Razavīyah : zindigānī-i ʻulamāʼī maẕ hab-i shīʻah / taʼlīf-i Shaykh ʻAbbās Qummī." - ], - "uri": "b10000379", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Tihrān?]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10000379" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858047", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } - ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OGI 83-4798" - ], - "identifierV2": [ - { - "value": "*OGI 83-4798", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058030051" - } - ], - "physicalLocation": [ - "*OGI 83-4798" - ], - "identifier": [ - "urn:barcode:33433058030051" - ], - "idBarcode": [ - "33433058030051" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGI 83-004798" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000392", - "_score": null, - "_source": { - "extent": [ - "228 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Fasts and feasts", - "Fasts and feasts -- Hinduism", - "Hindu temples", - "Hindu temples -- Tamil Nadu" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cāstā Patippakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Aimperu viḻākkaḷ." - ], - "shelfMark": [ - "*OLY 84-1823" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gopalakrishnan, Sattanathapuram Subramania, 1916-" - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "74913252" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1823" - }, - { - "type": "nypl:Bnumber", - "value": "10000392" - }, - { - "type": "bf:Lccn", - "value": "74913252" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000346-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100346" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200391" - } - ], - "idOclc": [ - "NYPG001000346-B" - ], - "updatedAt": 1674870759272, - "publicationStatement": [ - "Tiruccentūr, Cāstā Patippakam [1970]" - ], - "identifier": [ - "urn:bnum:10000392", - "urn:lccn:74913252", - "urn:oclc:NYPG001000346-B", - "urn:undefined:NNSZ00100346", - "urn:undefined:(WaOLN)nyp0200391" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Fasts and feasts -- Hinduism.", - "Hindu temples -- Tamil Nadu." - ], - "titleDisplay": [ - "Aimperu viḻākkaḷ. Tokuppāciriyar Centil Tuṟavi." - ], - "uri": "b10000392", - "lccClassification": [ - "BL1212 .G66" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tiruccentūr" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10000392" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783870", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1823" - ], - "identifierV2": [ - { - "value": "*OLY 84-1823", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060420118" - } - ], - "physicalLocation": [ - "*OLY 84-1823" - ], - "identifier": [ - "urn:barcode:33433060420118" - ], - "idBarcode": [ - "33433060420118" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001823" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000397", - "_score": null, - "_source": { - "extent": [ - "87 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Revision of a speech delivered at the 41st annual day celebration of the Saivasiddhanta Sabha, Tuticorin, 1924.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hindu philosophy", - "Śaivism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Araci Puk Ṭippō" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Caivattiṉ camaracam." - ], - "shelfMark": [ - "*OLY 84-1838" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73913694" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Saivasiddhanta Sabha." - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1838" - }, - { - "type": "nypl:Bnumber", - "value": "10000397" - }, - { - "type": "bf:Lccn", - "value": "73913694" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000351-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100351" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200396" - } - ], - "idOclc": [ - "NYPG001000351-B" - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "Ceṉṉai, Araci Puk Ṭippō, 1970." - ], - "identifier": [ - "urn:bnum:10000397", - "urn:lccn:73913694", - "urn:oclc:NYPG001000351-B", - "urn:undefined:NNSZ00100351", - "urn:undefined:(WaOLN)nyp0200396" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hindu philosophy.", - "Śaivism." - ], - "titleDisplay": [ - "Caivattiṉ camaracam. Ākkiyōr Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "uri": "b10000397", - "lccClassification": [ - "B131 .K343 1970" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000397" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783872", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1838" - ], - "identifierV2": [ - { - "value": "*OLY 84-1838", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060420126" - } - ], - "physicalLocation": [ - "*OLY 84-1838" - ], - "identifier": [ - "urn:barcode:33433060420126" - ], - "idBarcode": [ - "33433060420126" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001838" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000406", - "_score": null, - "_source": { - "extent": [ - "220 p. port." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Murugan (Hindu deity)", - "Murugan (Hindu deity) -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Acciṭṭōr Kāntitācaṉ Accakam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ōtāḷar kuṟavañci; eṉum, Alakumalaikkuṟavañci." - ], - "shelfMark": [ - "*OLY 84-1725" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ciṉṉattampi Nāvalar, active 18th century." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "74914694" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Paḻaṉiccāmip Pulavar, K." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1725" - }, - { - "type": "nypl:Bnumber", - "value": "10000406" - }, - { - "type": "bf:Lccn", - "value": "74914694" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000360-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100360" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200405" - } - ], - "idOclc": [ - "NYPG001000360-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "[Kōvai, Acciṭṭōr Kāntitācaṉ Accakam, 1969]" - ], - "identifier": [ - "urn:bnum:10000406", - "urn:lccn:74914694", - "urn:oclc:NYPG001000360-B", - "urn:undefined:NNSZ00100360", - "urn:undefined:(WaOLN)nyp0200405" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Murugan (Hindu deity) -- Poetry." - ], - "titleDisplay": [ - "Ōtāḷar kuṟavañci; eṉum, Alakumalaikkuṟavañci. Patipp̲aciriyar Ka. Paḻaṉiccāmip Pulavar." - ], - "uri": "b10000406", - "lccClassification": [ - "PL4758.9.C4985 O8" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Kōvai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000406" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783876", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1725" - ], - "identifierV2": [ - { - "value": "*OLY 84-1725", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060420076" - } - ], - "physicalLocation": [ - "*OLY 84-1725" - ], - "identifier": [ - "urn:barcode:33433060420076" - ], - "idBarcode": [ - "33433060420076" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001725" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000413", - "_score": null, - "_source": { - "extent": [ - "100 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Karumari Amman (Hindu deity)" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Cūppar Pavar Papḷikēṣaṉs" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiruvēṟkāṭu Śrī Tēvi Karumārī Ammaṉ Catakam" - ], - "shelfMark": [ - "*OLY 84-1817" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Śrī Tēvi Karumāri Tāsar." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "75914516" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1817" - }, - { - "type": "nypl:Bnumber", - "value": "10000413" - }, - { - "type": "bf:Lccn", - "value": "75914516" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000367-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100367" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200412" - } - ], - "idOclc": [ - "NYPG001000367-B" - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "Ceṉṉai : Cūppar Pavar Papḷikēṣaṉs, [1970]" - ], - "identifier": [ - "urn:bnum:10000413", - "urn:lccn:75914516", - "urn:oclc:NYPG001000367-B", - "urn:undefined:NNSZ00100367", - "urn:undefined:(WaOLN)nyp0200412" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Karumari Amman (Hindu deity)" - ], - "titleDisplay": [ - "Tiruvēṟkāṭu Śrī Tēvi Karumārī Ammaṉ Catakam / iyaṟṟiyavar Śrī Tēvi Karumārī Tāsar." - ], - "uri": "b10000413", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "21 cm." - ] - }, - "sort": [ - "b10000413" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783880", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1817" - ], - "identifierV2": [ - { - "value": "*OLY 84-1817", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060420100" - } - ], - "physicalLocation": [ - "*OLY 84-1817" - ], - "identifier": [ - "urn:barcode:33433060420100" - ], - "idBarcode": [ - "33433060420100" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001817" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000421", - "_score": null, - "_source": { - "extent": [ - "4, 80 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Nammāḻvār", - "Hindu philosophy", - "Vaishnavism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Araci Puk Ṭippō" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tamiḻnāṭum Nammāḻvārum." - ], - "shelfMark": [ - "*OLY 84-1736" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Kaliyāṇacuntaraṉār, Tiru. Vi., 1883-1953." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "74913567" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1736" - }, - { - "type": "nypl:Bnumber", - "value": "10000421" - }, - { - "type": "bf:Lccn", - "value": "74913567" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000375-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100375" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200420" - } - ], - "idOclc": [ - "NYPG001000375-B" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Ceṉṉai, Araci Puk Ṭippō, 1969." - ], - "identifier": [ - "urn:bnum:10000421", - "urn:lccn:74913567", - "urn:oclc:NYPG001000375-B", - "urn:undefined:NNSZ00100375", - "urn:undefined:(WaOLN)nyp0200420" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Nammāḻvār.", - "Hindu philosophy.", - "Vaishnavism." - ], - "titleDisplay": [ - "Tamiḻnāṭum Nammāḻvārum. Ākkiyōr Tiru. Vi. Kaliyāṇacuntaraṉār." - ], - "uri": "b10000421", - "lccClassification": [ - "B131 .K346 1969" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000421" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783883", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1736" - ], - "identifierV2": [ - { - "value": "*OLY 84-1736", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060420092" - } - ], - "physicalLocation": [ - "*OLY 84-1736" - ], - "identifier": [ - "urn:barcode:33433060420092" - ], - "idBarcode": [ - "33433060420092" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 84-001736" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000424", - "_score": null, - "_source": { - "extent": [ - "7, 79 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "First published in 1931 as an appendix to v.4 of Mīmāṃsādarśana.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jaimini", - "Mimamsa" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Ānandāśramasaṃsthā" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1973 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Murārimiśra." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "76903136" - ], - "seriesStatement": [ - "Ānandāśramasaṃskrtagranthāvaliḥ; granthāṇkaḥ 137" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ānandāśramasaṃsthā." - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKM 97-3015" - }, - { - "type": "nypl:Bnumber", - "value": "10000424" - }, - { - "type": "bf:Lccn", - "value": "76903136" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000378-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100378" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200423" - } - ], - "idOclc": [ - "NYPG001000378-B" - ], - "uniformTitle": [ - "Aṅgatvanirukti" - ], - "updatedAt": 1674870755402, - "publicationStatement": [ - "Puṇyākhyapattane : Ānandāśramasaṃsthā, 1973." - ], - "identifier": [ - "urn:bnum:10000424", - "urn:lccn:76903136", - "urn:oclc:NYPG001000378-B", - "urn:undefined:NNSZ00100378", - "urn:undefined:(WaOLN)nyp0200423" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jaimini.", - "Mimamsa." - ], - "titleDisplay": [ - "Śrīmajjaiminipraṇītamīmāṃsādarśaneʼṅgāṅgi-bhāvavimarśakaḥ \"Aṅgatvaniruktiḥ\" nāma prabandhaḥ / Śrīmanmurārimiśraviracitaḥ ; etatpustakaṃ Ānandāśramasthapaṇḍitaiḥ sampāditam." - ], - "uri": "b10000424", - "lccClassification": [ - "B132.M5 M87" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Puṇyākhyapattane" - ], - "titleAlt": [ - "Aṅgatvanirukti" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000424" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783885", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OKM 97-3015" - ], - "identifierV2": [ - { - "value": "*OKM 97-3015", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058597968" - } - ], - "physicalLocation": [ - "*OKM 97-3015" - ], - "identifier": [ - "urn:barcode:33433058597968" - ], - "idBarcode": [ - "33433058597968" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKM 97-003015" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000461", - "_score": null, - "_source": { - "extent": [ - "2v." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Caracuvatimāl] Nūlnilaiyak kaurava kāriyatarici S. Kōpālaiyaravarkaḷ" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 1961 - ], - "dateEndString": [ - "1963" - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Ativīra Rāma Pāṇtiyar iyaṟṟiya Kūrma Purāṇa mūlam." - ], - "shelfMark": [ - "*OKOK 81-2812" - ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "1961" - ], - "idLccn": [ - "sa 65009124" - ], - "seriesStatement": [ - "Tañcai Caracuvati Māl. Veḷiyīṭu eṇ 91, 100" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Ativira Rama Pandian, active 1562.", - "Govindaswami Pillai, R." - ], - "dateStartYear": [ - 1961 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKOK 81-2812" - }, - { - "type": "nypl:Bnumber", - "value": "10000461" - }, - { - "type": "bf:Lccn", - "value": "sa 65009124" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000416-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100416" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200460" - } - ], - "idOclc": [ - "NYPG001000416-B" - ], - "uniformTitle": [ - "Puranas. Kūrmapurāṇa. Tamil" - ], - "dateEndYear": [ - 1963 - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "[Tañcai, Caracuvatimāl] Nūlnilaiyak kaurava kāriyatarici S. Kōpālaiyaravarkaḷ, 1961-1963." - ], - "identifier": [ - "urn:bnum:10000461", - "urn:lccn:sa 65009124", - "urn:oclc:NYPG001000416-B", - "urn:undefined:NNSZ00100416", - "urn:undefined:(WaOLN)nyp0200460" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1961" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Ativīra Rāma Pāṇtiyar iyaṟṟiya Kūrma Purāṇa mūlam. Pala piratikaḷaik konṭu paricōtittup patittavar Irāma. Kōvintacāmipiḷḷai." - ], - "uri": "b10000461", - "lccClassification": [ - "PK3621 .K817" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[Tañcai" - ], - "titleAlt": [ - "Puranas. Kūrmapurāṇa.", - "Kūrma Purāṇa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000461" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i13783891", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OKOK 81-2812 v. 2" - ], - "identifierV2": [ - { - "value": "*OKOK 81-2812 v. 2", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058648977" - } - ], - "enumerationChronology": [ - "v. 2" - ], - "physicalLocation": [ - "*OKOK 81-2812" - ], - "identifier": [ - "urn:barcode:33433058648977" - ], - "idBarcode": [ - "33433058648977" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 2 - } - ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKOK 81-2812 v. 000002" - }, - "sort": [ - " 2-" - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783890", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OKOK 81-2812 v. 1" - ], - "identifierV2": [ - { - "value": "*OKOK 81-2812 v. 1", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058648969" - } - ], - "enumerationChronology": [ - "v. 1" - ], - "physicalLocation": [ - "*OKOK 81-2812" - ], - "identifier": [ - "urn:barcode:33433058648969" - ], - "idBarcode": [ - "33433058648969" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "volumeRange": [ - { - "gte": 1, - "lte": 1 - } - ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKOK 81-2812 v. 000001" - }, - "sort": [ - " 1-" - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000468", - "_score": null, - "_source": { - "extent": [ - "16, 312 p. port." - ], - "note": [ - { - "noteType": "Note", - "label": "\"Banārasa Hindū Yūnivarsiṭī dvārā Pī-eca. Ḍī. kī upādhi ke lie svīkrta śodha-prabandha.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. [282]-294.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ahiṃsā" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Sohanalāla Jainadharma Pracāraka Samiti; prāpti-sthāna: Pārśvanātha Vidyāśrama Śodha Saṃsthāna, Vārāṇasī" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Jaina-dharma meṃ ahiṃsā." - ], - "shelfMark": [ - "*OLX 83-155" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sinha, Bashistha Narayan, 1935-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "73900921" - ], - "seriesStatement": [ - "Pārśvanātha Vidyāśrama granthamālā, 17" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLX 83-155" - }, - { - "type": "nypl:Bnumber", - "value": "10000468" - }, - { - "type": "bf:Lccn", - "value": "73900921" - }, - { - "type": "nypl:Oclc", - "value": "NYPG001000423-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00100423" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200467" - } - ], - "idOclc": [ - "NYPG001000423-B" - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "Amrtasara, Sohanalāla Jainadharma Pracāraka Samiti; prāpti-sthāna: Pārśvanātha Vidyāśrama Śodha Saṃsthāna, Vārāṇasī [1972]" - ], - "identifier": [ - "urn:bnum:10000468", - "urn:lccn:73900921", - "urn:oclc:NYPG001000423-B", - "urn:undefined:NNSZ00100423", - "urn:undefined:(WaOLN)nyp0200467" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ahiṃsā." - ], - "titleDisplay": [ - "Jaina-dharma meṃ ahiṃsā. Lekhaka Baśishṭhanārāyaṇa Sinhā." - ], - "uri": "b10000468", - "lccClassification": [ - "BL1375.A35 S56" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Amrtasara" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000468" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783893", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLX 83-155" - ], - "identifierV2": [ - { - "value": "*OLX 83-155", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060359332" - } - ], - "physicalLocation": [ - "*OLX 83-155" - ], - "identifier": [ - "urn:barcode:33433060359332" - ], - "idBarcode": [ - "33433060359332" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLX 83-000155" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000627", - "_score": null, - "_source": { - "extent": [ - "363, 53 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: The travels of Ibn Jubayr. Edited from a ms. in the University Library of Leyden by William Wright.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Original ed. issued as v. 5 of \"E.J.W. Gibb memorial\" series.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Islamic Empire", - "Islamic Empire -- Description and travel" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "AMS Press" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 3 - ], - "createdYear": [ - 1973 - ], - "dateEndString": [ - "1907" - ], - "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)" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Ibn Jubayr, Muḥammad ibn Aḥmad, 1145-1217." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "77173005" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Wright, William, 1830-1889.", - "Goeje, M. J. de (Michael Jan), 1836-1909." - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - }, - { - "type": "nypl:Bnumber", - "value": "10000627" - }, - { - "type": "bf:Lccn", - "value": "77173005" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000036-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200636" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200626" - } - ], - "idOclc": [ - "NYPG002000036-B" - ], - "uniformTitle": [ - "\"E.J.W. Gibb memorial\" series ; v.5." - ], - "dateEndYear": [ - 1907 - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "[New York, AMS Press, 1973] 1907." - ], - "identifier": [ - "urn:bnum:10000627", - "urn:lccn:77173005", - "urn:oclc:NYPG002000036-B", - "urn:undefined:NNSZ00200636", - "urn:undefined:(WaOLN)nyp0200626" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Islamic Empire -- Description and travel." - ], - "titleDisplay": [ - "Riḥlat Abī al-Husayn Muhammad ibn Ahmad ibn Jubayr al-Kinānī al-Andalusī al-Balinsī." - ], - "uri": "b10000627", - "lccClassification": [ - "DS36.6 .I26 1973" - ], - "numItems": [ - 3 - ], - "numAvailable": [ - 3 - ], - "placeOfPublication": [ - "[New York" - ], - "titleAlt": [ - "Travels of Ibn Jubayr." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000627" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 3, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 2 - }, - "_score": null, - "_source": { - "uri": "i10000366", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OFV 87-659" - ], - "identifierV2": [ - { - "value": "*OFV 87-659", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433014525079" - } - ], - "physicalLocation": [ - "*OFV 87-659" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433014525079" - ], - "idBarcode": [ - "33433014525079" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OFV 87-000659" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i10000365", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - ], - "identifierV2": [ - { - "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433096515220" - } - ], - "physicalLocation": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - ], - "identifier": [ - "urn:barcode:33433096515220" - ], - "idBarcode": [ - "33433096515220" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i31207836", - "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" - ], - "catalogItemType": [ - { - "id": "catalogItemType:66", - "label": "book, poor condition, non-MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:66||book, poor condition, non-MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "shelfMark": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - ], - "identifierV2": [ - { - "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433115326104" - } - ], - "physicalLocation": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433115326104" - ], - "idBarcode": [ - "33433115326104" - ], - "requestable": [ - true - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000628", - "_score": null, - "_source": { - "extent": [ - "22, 484 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Historical dramas in Sanskrit literature.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Rājasthāna Viśvavidyālaya kī Pī.eca. Ḍī. kī upādhi ke lie svīkrta śodha prabandha.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliography and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Historical drama, Sanskrit", - "Historical drama, Sanskrit -- History and criticism" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Devanāgara Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Saṃskrta ke aitihāsika nāṭaka : [...aitihāsika, sāhityika, evaṃ saṃskrtika anuśīlana]" - ], - "shelfMark": [ - "*OKB 83.388" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sharma, Shyama." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75900847" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKB 83.388" - }, - { - "type": "nypl:Bnumber", - "value": "10000628" - }, - { - "type": "bf:Lccn", - "value": "75900847" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000037-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200637" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200627" - } - ], - "idOclc": [ - "NYPG002000037-B" - ], - "updatedAt": 1674870772746, - "publicationStatement": [ - "Jayapura : Devanāgara Prakāśana, [1974]" - ], - "identifier": [ - "urn:bnum:10000628", - "urn:lccn:75900847", - "urn:oclc:NYPG002000037-B", - "urn:undefined:NNSZ00200637", - "urn:undefined:(WaOLN)nyp0200627" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Historical drama, Sanskrit -- History and criticism." - ], - "titleDisplay": [ - "Saṃskrta ke aitihāsika nāṭaka : [...aitihāsika, sāhityika, evaṃ saṃskrtika anuśīlana] / Śyāma Śarmā." - ], - "uri": "b10000628", - "lccClassification": [ - "PK2932 .S5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Jayapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000628" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858062", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OKB 83.388" - ], - "identifierV2": [ - { - "value": "*OKB 83.388", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058548284" - } - ], - "physicalLocation": [ - "*OKB 83.388" - ], - "identifier": [ - "urn:barcode:33433058548284" - ], - "idBarcode": [ - "33433058548284" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKB 83.000388" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000630", - "_score": null, - "_source": { - "extent": [ - "2, 230 p. ;" - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Rāma (Hindu deity) in literature", - "Indic literature", - "Indic literature -- History and criticism", - "Bhakti in literature" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Hindī Vibhāga, Kalakattā Viśvavidyālaya ke lie Hindī Pustaka Ejensī" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rāmabhakti, paramparā aura sāhitya" - ], - "shelfMark": [ - "*OLY 83-185" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Siṃha, Bhagavatī Prasāda." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75900873" - ], - "seriesStatement": [ - "Śrīghanaśyāmadāsa Biṛalā Hindī vyākhyānamālā; 1972" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-185" - }, - { - "type": "nypl:Bnumber", - "value": "10000630" - }, - { - "type": "bf:Lccn", - "value": "75900873" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000039-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200639" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200629" - } - ], - "idOclc": [ - "NYPG002000039-B" - ], - "updatedAt": 1674870762646, - "publicationStatement": [ - "Kalakattā : Hindī Vibhāga, Kalakattā Viśvavidyālaya ke lie Hindī Pustaka Ejensī, 1974." - ], - "identifier": [ - "urn:bnum:10000630", - "urn:lccn:75900873", - "urn:oclc:NYPG002000039-B", - "urn:undefined:NNSZ00200639", - "urn:undefined:(WaOLN)nyp0200629" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Rāma (Hindu deity) in literature.", - "Indic literature -- History and criticism.", - "Bhakti in literature." - ], - "titleDisplay": [ - "Rāmabhakti, paramparā aura sāhitya / vyākhyātā Bhagavatī Prasāda Siṃha." - ], - "uri": "b10000630", - "lccClassification": [ - "PK2907.R25 S57" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kalakattā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000630" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783898", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-185" - ], - "identifierV2": [ - { - "value": "*OLY 83-185", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417874" - } - ], - "physicalLocation": [ - "*OLY 83-185" - ], - "identifier": [ - "urn:barcode:33433060417874" - ], - "idBarcode": [ - "33433060417874" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-000185" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000647", - "_score": null, - "_source": { - "extent": [ - "360 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Bhagavān Mahāvīra kī pacīsavīṃ nirvāṇa śatābdī ke upalaksha meṃ.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Mahāvīra" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Jaina Viśva Bhāratī Prakāśana" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śramaṇa Mahāvīra" - ], - "shelfMark": [ - "*OLX 83-353" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Nathamal, Muni, 1920-" - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "75900818" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLX 83-353" - }, - { - "type": "nypl:Bnumber", - "value": "10000647" - }, - { - "type": "bf:Lccn", - "value": "75900818" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000056-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200656" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200646" - } - ], - "idOclc": [ - "NYPG002000056-B" - ], - "updatedAt": 1674870772746, - "publicationStatement": [ - "Lāḍnūṃ : Jaina Viśva Bhāratī Prakāśana, 1974." - ], - "identifier": [ - "urn:bnum:10000647", - "urn:lccn:75900818", - "urn:oclc:NYPG002000056-B", - "urn:undefined:NNSZ00200656", - "urn:undefined:(WaOLN)nyp0200646" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Mahāvīra." - ], - "titleDisplay": [ - "Śramaṇa Mahāvīra / Muni Nathamala; Sampādaka Muni Dulaharāja." - ], - "uri": "b10000647", - "lccClassification": [ - "BL1371 .N36" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Lāḍnūṃ" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000647" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783899", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLX 83-353" - ], - "identifierV2": [ - { - "value": "*OLX 83-353", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060359365" - } - ], - "physicalLocation": [ - "*OLX 83-353" - ], - "identifier": [ - "urn:barcode:33433060359365" - ], - "idBarcode": [ - "33433060359365" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLX 83-000353" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000654", - "_score": null, - "_source": { - "extent": [ - "200 p." - ], - "note": [ - { - "noteType": "Language", - "label": "English and Sanskrit; introd. in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Sokappadu, Ramanaidoo" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Tapovanam Pub. House" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Viṣṇusahasranāmastotram. Sri Vishnu sahasranama stotram, with namavali." - ], - "shelfMark": [ - "*OLY 83-374" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "sa 68001969" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Vimalananda, Swami." - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-374" - }, - { - "type": "nypl:Bnumber", - "value": "10000654" - }, - { - "type": "bf:Lccn", - "value": "sa 68001969" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000063-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200663" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200653" - } - ], - "idOclc": [ - "NYPG002000063-B" - ], - "uniformTitle": [ - "Viṣṇusahasranāma." - ], - "updatedAt": 1674870767447, - "publicationStatement": [ - "Tirupparaitturai; Tapovanam Pub. House [1965]" - ], - "identifier": [ - "urn:bnum:10000654", - "urn:lccn:sa 68001969", - "urn:oclc:NYPG002000063-B", - "urn:undefined:NNSZ00200663", - "urn:undefined:(WaOLN)nyp0200653" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sokappadu, Ramanaidoo." - ], - "titleDisplay": [ - "Śrī Viṣṇusahasranāmastotram. Sri Vishnu sahasranama stotram, with namavali. Introd., English rendering and index by Swami Vimalananda." - ], - "uri": "b10000654", - "lccClassification": [ - "BL1130.A353 V5" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Tirupparaitturai;" - ], - "titleAlt": [ - "Vishnu sahasranama stotram.", - "Viṣṇusahasranāmastotram." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000654" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783901", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-374" - ], - "identifierV2": [ - { - "value": "*OLY 83-374", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417890" - } - ], - "physicalLocation": [ - "*OLY 83-374" - ], - "identifier": [ - "urn:barcode:33433060417890" - ], - "idBarcode": [ - "33433060417890" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-000374" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000737", - "_score": null, - "_source": { - "extent": [ - "44, 56, 36 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Running title: Māmuṉivaṉ tivya sūkti sārārtta mālikai.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Each work has also separate t.p.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Sātāraṇa vaippacittirumūla malariṉ anupantam.\"", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Vaishnavism", - "Vaishnavism -- Poetry" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "kiṭaikkumiṭam Krantamālā Āpīs]" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1970 - ], - "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" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Maṇavāḷa Māmuṉi, 1370-1444." - ], - "createdString": [ - "1970" - ], - "idLccn": [ - "73906525" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Maṇavāḷa Māmuṉi, 1370-1444.", - "Annangaracharya, Prativadi Bhayankara, Swami, 1891-" - ], - "dateStartYear": [ - 1970 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-2976" - }, - { - "type": "nypl:Bnumber", - "value": "10000737" - }, - { - "type": "bf:Lccn", - "value": "73906525" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000146-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200746" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200736" - } - ], - "idOclc": [ - "NYPG002000146-B" - ], - "uniformTitle": [ - "Upatēcarattiṉamālai" - ], - "updatedAt": 1674870779642, - "publicationStatement": [ - "[Kāñcīpuram, kiṭaikkumiṭam Krantamālā Āpīs] 1970." - ], - "identifier": [ - "urn:bnum:10000737", - "urn:lccn:73906525", - "urn:oclc:NYPG002000146-B", - "urn:undefined:NNSZ00200746", - "urn:undefined:(WaOLN)nyp0200736" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1970" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Vaishnavism -- Poetry." - ], - "titleDisplay": [ - "Vicatavākcikāmaṇikaḷāṉa Maṇavāḷamāmuṉikaḷ aruḷicceyta upatēcarattiṉamālai. Tiruvāymoḻi nūṟṟantāti. Ārttippirapantam. Aṇṇaṅkarācāryatāsaṉ iyaṟṟiya eḷiya teḷiya uraiyuṭaṉ kūṭiyavai." - ], - "uri": "b10000737", - "lccClassification": [ - "PL4758.9.M242 U6" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Kāñcīpuram" - ], - "titleAlt": [ - "Upatēcarattiṉamālai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "26 cm." - ] - }, - "sort": [ - "b10000737" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783922", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-2976" - ], - "identifierV2": [ - { - "value": "*OLY 83-2976", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418666" - } - ], - "physicalLocation": [ - "*OLY 83-2976" - ], - "identifier": [ - "urn:barcode:33433060418666" - ], - "idBarcode": [ - "33433060418666" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-002976" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000739", - "_score": null, - "_source": { - "extent": [ - "968 p. col. illus." - ], - "note": [ - { - "noteType": "Note", - "label": "On cover: Upaniṣad-bhāṣya, sānuvāda, khaṇḍa 3.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Hindi and Sanskrit; introductory matter in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Gītā Presa" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "dateEndString": [ - "1967" - ], - "createdYear": [ - 1966 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Chāndogyopaniṣad." - ], - "shelfMark": [ - "*OKLB 83-2978" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "1966" - ], - "idLccn": [ - "sa 68015169" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Saṅkarācārya." - ], - "dateStartYear": [ - 1966 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKLB 83-2978" - }, - { - "type": "nypl:Bnumber", - "value": "10000739" - }, - { - "type": "bf:Lccn", - "value": "sa 68015169" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000148-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200748" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200738" - } - ], - "idOclc": [ - "NYPG002000148-B" - ], - "uniformTitle": [ - "Upanishads. Chāndogyopaniṣad." - ], - "dateEndYear": [ - 1967 - ], - "updatedAt": 1674870777259, - "publicationStatement": [ - "Gorakhapura, Gītā Presa [1966 or 7]" - ], - "identifier": [ - "urn:bnum:10000739", - "urn:lccn:sa 68015169", - "urn:oclc:NYPG002000148-B", - "urn:undefined:NNSZ00200748", - "urn:undefined:(WaOLN)nyp0200738" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1966" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Chāndogyopaniṣad. sānuvāda Śaṅkarabhāṣyasahita." - ], - "uri": "b10000739", - "lccClassification": [ - "PK3521 .C5 1966" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Gorakhapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "23 cm." - ] - }, - "sort": [ - "b10000739" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783923", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OKLB 83-2978" - ], - "identifierV2": [ - { - "value": "*OKLB 83-2978", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433058574710" - } - ], - "physicalLocation": [ - "*OKLB 83-2978" - ], - "identifier": [ - "urn:barcode:33433058574710" - ], - "idBarcode": [ - "33433058574710" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OKLB 83-002978" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000795", - "_score": null, - "_source": { - "extent": [ - "XV, 453 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Sanskrit or Tamil.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "\"Vālmīki Rāmāyṇam\" (p. 389-453) comprises selected verses from the Valmīki Rāmāyaṇa.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Kampar, active 9th century", - "Vālmīki" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Es. Sukumār; kiṭaikkumiṭam Pāri Nilaiyam, Ceṉṉai" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Kāvya Rāmāyaṇam." - ], - "shelfMark": [ - "*OLY 82-1781" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Srinivasan, K. S. (Karur Soundara), 1920-" - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "72904732" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-1781" - }, - { - "type": "nypl:Bnumber", - "value": "10000795" - }, - { - "type": "bf:Lccn", - "value": "72904732" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000204-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200804" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200794" - } - ], - "idOclc": [ - "NYPG002000204-B" - ], - "updatedAt": 1674870779642, - "publicationStatement": [ - "[Putu Tilli, Es. Sukumār; kiṭaikkumiṭam Pāri Nilaiyam, Ceṉṉai, 1971]" - ], - "identifier": [ - "urn:bnum:10000795", - "urn:lccn:72904732", - "urn:oclc:NYPG002000204-B", - "urn:undefined:NNSZ00200804", - "urn:undefined:(WaOLN)nyp0200794" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Kampar, active 9th century.", - "Vālmīki." - ], - "titleDisplay": [ - "Kāvya Rāmāyaṇam. [Eḻutiyavar] Kē. Es. Śrīṉivāsaṉ." - ], - "uri": "b10000795", - "lccClassification": [ - "PL4758.9.K27 R35695" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Putu Tilli" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000795" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783961", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-1781" - ], - "identifierV2": [ - { - "value": "*OLY 82-1781", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417288" - } - ], - "physicalLocation": [ - "*OLY 82-1781" - ], - "identifier": [ - "urn:barcode:33433060417288" - ], - "idBarcode": [ - "33433060417288" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 82-001781" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000818", - "_score": null, - "_source": { - "extent": [ - "190 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Bibliography: p. 190.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Muḥammad, Prophet, -632" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "al-Azhar, Majmaʻal-Buḥūth al-Islāmīyah" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Rasūl, ṣallá Allāh ʻalayhi wa-sallam, lamḁhāt min ̥hayātih .... wa-nafaḥāt min hadyih" - ], - "shelfMark": [ - "*OGE 82-2828" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Maḥmūd, ʻAbd al-Ḥalīm." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "76960922" - ], - "seriesStatement": [ - "Silsilat al-buḥūth al-Islāmīyah, al-kitāb 1" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGE 82-2828" - }, - { - "type": "nypl:Bnumber", - "value": "10000818" - }, - { - "type": "bf:Lccn", - "value": "76960922" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000227-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200827" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200817" - } - ], - "idOclc": [ - "NYPG002000227-B" - ], - "updatedAt": 1674870777259, - "publicationStatement": [ - "[al-Qāhirah] al-Azhar, Majmaʻal-Buḥūth al-Islāmīyah, 1969." - ], - "identifier": [ - "urn:bnum:10000818", - "urn:lccn:76960922", - "urn:oclc:NYPG002000227-B", - "urn:undefined:NNSZ00200827", - "urn:undefined:(WaOLN)nyp0200817" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Muḥammad, Prophet, -632." - ], - "titleDisplay": [ - "al-Rasūl, ṣallá Allāh ʻalayhi wa-sallam, lamḁhāt min ̥hayātih .... wa-nafaḥāt min hadyih [taʻlīf] ʻAbd al-Ḥalīm Maḥmūd." - ], - "uri": "b10000818", - "lccClassification": [ - "BP75.2 .M32" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al-Qāhirah]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10000818" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858070", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OGE 82-2828" - ], - "identifierV2": [ - { - "value": "*OGE 82-2828", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433057993358" - } - ], - "physicalLocation": [ - "*OGE 82-2828" - ], - "identifier": [ - "urn:barcode:33433057993358" - ], - "idBarcode": [ - "33433057993358" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OGE 82-002828" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10000912", - "_score": null, - "_source": { - "extent": [ - "245 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Tulasīdāsa, 1532-1623" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Granthama" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1972 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tulasī kā mānasa." - ], - "shelfMark": [ - "*OLY 83-31" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Sharma, Munshi Ram, 1901-" - ], - "createdString": [ - "1972" - ], - "idLccn": [ - "72901165" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 1972 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-31" - }, - { - "type": "nypl:Bnumber", - "value": "10000912" - }, - { - "type": "bf:Lccn", - "value": "72901165" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000322-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00200922" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0200911" - } - ], - "idOclc": [ - "NYPG002000322-B" - ], - "updatedAt": 1674870783590, - "publicationStatement": [ - "Kānapura, Granthama [1972]" - ], - "identifier": [ - "urn:bnum:10000912", - "urn:lccn:72901165", - "urn:oclc:NYPG002000322-B", - "urn:undefined:NNSZ00200922", - "urn:undefined:(WaOLN)nyp0200911" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1972" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Tulasīdāsa, 1532-1623." - ], - "titleDisplay": [ - "Tulasī kā mānasa. [Lekhaka] Munśīrāma Śarmā." - ], - "uri": "b10000912", - "lccClassification": [ - "PK2095.T8 R3394" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kānapura" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10000912" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783983", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-31" - ], - "identifierV2": [ - { - "value": "*OLY 83-31", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417726" - } - ], - "physicalLocation": [ - "*OLY 83-31" - ], - "identifier": [ - "urn:barcode:33433060417726" - ], - "idBarcode": [ - "33433060417726" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLY 83-000031" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001029", - "_score": null, - "_source": { - "extent": [ - "xivi, 400, 52 p., [14] leaves of plates : ill. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil, foreword in English.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Cēsatri, Swami, 1870-1929", - "Hindus", - "Hindus -- Biography" - ], - "publisherLiteral": [ - "Srī Satkuru Cēsātri Svāmikaḷ Matyasta Pracārasapā," - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tiruvaṇṇāmalai Srī Cēṣātri Svāmikaḷ carittiram" - ], - "shelfMark": [ - "*OLY 83-4924" - ], - "creatorLiteral": [ - "Nārāyaṇa Cāstirikal, Kuḻumaṇi." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76902259" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-4924" - }, - { - "type": "nypl:Bnumber", - "value": "10001029" - }, - { - "type": "bf:Lccn", - "value": "76902259" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201039" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201028" - } - ], - "updatedAt": 1636139596240, - "publicationStatement": [ - "Kōyamputtūr : Srī Satkuru Cēsātri Svāmikaḷ Matyasta Pracārasapā, 1975." - ], - "identifier": [ - "urn:bnum:10001029", - "urn:lccn:76902259", - "urn:undefined:NNSZ00201039", - "urn:undefined:(WaOLN)nyp0201028" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Cēsatri, Swami, 1870-1929.", - "Hindus -- Biography." - ], - "titleDisplay": [ - "Tiruvaṇṇāmalai Srī Cēṣātri Svāmikaḷ carittiram / eḻutiyatu Kuḻumaṇi Nārāyaṇa Cāstirikaḷ." - ], - "uri": "b10001029", - "lccClassification": [ - "BL1175.C47 N37 1975" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Kōyamputtūr :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10001029" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783994", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-4924" - ], - "identifierV2": [ - { - "value": "*OLY 83-4924", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419664" - } - ], - "physicalLocation": [ - "*OLY 83-4924" - ], - "identifier": [ - "urn:barcode:33433060419664" - ], - "idBarcode": [ - "33433060419664" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-004924" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001042", - "_score": null, - "_source": { - "extent": [ - "30, 122 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: Tarkabhasha & Anekantavadanirasa of Mokshakaragupta and Jitaripad.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Running title: Bauddha-tarkabhāṣā.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Hindi and Sanskrit; introductory matter in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Buddhist logic" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Prācya Prakāśana" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā." - ], - "shelfMark": [ - "*OLWF 83-4679" - ], - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Mokṣākara Gupta." - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "71901168" - ], - "numElectronicResources": [ - 0 - ], - "contributorLiteral": [ - "Jitāri, active 940-980.", - "Giri, Ragunath." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLWF 83-4679" - }, - { - "type": "nypl:Bnumber", - "value": "10001042" - }, - { - "type": "bf:Lccn", - "value": "71901168" - }, - { - "type": "nypl:Oclc", - "value": "NYPG002000452-B" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201052" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201041" - } - ], - "idOclc": [ - "NYPG002000452-B" - ], - "updatedAt": 1673986529749, - "publicationStatement": [ - "Vārāṇasī, Prācya Prakāśana [1969]" - ], - "identifier": [ - "urn:bnum:10001042", - "urn:lccn:71901168", - "urn:oclc:NYPG002000452-B", - "urn:undefined:NNSZ00201052", - "urn:undefined:(WaOLN)nyp0201041" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Buddhist logic." - ], - "titleDisplay": [ - "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā. Jitāripādaviracitaḥ Anekāntavādanirāsaḥ, Hindīanuvādasahitaḥ. Sampādakaḥ anuvādakaśca Raghunāthagiriḥ." - ], - "uri": "b10001042", - "lccClassification": [ - "BC25 .M65" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasī" - ], - "titleAlt": [ - "Bauddha-tarkabhāṣā.", - "Tarkabhasha.", - "Anekantavadanirasa." - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10001042" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13783998", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLWF 83-4679" - ], - "identifierV2": [ - { - "value": "*OLWF 83-4679", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433059862981" - } - ], - "physicalLocation": [ - "*OLWF 83-4679" - ], - "identifier": [ - "urn:barcode:33433059862981" - ], - "idBarcode": [ - "33433059862981" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "type": [ - "bf:Item" - ], - "formatLiteral": [ - "Text" - ], - "shelfMark_sort": "a*OLWF 83-004679" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001083", - "_score": null, - "_source": { - "extent": [ - "9, 142 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes index.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in Sanskrit; prefatory matter in Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jaina logic" - ], - "publisherLiteral": [ - "Bhāratīya Prācyatatva-Prakāśana Samiti ; prāptisthāna, Śā. Ramaṇala Vajecanda," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "dateEndString": [ - "1975" - ], - "createdYear": [ - 1974 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vādasaṅgraha" - ], - "shelfMark": [ - "*OLX 84-289" - ], - "creatorLiteral": [ - "Yaśovijaya, 1624-1688." - ], - "createdString": [ - "1974" - ], - "idLccn": [ - "76902374" - ], - "dateStartYear": [ - 1974 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLX 84-289" - }, - { - "type": "nypl:Bnumber", - "value": "10001083" - }, - { - "type": "bf:Lccn", - "value": "76902374" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201094" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201082" - } - ], - "dateEndYear": [ - 1975 - ], - "updatedAt": 1636143035644, - "publicationStatement": [ - "Pindabāṛā : Bhāratīya Prācyatatva-Prakāśana Samiti ; Ȧhamadābāda : prāptisthāna, Śā. Ramaṇala Vajecanda, Vikrama Saṃ 2031 [1974 or 1975]" - ], - "identifier": [ - "urn:bnum:10001083", - "urn:lccn:76902374", - "urn:undefined:NNSZ00201094", - "urn:undefined:(WaOLN)nyp0201082" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1974" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jaina logic." - ], - "titleDisplay": [ - "Vādasaṅgraha / Yaśovijayopādhyāyaviracita." - ], - "uri": "b10001083", - "lccClassification": [ - "BC25 .Y38" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Pindabāṛā : Ȧhamadābāda :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10001083" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784009", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLX 84-289" - ], - "identifierV2": [ - { - "value": "*OLX 84-289", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060359589" - } - ], - "physicalLocation": [ - "*OLX 84-289" - ], - "identifier": [ - "urn:barcode:33433060359589" - ], - "idBarcode": [ - "33433060359589" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLX 84-000289" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001094", - "_score": null, - "_source": { - "extent": [ - "2 v. : ports. ;" - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Church history", - "Coptic church", - "Coptic church -- History" - ], - "publisherLiteral": [ - "Maktabat al-Maḥabbah," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 1964 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Kharīdah al-nafīsah fī tārīkh al-kanīsah" - ], - "shelfMark": [ - "*OCF 81-3103" - ], - "creatorLiteral": [ - "Īsīdhūrūs, Bishop, 1867-1942." - ], - "createdString": [ - "1964" - ], - "contributorLiteral": [ - "Arsānyūs al-Muḥarraqī." - ], - "dateStartYear": [ - 1964 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OCF 81-3103" - }, - { - "type": "nypl:Bnumber", - "value": "10001094" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201106" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201093" - } - ], - "updatedAt": 1636072387033, - "publicationStatement": [ - "[S.l.] : Maktabat al-Maḥabbah, 1964" - ], - "identifier": [ - "urn:bnum:10001094", - "urn:undefined:NNSZ00201106", - "urn:undefined:(WaOLN)nyp0201093" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1964" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Church history.", - "Coptic church -- History." - ], - "titleDisplay": [ - "al-Kharīdah al-nafīsah fī tārīkh al-kanīsah / qām bi-ṭabʻihi al-Qummuṣ ʻAṭā Allāh Arsānyūs al-Muḥarraqī ... ʻan al-nuskhah al-aṣlīyah lil-Usquf al-Anbā Īsīdhūrūs." - ], - "uri": "b10001094", - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "[S.l.] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10001094" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "uri": "i11900431", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "identifier": [ - "urn:barcode:33433017339361" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433017339361" - } - ], - "idBarcode": [ - "33433017339361" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [ - "*OCF 81-3103" - ], - "shelfMark_sort": "a*OCF 81-003103" - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i11900430", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "identifier": [ - "urn:barcode:33433017339353" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433017339353" - } - ], - "idBarcode": [ - "33433017339353" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [ - "*OCF 81-3103" - ], - "shelfMark_sort": "a*OCF 81-003103" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001112", - "_score": null, - "_source": { - "extent": [ - "80 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Arabic.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Muḥammad, Prophet, -632", - "Muḥammad, Prophet, -632 -- Prayers and devotions" - ], - "publisherLiteral": [ - "Mukhtār Abū al-ʻAzāʼim," - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "al-Bashāʼir fī mawlid al-Mukhtār ..." - ], - "shelfMark": [ - "*OGE 82-1575" - ], - "creatorLiteral": [ - "Abū al-ʻAzāʼim, Muḥammad Māḍī." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74960195" - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OGE 82-1575" - }, - { - "type": "nypl:Bnumber", - "value": "10001112" - }, - { - "type": "bf:Lccn", - "value": "74960195" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201124" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201111" - } - ], - "updatedAt": 1636072366534, - "publicationStatement": [ - "[al. Qāhirah] : Mukhtār Abū al-ʻAzāʼim, [1973]" - ], - "identifier": [ - "urn:bnum:10001112", - "urn:lccn:74960195", - "urn:undefined:NNSZ00201124", - "urn:undefined:(WaOLN)nyp0201111" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Muḥammad, Prophet, -632 -- Prayers and devotions." - ], - "titleDisplay": [ - "al-Bashāʼir fī mawlid al-Mukhtār ... / lil-sayyid Muḥammad Māḍī Abū al-ʻAzāʼim." - ], - "uri": "b10001112", - "lccClassification": [ - "BP75.2 .A18" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[al. Qāhirah] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "24 cm." - ] - }, - "sort": [ - "b10001112" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i12858081", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "identifier": [ - "urn:barcode:33433057993127" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433057993127" - } - ], - "idBarcode": [ - "33433057993127" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [ - "*OGE 82-1575" - ], - "shelfMark_sort": "a*OGE 82-001575" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001164", - "_score": null, - "_source": { - "extent": [ - "36, 608, 40 p. port." - ], - "note": [ - { - "noteType": "Note", - "label": "Added t.p.: The philosophy of oriental music, by Michael Allawerdi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Music, Oriental", - "Music, Oriental -- History and criticism" - ], - "language": [ - { - "id": "lang:ara", - "label": "Arabic" - } - ], - "createdYear": [ - 1950 - ], - "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" - ], - "creatorLiteral": [ - "Allawerdi, Michael." - ], - "createdString": [ - "1950" - ], - "idLccn": [ - "ne 66001433 /MN" - ], - "contributorLiteral": [ - "Otto Kinkeldey Memorial Collection." - ], - "dateStartYear": [ - 1950 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "JME 82-175" - }, - { - "type": "nypl:Bnumber", - "value": "10001164" - }, - { - "type": "bf:Lccn", - "value": "ne 66001433 /MN" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201177" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201163" - } - ], - "updatedAt": 1637345506387, - "publicationStatement": [ - "Dimashq [1950]" - ], - "identifier": [ - "urn:bnum:10001164", - "urn:lccn:ne 66001433 /MN", - "urn:undefined:NNSZ00201177", - "urn:undefined:(WaOLN)nyp0201163" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1950" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Music, Oriental -- History and criticism." - ], - "titleDisplay": [ - "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 [+aʼlīf] M. Allāh Wīrdī." - ], - "uri": "b10001164", - "lccClassification": [ - "ML330. A44" - ], - "numItems": [ - 2 - ], - "numAvailable": [ - 2 - ], - "placeOfPublication": [ - "Dimashq" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Philosophy of oriental music." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10001164" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 2, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:33433032678454" - ], - "shelfMark_sort": "aJME 82-000175", - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i10942096", - "shelfMark": [ - "JME 82-175" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433032678454" - } - ], - "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" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:rcpm2", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NP" - ] - }, - "sort": [ - null - ] - }, - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:33433098691227" - ], - "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" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "i28274409", - "shelfMark": [ - "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" - }, - { - "type": "bf:Barcode", - "value": "33433098691227" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433098691227" - ], - "requestable": [ - false - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001190", - "_score": null, - "_source": { - "extent": [ - "320p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Colophon title.", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Bibliography: p. 313-320.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Chinese literature", - "Chinese literature -- Qing dynasty, 1644-1912", - "Chinese literature -- Qing dynasty, 1644-1912 -- History and criticism" - ], - "publisherLiteral": [ - "Wen jin chu ban she," - ], - "language": [ - { - "id": "lang:chi", - "label": "Chinese" - } - ], - "createdYear": [ - 1975 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Tʻung-Chʻeng pʻai wen hsueh shih" - ], - "shelfMark": [ - "*OVK 82-796" - ], - "creatorLiteral": [ - "Ye, Long." - ], - "createdString": [ - "1975" - ], - "idLccn": [ - "76838266" - ], - "dateStartYear": [ - 1975 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OVK 82-796" - }, - { - "type": "nypl:Bnumber", - "value": "10001190" - }, - { - "type": "bf:Lccn", - "value": "76838266" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201203" - } - ], - "updatedAt": 1636140614104, - "publicationStatement": [ - "[Taipei] : Wen jin chu ban she, Min'guo 64 [1975]" - ], - "identifier": [ - "urn:bnum:10001190", - "urn:lccn:76838266", - "urn:undefined:NNSZ00201203" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1975" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Chinese literature -- Qing dynasty, 1644-1912 -- History and criticism." - ], - "titleDisplay": [ - "Tʻung-Chʻeng pʻai wen hsueh shih / Zhu zuo zhe Ye Long." - ], - "uri": "b10001190", - "lccClassification": [ - "PL2297 .Y4" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Taipei] :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10001190" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i10000788", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OVK 82-796" - ], - "identifierV2": [ - { - "value": "*OVK 82-796", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433011952243" - } - ], - "physicalLocation": [ - "*OVK 82-796" - ], - "identifier": [ - "urn:barcode:33433011952243" - ], - "idBarcode": [ - "33433011952243" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OVK 82-000796" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001233", - "_score": null, - "_source": { - "extent": [ - "xviii, 269 p. ;" - ], - "note": [ - { - "noteType": "Note", - "label": "In Malayalam.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Classical Hindu text.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Krishna (Hindu deity)" - ], - "publisherLiteral": [ - "Kēraḷa Sāhitya Akkādami ; vitaraṇaṃ, Nāṣanal Bukk Sṯāḷ," - ], - "language": [ - { - "id": "lang:mal", - "label": "Malayalam" - } - ], - "createdYear": [ - 1976 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Bhāgavataṃ : Irupattināluvrttaṃ" - ], - "shelfMark": [ - "*OLY 84-598" - ], - "createdString": [ - "1976" - ], - "idLccn": [ - "78900499" - ], - "contributorLiteral": [ - "Krṣṇapiḷḷa, Es. En." - ], - "dateStartYear": [ - 1976 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-598" - }, - { - "type": "nypl:Bnumber", - "value": "10001233" - }, - { - "type": "bf:Lccn", - "value": "78900499" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201246" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201231" - } - ], - "uniformTitle": [ - "Puranas. Bhāgavatapurāṇa. Malayalam." - ], - "updatedAt": 1636077703170, - "publicationStatement": [ - "[Trśūr] : Kēraḷa Sāhitya Akkādami ; Kōṭṭayaṃ : vitaraṇaṃ, Nāṣanal Bukk Sṯāḷ, 1976." - ], - "identifier": [ - "urn:bnum:10001233", - "urn:lccn:78900499", - "urn:undefined:NNSZ00201246", - "urn:undefined:(WaOLN)nyp0201231" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1976" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Krishna (Hindu deity)" - ], - "titleDisplay": [ - "Bhāgavataṃ : Irupattināluvrttaṃ" - ], - "uri": "b10001233", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Trśūr] : Kōṭṭayaṃ :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "20 cm." - ] - }, - "sort": [ - "b10001233" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784029", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-598" - ], - "identifierV2": [ - { - "value": "*OLY 84-598", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419870" - } - ], - "physicalLocation": [ - "*OLY 84-598" - ], - "identifier": [ - "urn:barcode:33433060419870" - ], - "idBarcode": [ - "33433060419870" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 84-000598" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001239", - "_score": null, - "_source": { - "extent": [ - "679 p. : ports. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Hindi.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Ramana, Maharshi" - ], - "publisherLiteral": [ - "Śivalāla Agravāla eṇḍa Kampanī" - ], - "language": [ - { - "id": "lang:hin", - "label": "Hindi" - } - ], - "createdYear": [ - 1979 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Ramaṇa Maharshi se bātacīta" - ], - "shelfMark": [ - "*OLY 82-3982" - ], - "creatorLiteral": [ - "Śarma, Dineśacandra." - ], - "createdString": [ - "1979" - ], - "contributorLiteral": [ - "Osbourne, Arthur." - ], - "dateStartYear": [ - 1979 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 82-3982" - }, - { - "type": "nypl:Bnumber", - "value": "10001239" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201252" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201237" - } - ], - "updatedAt": 1653404628484, - "publicationStatement": [ - "Āgarā : Śivalāla Agravāla eṇḍa Kampanī, 1979." - ], - "identifier": [ - "urn:bnum:10001239", - "urn:undefined:NNSZ00201252", - "urn:undefined:(WaOLN)nyp0201237" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1979" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Ramana, Maharshi." - ], - "titleDisplay": [ - "Śrī Ramaṇa Maharshi se bātacīta / saṅgrahakartā Śrī Sunagala Esa. Veṅkaṭarāmaiyā ; bhūmikā-lekhaka Dā. Ṭī. Ema. Pī. Mahādevana ; prastāvanā lekhaka Mejara E. Ḍablyū. Caiḍavika ; anuvādaka Srī Dineśacandra Śarmā." - ], - "uri": "b10001239", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Āgarā" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10001239" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784032", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 82-3982" - ], - "identifierV2": [ - { - "value": "*OLY 82-3982", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417494" - } - ], - "physicalLocation": [ - "*OLY 82-3982" - ], - "identifier": [ - "urn:barcode:33433060417494" - ], - "idBarcode": [ - "33433060417494" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 82-003982" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001240", - "_score": null, - "_source": { - "extent": [ - "[8], 8, lxv, 888 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Introductory matter in English, Hindi, or Sanskrit; extant portion of the autocommentary, Bhāvadīpkā, in Sanskrit.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title on spine: The Vedānta-kaumudī, with Bhāva-dīpika of Rāmādvayācārya, a critical edition.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Caption title: Śrī Rāmādvayācāryakrtā Vedāntakaumudī.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Advaita", - "Bādarāyaṇa" - ], - "publisherLiteral": [ - "Kāśī Hindū Viśvavidyālaya Śodhaprakáśana," - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "createdYear": [ - 1973 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā." - ], - "shelfMark": [ - "*OKN 84-1977" - ], - "creatorLiteral": [ - "Rāmādvaya, active 14th century." - ], - "createdString": [ - "1973" - ], - "idLccn": [ - "74903417" - ], - "seriesStatement": [ - "Kāśī Hindū Viśvavidyālaya Saṃskrtagranthamālā, puṣpa 9", - "Śodhaprakāśanayojanā" - ], - "contributorLiteral": [ - "Caturvedī, Rādheśyāma, 1940-", - "Rāmādvaya, active 14th century." - ], - "dateStartYear": [ - 1973 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKN 84-1977" - }, - { - "type": "nypl:Bnumber", - "value": "10001240" - }, - { - "type": "bf:Lccn", - "value": "74903417" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201253" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201238" - } - ], - "uniformTitle": [ - "Vedāntakaumudī. Hindi & Sanskrit." - ], - "updatedAt": 1641393543446, - "publicationStatement": [ - "Vārāṇasī] Kāśī Hindū Viśvavidyālaya Śodhaprakáśana, 1973." - ], - "identifier": [ - "urn:bnum:10001240", - "urn:lccn:74903417", - "urn:undefined:NNSZ00201253", - "urn:undefined:(WaOLN)nyp0201238" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1973" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Advaita.", - "Bādarāyaṇa." - ], - "titleDisplay": [ - "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā. [Sampādaka, anuvādaka, tathā ṭippaṇīkāra] Rādheśyāma Caturvedī." - ], - "uri": "b10001240", - "lccClassification": [ - "B132.A3 R2815" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasī]" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Vedāntakaumudī." - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10001240" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784033", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "identifier": [ - "urn:barcode:33433058618418" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433058618418" - } - ], - "idBarcode": [ - "33433058618418" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [ - "*OKN 84-1977" - ], - "shelfMark_sort": "a*OKN 84-001977" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001310", - "_score": null, - "_source": { - "extent": [ - "44 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hinduism", - "Hinduism -- Controversial literature", - "Tamil (Indic people)", - "Tamil (Indic people) -- Religion", - "Tiruvaḷḷuvar" - ], - "publisherLiteral": [ - "Tamiḻaṉ Nilaiyam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1971 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Nāṉ Intu alla, eṉatu matam Tiruvaḷḷuvam." - ], - "shelfMark": [ - "*OLY 83-1642" - ], - "creatorLiteral": [ - "Kiruṣṇaṉ, P." - ], - "createdString": [ - "1971" - ], - "idLccn": [ - "73903976" - ], - "dateStartYear": [ - 1971 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-1642" - }, - { - "type": "nypl:Bnumber", - "value": "10001310" - }, - { - "type": "bf:Lccn", - "value": "73903976" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201324" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201308" - } - ], - "updatedAt": 1636119343632, - "publicationStatement": [ - "Karūr, Tirucci Māvaṭṭam, Tamiḻaṉ Nilaiyam [1971]" - ], - "identifier": [ - "urn:bnum:10001310", - "urn:lccn:73903976", - "urn:undefined:NNSZ00201324", - "urn:undefined:(WaOLN)nyp0201308" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1971" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hinduism -- Controversial literature.", - "Tamil (Indic people) -- Religion.", - "Tiruvaḷḷuvar." - ], - "titleDisplay": [ - "Nāṉ Intu alla, eṉatu matam Tiruvaḷḷuvam. [Eḻutiyavar]Pe. Kiruṣṇaṉ." - ], - "uri": "b10001310", - "lccClassification": [ - "BL1211 .K57" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Karūr, Tirucci Māvaṭṭam," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm." - ] - }, - "sort": [ - "b10001310" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784058", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-1642" - ], - "identifierV2": [ - { - "value": "*OLY 83-1642", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418260" - } - ], - "physicalLocation": [ - "*OLY 83-1642" - ], - "identifier": [ - "urn:barcode:33433060418260" - ], - "idBarcode": [ - "33433060418260" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-001642" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001316", - "_score": null, - "_source": { - "extent": [ - "xxvi. 90 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Parvati (Hindu deity)", - "Parvati (Hindu deity) -- Poetry" - ], - "publisherLiteral": [ - "Amuta Nilaiyam" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Apirāmi antāti." - ], - "shelfMark": [ - "*OLY 83-1631" - ], - "creatorLiteral": [ - "Apirāmi Paṭṭar, active 18th century." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "77904332" - ], - "seriesStatement": [ - "Amutam, 171" - ], - "contributorLiteral": [ - "Jakannātaṉ, Ki. Vā., 1906-" - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-1631" - }, - { - "type": "nypl:Bnumber", - "value": "10001316" - }, - { - "type": "bf:Lccn", - "value": "77904332" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201330" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201314" - } - ], - "updatedAt": 1641330883378, - "publicationStatement": [ - "Ceṉṉai, Amuta Nilaiyam [1968]" - ], - "identifier": [ - "urn:bnum:10001316", - "urn:lccn:77904332", - "urn:undefined:NNSZ00201330", - "urn:undefined:(WaOLN)nyp0201314" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Parvati (Hindu deity) -- Poetry." - ], - "titleDisplay": [ - "Apirāmi antāti. Āciriyar Apirāmi Paṭṭar. Urai Āciriyar Ki. Vā. Jakannātaṉ." - ], - "uri": "b10001316", - "lccClassification": [ - "PL4758.9.A6 A8 1968" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10001316" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784062", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-1631" - ], - "identifierV2": [ - { - "value": "*OLY 83-1631", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418252" - } - ], - "physicalLocation": [ - "*OLY 83-1631" - ], - "identifier": [ - "urn:barcode:33433060418252" - ], - "idBarcode": [ - "33433060418252" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-001631" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001351", - "_score": null, - "_source": { - "extent": [ - "92 p. ;" - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Murugan (Hindu deity)", - "Murugan (Hindu deity) -- Poetry" - ], - "publisherLiteral": [ - "Vācuki Patippakam] ; viṟpaṉai urimai, Pāri Nilaiyam," - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Paḻaṉiyāṉ kātal" - ], - "shelfMark": [ - "*OLY 84-1362" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "77910693" - ], - "seriesStatement": [ - "Vācuki patippaka veḷiyīṭu 3" - ], - "contributorLiteral": [ - "Kōvintacāmi, M." - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 84-1362" - }, - { - "type": "nypl:Bnumber", - "value": "10001351" - }, - { - "type": "bf:Lccn", - "value": "77910693" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201367" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201349" - } - ], - "updatedAt": 1636121455901, - "publicationStatement": [ - "[Aṇṇāmalainakar : Vācuki Patippakam] ; Ceṉṉai : viṟpaṉai urimai, Pāri Nilaiyam, [1969]" - ], - "identifier": [ - "urn:bnum:10001351", - "urn:lccn:77910693", - "urn:undefined:NNSZ00201367", - "urn:undefined:(WaOLN)nyp0201349" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Murugan (Hindu deity) -- Poetry." - ], - "titleDisplay": [ - "Paḻaṉiyāṉ kātal / patippāciriyar Mu. Kōvintacāmi." - ], - "uri": "b10001351", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Aṇṇāmalainakar : Ceṉṉai :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10001351" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784068", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 84-1362" - ], - "identifierV2": [ - { - "value": "*OLY 84-1362", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060419987" - } - ], - "physicalLocation": [ - "*OLY 84-1362" - ], - "identifier": [ - "urn:barcode:33433060419987" - ], - "idBarcode": [ - "33433060419987" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 84-001362" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001374", - "_score": null, - "_source": { - "extent": [ - "18, 316 p." - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Hinduism", - "Hinduism -- Rituals" - ], - "publisherLiteral": [ - "[Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "createdYear": [ - 1963 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Saṃskāradīpakaḥ," - ], - "shelfMark": [ - "*OLY 83-204" - ], - "creatorLiteral": [ - "Jhā, Harṣanātha, 1845-1896." - ], - "createdString": [ - "1963" - ], - "idLccn": [ - "sa 68001970" - ], - "seriesStatement": [ - "Varanaseya Sanskrit Vishwavidyalaya. Research Institute. Gopīnāthakavirāja- granthamālā, 1" - ], - "contributorLiteral": [ - "Jhā, Durgādhara, 1909-1987.", - "Khanaṇga, Rāmacandraśāstrī." - ], - "dateStartYear": [ - 1963 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-204" - }, - { - "type": "nypl:Bnumber", - "value": "10001374" - }, - { - "type": "bf:Lccn", - "value": "sa 68001970" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201390" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201372" - } - ], - "updatedAt": 1636128327571, - "publicationStatement": [ - "Vārāṇasyām, [Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya] 1885 tame Śakābde [1963]" - ], - "identifier": [ - "urn:bnum:10001374", - "urn:lccn:sa 68001970", - "urn:undefined:NNSZ00201390", - "urn:undefined:(WaOLN)nyp0201372" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1963" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Hinduism -- Rituals." - ], - "titleDisplay": [ - "Saṃskāradīpakaḥ, Mahāmahopādhyāyaśrī harṣanāthajhāviracitaḥ. Śrīrāmacandraśāstrikhanaṅgakrtaṭippaṇībhiḥ pariṣkrtaḥ. Sampādakaḥ Srīdurgādharajhā." - ], - "uri": "b10001374", - "lccClassification": [ - "BL1226.2 .J46" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasyām," - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10001374" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784073", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-204" - ], - "identifierV2": [ - { - "value": "*OLY 83-204", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060417882" - } - ], - "physicalLocation": [ - "*OLY 83-204" - ], - "identifier": [ - "urn:barcode:33433060417882" - ], - "idBarcode": [ - "33433060417882" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-000204" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001378", - "_score": null, - "_source": { - "extent": [ - "7, 367 p." - ], - "note": [ - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Siva (Hindu deity)" - ], - "publisherLiteral": [ - "Vācu Piracuram" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1969 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Liṅka purāṇam." - ], - "shelfMark": [ - "*OLY 83-1666" - ], - "createdString": [ - "1969" - ], - "idLccn": [ - "77904612" - ], - "contributorLiteral": [ - "Ramanathan, S., 1931-" - ], - "dateStartYear": [ - 1969 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-1666" - }, - { - "type": "nypl:Bnumber", - "value": "10001378" - }, - { - "type": "bf:Lccn", - "value": "77904612" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201394" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201376" - } - ], - "uniformTitle": [ - "Puranas. Liṅgapurāṇa. Tamil." - ], - "updatedAt": 1653404628484, - "publicationStatement": [ - "Ceṉṉai, Vācu Piracuram [1969]" - ], - "identifier": [ - "urn:bnum:10001378", - "urn:lccn:77904612", - "urn:undefined:NNSZ00201394", - "urn:undefined:(WaOLN)nyp0201376" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Siva (Hindu deity)" - ], - "titleDisplay": [ - "Śrī Liṅka purāṇam. [Moḻipeyarppāciriyar] Kārttikēyaṉ." - ], - "uri": "b10001378", - "lccClassification": [ - "BL1218 .P86" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "18 cm." - ] - }, - "sort": [ - "b10001378" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784074", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-1666" - ], - "identifierV2": [ - { - "value": "*OLY 83-1666", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418278" - } - ], - "physicalLocation": [ - "*OLY 83-1666" - ], - "identifier": [ - "urn:barcode:33433060418278" - ], - "idBarcode": [ - "33433060418278" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-001666" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001379", - "_score": null, - "_source": { - "extent": [ - "12, 197 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Includes the commentary Ālokaprakāśa, by C.K. Raman Nambia and others.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Sanskrit.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Naya" - ], - "publisherLiteral": [ - "[Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya; Prāptisthānam: Prakāśanavibhāgaḥ, Vārāṇaseyasaṃskṛta viśvavidyālayaḥ]" - ], - "language": [ - { - "id": "lang:san", - "label": "Sanskrit" - } - ], - "createdYear": [ - 1965 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā" - ], - "shelfMark": [ - "*OKM 83-1701" - ], - "creatorLiteral": [ - "Sarmā, Sāstṛ." - ], - "createdString": [ - "1965" - ], - "idLccn": [ - "sa 68010892" - ], - "seriesStatement": [ - "Saravati Bhavana granthamala, 93" - ], - "contributorLiteral": [ - "Raman Nambiar, C. K." - ], - "dateStartYear": [ - 1965 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OKM 83-1701" - }, - { - "type": "nypl:Bnumber", - "value": "10001379" - }, - { - "type": "bf:Lccn", - "value": "sa 68010892" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201395" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201377" - } - ], - "updatedAt": 1653404628484, - "publicationStatement": [ - "Vārāṇasyām [Director, Research Institute, Varanaseya Sanskrit Vishvavidyalaya; Prāptisthānam: Prakāśanavibhāgaḥ, Vārāṇaseyasaṃskṛta viśvavidyālayaḥ] 1887 tame śakābde [1965]" - ], - "identifier": [ - "urn:bnum:10001379", - "urn:lccn:sa 68010892", - "urn:undefined:NNSZ00201395", - "urn:undefined:(WaOLN)nyp0201377" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1965" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Naya." - ], - "titleDisplay": [ - "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā, Śrīśāstṛśarmaṇā viracitā granthakāraśiṣyaiḥ saṃkalitayā ālokaprakāśaṭippaṇyopab̄rhita ca." - ], - "uri": "b10001379", - "lccClassification": [ - "B132.N8 S2" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Vārāṇasyām" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "25 cm." - ] - }, - "sort": [ - "b10001379" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784075", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "identifier": [ - "urn:barcode:33433058602826" - ], - "identifierV2": [ - { - "type": "bf:Barcode", - "value": "33433058602826" - } - ], - "idBarcode": [ - "33433058602826" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark": [ - "*OKM 83-1701" - ], - "shelfMark_sort": "a*OKM 83-001701" - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2018-04-09", - "_type": "resource", - "_id": "b10001388", - "_score": null, - "_source": { - "extent": [ - "36 p." - ], - "note": [ - { - "noteType": "Note", - "label": "Originally broadcast over All India Radio, Madras.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Without the music.", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Tamil.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Songs, Tamil", - "Songs, Tamil -- Texts", - "Parvati (Hindu deity)", - "Parvati (Hindu deity) -- Songs and music" - ], - "language": [ - { - "id": "lang:tam", - "label": "Tamil" - } - ], - "createdYear": [ - 1968 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Śrī Tēvi Mahātmiyam; kīrttaṉaikaḷ." - ], - "shelfMark": [ - "*OLY 83-1674" - ], - "creatorLiteral": [ - "Thiagarajan, K. C." - ], - "createdString": [ - "1968" - ], - "idLccn": [ - "70903904" - ], - "contributorLiteral": [ - "All India Radio." - ], - "dateStartYear": [ - 1968 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*OLY 83-1674" - }, - { - "type": "nypl:Bnumber", - "value": "10001388" - }, - { - "type": "bf:Lccn", - "value": "70903904" - }, - { - "type": "bf:Identifier", - "value": "NNSZ00201404" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp0201386" - } - ], - "updatedAt": 1653404628484, - "publicationStatement": [ - "[Ceṉṉai, 1968]" - ], - "identifier": [ - "urn:bnum:10001388", - "urn:lccn:70903904", - "urn:undefined:NNSZ00201404", - "urn:undefined:(WaOLN)nyp0201386" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1968" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Songs, Tamil -- Texts.", - "Parvati (Hindu deity) -- Songs and music." - ], - "titleDisplay": [ - "Śrī Tēvi Mahātmiyam; kīrttaṉaikaḷ. Ākkiyōṉ Kē. Si. Tiyākarājaṉ." - ], - "uri": "b10001388", - "lccClassification": [ - "M1808.T53 S7" - ], - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Ceṉṉai" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "19 cm." - ] - }, - "sort": [ - "b10001388" - ], - "inner_hits": { - "electronicResources": { - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "items": { - "hits": { - "total": 1, - "max_score": null, - "hits": [ - { - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "i13784080", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "shelfMark": [ - "*OLY 83-1674" - ], - "identifierV2": [ - { - "value": "*OLY 83-1674", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "33433060418286" - } - ], - "physicalLocation": [ - "*OLY 83-1674" - ], - "identifier": [ - "urn:barcode:33433060418286" - ], - "idBarcode": [ - "33433060418286" - ], - "requestable": [ - false - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "a*OLY 83-001674" - }, - "sort": [ - null - ] - } - ] - } - } - } - } - ] - } -} \ No newline at end of file diff --git a/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json b/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json index 2ba3d56a..a5ffa18c 100644 --- a/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json +++ b/test/fixtures/scsb-availability-by-bnum-d41d8cd98f00b204e9800998ecf8427e.json @@ -399,396 +399,396 @@ "itemBarcode": "33433108528377", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433108528385", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433108528393", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433108528401", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762741", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762733", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762725", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762717", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762709", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433110762691", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433114101987", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433114102043", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433114102084", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433114102134", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119892333", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119892341", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119892317", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119855579", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433121911253", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433121911105", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433121911097", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433121911246", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119855561", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433119872103", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433128200965", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433128201302", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433128201161", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433128201310", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433128200973", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239833", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239841", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239866", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657966", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433079122770", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433079122762", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239874", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657990", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657982", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657875", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657883", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657867", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657891", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239692", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239908", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433079122754", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239817", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239809", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239825", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239858", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239718", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239700", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239775", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239767", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239791", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657974", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239783", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239734", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239726", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239759", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433084239742", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657909", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657917", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657958", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657941", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657933", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" }, { "itemBarcode": "33433078657925", "itemAvailabilityStatus": "Available", "errorMessage": null, - "collectionGroupDesignation": "Shared" + "collectionGroupDesignation": "Open" } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-b4315e7200e7a00512bb05c6aaa0c3b4.json b/test/fixtures/scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json similarity index 50% rename from test/fixtures/scsb-by-barcode-b4315e7200e7a00512bb05c6aaa0c3b4.json rename to test/fixtures/scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json index 31aa0747..dbd009b6 100644 --- a/test/fixtures/scsb-by-barcode-b4315e7200e7a00512bb05c6aaa0c3b4.json +++ b/test/fixtures/scsb-by-barcode-49ee27f2d9834e5cb92d4018a9468a64.json @@ -1,4 +1,9 @@ [ + { + "itemBarcode": "32101087644330", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, { "itemBarcode": "32101087644330", "itemAvailabilityStatus": "Available", diff --git a/test/fixtures/scsb-by-barcode-da942f963c559b4c183cb45fb0a4d051.json b/test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json similarity index 100% rename from test/fixtures/scsb-by-barcode-da942f963c559b4c183cb45fb0a4d051.json rename to test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json index 57e38a17..81aa0cef 100644 --- a/test/fixtures/scsb-by-barcode-da942f963c559b4c183cb45fb0a4d051.json +++ b/test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json @@ -1,31 +1,31 @@ [ { - "itemBarcode": "33433136742404", + "itemBarcode": "33433136742412", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742420", + "itemBarcode": "33433136742438", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742438", + "itemBarcode": "33433136742420", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742412", + "itemBarcode": "33433136742404", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033321", + "itemBarcode": "33433130033313", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033305", + "itemBarcode": "33433130033339", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -35,12 +35,12 @@ "errorMessage": null }, { - "itemBarcode": "33433130033339", + "itemBarcode": "33433130033305", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033313", + "itemBarcode": "33433130033321", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -55,42 +55,42 @@ "errorMessage": null }, { - "itemBarcode": "33433099610952", + "itemBarcode": "33433099611091", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611083", + "itemBarcode": "33433099611075", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611109", + "itemBarcode": "33433099610945", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099610945", + "itemBarcode": "33433099611109", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611075", + "itemBarcode": "33433099611083", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611091", + "itemBarcode": "33433099610952", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099612925", + "itemBarcode": "33433099611133", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611125", + "itemBarcode": "33433099611117", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -100,102 +100,102 @@ "errorMessage": null }, { - "itemBarcode": "33433099611117", + "itemBarcode": "33433099611125", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611133", + "itemBarcode": "33433099612925", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611166", + "itemBarcode": "33433099611174", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611182", + "itemBarcode": "33433099611190", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611190", + "itemBarcode": "33433099611182", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611174", + "itemBarcode": "33433099611166", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063992", + "itemBarcode": "33433085064214", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064008", + "itemBarcode": "33433085064172", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063950", + "itemBarcode": "33433085063976", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063976", + "itemBarcode": "33433085063950", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064172", + "itemBarcode": "33433085064008", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064214", + "itemBarcode": "33433085063992", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063984", + "itemBarcode": "33433085064198", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063943", + "itemBarcode": "33433085063968", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064180", + "itemBarcode": "33433085064206", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064206", + "itemBarcode": "33433085064180", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063968", + "itemBarcode": "33433085063943", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064198", + "itemBarcode": "33433085063984", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240575", + "itemBarcode": "33433084240583", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240559", + "itemBarcode": "33433084240542", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -205,22 +205,22 @@ "errorMessage": null }, { - "itemBarcode": "33433084240542", + "itemBarcode": "33433084240559", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240583", + "itemBarcode": "33433084240575", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240526", + "itemBarcode": "33433084240500", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240518", + "itemBarcode": "33433084240534", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -230,22 +230,22 @@ "errorMessage": null }, { - "itemBarcode": "33433084240534", + "itemBarcode": "33433084240518", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240500", + "itemBarcode": "33433084240526", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240476", + "itemBarcode": "33433084240484", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240468", + "itemBarcode": "33433080028222", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -255,82 +255,82 @@ "errorMessage": null }, { - "itemBarcode": "33433080028222", + "itemBarcode": "33433084240468", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240484", + "itemBarcode": "33433084240476", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240443", + "itemBarcode": "33433084240419", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240427", + "itemBarcode": "33433084240435", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240401", + "itemBarcode": "33433084240450", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240450", + "itemBarcode": "33433084240401", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240435", + "itemBarcode": "33433084240427", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240419", + "itemBarcode": "33433084240443", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240385", + "itemBarcode": "33433084240351", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240369", + "itemBarcode": "33433084240377", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240344", + "itemBarcode": "33433084240393", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240393", + "itemBarcode": "33433084240344", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240377", + "itemBarcode": "33433084240369", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240351", + "itemBarcode": "33433084240385", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240328", + "itemBarcode": "33433084240310", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433079991612", + "itemBarcode": "33433084240336", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -340,22 +340,22 @@ "errorMessage": null }, { - "itemBarcode": "33433084240336", + "itemBarcode": "33433079991612", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240310", + "itemBarcode": "33433084240328", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240286", + "itemBarcode": "33433080426707", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240294", + "itemBarcode": "33433084240278", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -365,47 +365,47 @@ "errorMessage": null }, { - "itemBarcode": "33433084240278", + "itemBarcode": "33433084240294", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433080426707", + "itemBarcode": "33433084240286", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240211", + "itemBarcode": "33433084240260", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240245", + "itemBarcode": "33433084240237", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240252", + "itemBarcode": "33433084240229", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240229", + "itemBarcode": "33433084240252", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240237", + "itemBarcode": "33433084240245", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240260", + "itemBarcode": "33433084240211", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240203", + "itemBarcode": "33433084240195", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -415,7 +415,7 @@ "errorMessage": null }, { - "itemBarcode": "33433084240195", + "itemBarcode": "33433084240203", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -425,32 +425,32 @@ "errorMessage": null }, { - "itemBarcode": "33433078530031", + "itemBarcode": "33433078658113", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433081121117", + "itemBarcode": "33433078658105", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658105", + "itemBarcode": "33433081121117", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658113", + "itemBarcode": "33433078530031", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658089", + "itemBarcode": "33433078658063", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658071", + "itemBarcode": "33433078658097", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -460,42 +460,42 @@ "errorMessage": null }, { - "itemBarcode": "33433078658097", + "itemBarcode": "33433078658071", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658063", + "itemBarcode": "33433078658089", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658048", + "itemBarcode": "33433084240187", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658022", + "itemBarcode": "33433078658030", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240179", + "itemBarcode": "33433078658055", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658055", + "itemBarcode": "33433084240179", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433078658030", + "itemBarcode": "33433078658022", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240187", + "itemBarcode": "33433078658048", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null } diff --git a/test/fixtures/scsb-by-barcode-128f5b12c1ee2dd4132c06a4c7862d22.json b/test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json similarity index 87% rename from test/fixtures/scsb-by-barcode-128f5b12c1ee2dd4132c06a4c7862d22.json rename to test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json index 0c230e14..6c9ad16c 100644 --- a/test/fixtures/scsb-by-barcode-128f5b12c1ee2dd4132c06a4c7862d22.json +++ b/test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json @@ -1,501 +1,501 @@ [ { - "itemBarcode": "33433076151525", + "itemBarcode": "33433076133762", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433111930941", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433076133770", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076151517", + "itemBarcode": "33433076133788", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076135007", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076133796", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134992", + "itemBarcode": "33433076133804", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134984", + "itemBarcode": "33433076133812", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134976", + "itemBarcode": "33433076133820", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134968", + "itemBarcode": "33433076133838", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134950", + "itemBarcode": "33433076133846", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134943", + "itemBarcode": "33433076133853", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134935", + "itemBarcode": "33433076133861", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134927", + "itemBarcode": "33433076133879", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134919", + "itemBarcode": "33433076133887", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134901", + "itemBarcode": "33433076133895", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134893", + "itemBarcode": "33433076133903", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134885", + "itemBarcode": "33433076133911", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134877", + "itemBarcode": "33433076133929", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134869", + "itemBarcode": "33433076133937", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134851", + "itemBarcode": "33433076133945", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134844", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076133952", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134836", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076133960", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134828", + "itemBarcode": "33433076133978", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134810", + "itemBarcode": "33433076133986", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134802", + "itemBarcode": "33433076133994", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134794", + "itemBarcode": "33433076134000", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134786", + "itemBarcode": "33433076134018", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134778", + "itemBarcode": "33433076134026", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134760", + "itemBarcode": "33433076134034", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134752", + "itemBarcode": "33433076134042", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134745", + "itemBarcode": "33433076134059", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134737", + "itemBarcode": "33433076134067", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134729", + "itemBarcode": "33433076134075", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134711", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076134083", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134703", + "itemBarcode": "33433076134091", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134695", + "itemBarcode": "33433076134109", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134687", + "itemBarcode": "33433076134117", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134679", + "itemBarcode": "33433076134125", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134661", + "itemBarcode": "33433076134133", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134653", + "itemBarcode": "33433076134141", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134646", + "itemBarcode": "33433076134158", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134638", + "itemBarcode": "33433076134166", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134620", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076134174", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134612", + "itemBarcode": "33433076134182", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134604", + "itemBarcode": "33433076134190", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134596", + "itemBarcode": "33433076134208", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134588", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076134216", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134570", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076134224", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134562", + "itemBarcode": "33433076134232", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134554", + "itemBarcode": "33433076134240", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134547", + "itemBarcode": "33433076134257", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134539", + "itemBarcode": "33433076134265", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134521", + "itemBarcode": "33433076134273", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134513", + "itemBarcode": "33433076134281", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134505", + "itemBarcode": "33433076134299", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134497", + "itemBarcode": "33433076134307", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134489", + "itemBarcode": "33433076134315", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134471", + "itemBarcode": "33433076134323", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134463", + "itemBarcode": "33433076134331", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134455", + "itemBarcode": "33433076134349", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134448", + "itemBarcode": "33433076134356", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134430", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433076134364", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433076134422", + "itemBarcode": "33433076134372", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134414", + "itemBarcode": "33433076134380", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134406", + "itemBarcode": "33433076134398", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134398", + "itemBarcode": "33433076134406", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134380", + "itemBarcode": "33433076134414", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134372", + "itemBarcode": "33433076134422", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134364", + "itemBarcode": "33433076134430", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134356", + "itemBarcode": "33433076134448", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134349", + "itemBarcode": "33433076134455", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134331", + "itemBarcode": "33433076134463", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134323", + "itemBarcode": "33433076134471", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134315", + "itemBarcode": "33433076134489", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134307", + "itemBarcode": "33433076134497", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134299", + "itemBarcode": "33433076134505", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134281", + "itemBarcode": "33433076134513", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134273", + "itemBarcode": "33433076134521", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134265", + "itemBarcode": "33433076134539", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134257", + "itemBarcode": "33433076134547", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134240", + "itemBarcode": "33433076134554", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134232", + "itemBarcode": "33433076134562", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134224", + "itemBarcode": "33433076134570", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134216", + "itemBarcode": "33433076134588", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134208", + "itemBarcode": "33433076134596", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134190", + "itemBarcode": "33433076134604", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134182", + "itemBarcode": "33433076134612", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134174", + "itemBarcode": "33433076134620", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134166", + "itemBarcode": "33433076134638", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134158", + "itemBarcode": "33433076134646", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134141", + "itemBarcode": "33433076134653", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134133", + "itemBarcode": "33433076134661", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134125", + "itemBarcode": "33433076134679", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134117", + "itemBarcode": "33433076134687", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134109", + "itemBarcode": "33433076134695", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134091", + "itemBarcode": "33433076134703", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134083", + "itemBarcode": "33433076134711", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134075", + "itemBarcode": "33433076134729", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134067", + "itemBarcode": "33433076134737", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134059", + "itemBarcode": "33433076134745", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433076134042", + "itemBarcode": "33433076134752", "itemAvailabilityStatus": "Available", "errorMessage": null } diff --git a/test/fixtures/scsb-by-barcode-1b7617efc4c13c001722342534fecbac.json b/test/fixtures/scsb-by-barcode-5aa8466d9f5620b303b09ea3f221fab2.json similarity index 94% rename from test/fixtures/scsb-by-barcode-1b7617efc4c13c001722342534fecbac.json rename to test/fixtures/scsb-by-barcode-5aa8466d9f5620b303b09ea3f221fab2.json index 1240ffb6..7dd1483c 100644 --- a/test/fixtures/scsb-by-barcode-1b7617efc4c13c001722342534fecbac.json +++ b/test/fixtures/scsb-by-barcode-5aa8466d9f5620b303b09ea3f221fab2.json @@ -1,12 +1,12 @@ [ { - "itemBarcode": "33433084847221", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433061318089", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433061318089", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433084847221", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { @@ -521,7 +521,7 @@ }, { "itemBarcode": "33433017526942", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { @@ -549,6 +549,46 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, + { + "itemBarcode": "33433109377063", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109377055", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109377048", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109377030", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109377022", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109377014", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109375604", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433109375596", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, { "itemBarcode": "33433108987573", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", @@ -600,12 +640,12 @@ "errorMessage": null }, { - "itemBarcode": "33433064468642", + "itemBarcode": "33433064479805", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433064479805", + "itemBarcode": "33433064468642", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -674,18 +714,13 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, - { - "itemBarcode": "33433075624647", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, { "itemBarcode": "33433075624639", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433064471539", + "itemBarcode": "33433075624647", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -695,7 +730,7 @@ "errorMessage": null }, { - "itemBarcode": "33433064470564", + "itemBarcode": "33433064471539", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -705,17 +740,17 @@ "errorMessage": null }, { - "itemBarcode": "33433064470549", + "itemBarcode": "33433064470564", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433064452521", + "itemBarcode": "33433064470549", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433064452513", + "itemBarcode": "33433064452521", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -725,7 +760,7 @@ "errorMessage": null }, { - "itemBarcode": "33433022621456", + "itemBarcode": "33433064452513", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -735,22 +770,22 @@ "errorMessage": null }, { - "itemBarcode": "33433022619021", + "itemBarcode": "33433022621456", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433022582096", + "itemBarcode": "33433022619021", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433018654123", + "itemBarcode": "33433022582096", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433018654362", + "itemBarcode": "33433018654123", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -760,7 +795,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654602", + "itemBarcode": "33433018654362", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -770,7 +805,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654230", + "itemBarcode": "33433018654602", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -780,7 +815,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654479", + "itemBarcode": "33433018654230", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -790,7 +825,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654107", + "itemBarcode": "33433018654479", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -800,7 +835,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654347", + "itemBarcode": "33433018654107", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -810,7 +845,7 @@ "errorMessage": null }, { - "itemBarcode": "33433018654586", + "itemBarcode": "33433018654347", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -820,12 +855,12 @@ "errorMessage": null }, { - "itemBarcode": "33433018654099", + "itemBarcode": "33433018654586", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433018654339", + "itemBarcode": "33433018654099", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -834,6 +869,11 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, + { + "itemBarcode": "33433018654339", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, { "itemBarcode": "33433018654453", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", @@ -875,12 +915,12 @@ "errorMessage": null }, { - "itemBarcode": "33433018654321", + "itemBarcode": "33433018654313", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433018654313", + "itemBarcode": "33433018654321", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, diff --git a/test/fixtures/scsb-by-barcode-b3232841610dbf201ae490784d7f504f.json b/test/fixtures/scsb-by-barcode-5dc39526e3786ae0cbecbdef1db3e7a4.json similarity index 68% rename from test/fixtures/scsb-by-barcode-b3232841610dbf201ae490784d7f504f.json rename to test/fixtures/scsb-by-barcode-5dc39526e3786ae0cbecbdef1db3e7a4.json index b422c988..f0e8386c 100644 --- a/test/fixtures/scsb-by-barcode-b3232841610dbf201ae490784d7f504f.json +++ b/test/fixtures/scsb-by-barcode-5dc39526e3786ae0cbecbdef1db3e7a4.json @@ -1,22 +1,27 @@ [ { - "itemBarcode": "33433076543143", + "itemBarcode": "33433076530082", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, + { + "itemBarcode": "33433076543143", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, { "itemBarcode": "33433072299997", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { "itemBarcode": "33433076529019", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { "itemBarcode": "33433076528763", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { @@ -189,11 +194,6 @@ "itemAvailabilityStatus": "Available", "errorMessage": null }, - { - "itemBarcode": "33433116522354", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, { "itemBarcode": "33433115147914", "itemAvailabilityStatus": "Available", @@ -245,217 +245,92 @@ "errorMessage": null }, { - "itemBarcode": "33433133816284", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433133814750", + "itemBarcode": "33433116522354", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433132312749", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128589565", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433132313184", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128509571", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121962835", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121711620", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433122611373", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433122611381", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121696201", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121700144", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938576", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938584", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938592", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124930862", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938527", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938519", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938501", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938493", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938535", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938543", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938550", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938568", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938485", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938477", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433124938469", + "itemBarcode": "33433121729853", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124930854", + "itemBarcode": "33433117119341", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938451", + "itemBarcode": "33433117979173", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938444", + "itemBarcode": "33433112611961", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938436", + "itemBarcode": "33433101055220", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938428", + "itemBarcode": "33433019857568", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938410", + "itemBarcode": "33433060930082", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938402", + "itemBarcode": "33433019857550", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938394", + "itemBarcode": "33433019857634", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938386", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433019857626", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433124938378", + "itemBarcode": "33433019857618", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938360", + "itemBarcode": "33433019857543", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124938352", + "itemBarcode": "33433019857600", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433124930839", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433019857592", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433124984265", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433019857584", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099608048", + "itemBarcode": "33433019857576", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433099608055", + "itemBarcode": "33433019857535", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -546,12 +421,12 @@ }, { "itemBarcode": "33433019846140", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { "itemBarcode": "33433019846132", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { @@ -598,90 +473,5 @@ "itemBarcode": "33433019846041", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null - }, - { - "itemBarcode": "33433121729853", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433117119341", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433117979173", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433112611961", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433101055220", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857568", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433060930082", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857550", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857634", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857626", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433019857618", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857543", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857600", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857592", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433019857584", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433019857576", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019857535", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-b5c1f2072cd2a6f6934eb1079861bd29.json b/test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json similarity index 99% rename from test/fixtures/scsb-by-barcode-b5c1f2072cd2a6f6934eb1079861bd29.json rename to test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json index 27a07886..f1227a68 100644 --- a/test/fixtures/scsb-by-barcode-b5c1f2072cd2a6f6934eb1079861bd29.json +++ b/test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json @@ -1,31 +1,31 @@ [ { - "itemBarcode": "33433136742404", + "itemBarcode": "33433136742412", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742420", + "itemBarcode": "33433136742438", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742438", + "itemBarcode": "33433136742420", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433136742412", + "itemBarcode": "33433136742404", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033321", + "itemBarcode": "33433130033313", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033305", + "itemBarcode": "33433130033339", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -35,22 +35,22 @@ "errorMessage": null }, { - "itemBarcode": "33433130033339", + "itemBarcode": "33433130033305", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433130033313", + "itemBarcode": "33433130033321", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433128201161", + "itemBarcode": "33433128200973", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433128201310", + "itemBarcode": "33433128200965", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -60,42 +60,42 @@ "errorMessage": null }, { - "itemBarcode": "33433128200965", + "itemBarcode": "33433128201310", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433128200973", + "itemBarcode": "33433128201161", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433121911253", + "itemBarcode": "33433121911097", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433121911105", + "itemBarcode": "33433121911246", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433121911246", + "itemBarcode": "33433121911105", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433121911097", + "itemBarcode": "33433121911253", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433119892341", + "itemBarcode": "33433119892333", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433119855561", + "itemBarcode": "33433119872103", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -105,18 +105,18 @@ "errorMessage": null }, { - "itemBarcode": "33433119872103", + "itemBarcode": "33433119855561", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433119892333", + "itemBarcode": "33433119892341", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433119872087", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433119892317", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { @@ -125,13 +125,13 @@ "errorMessage": null }, { - "itemBarcode": "33433119892317", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433119872087", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433114102134", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433114102084", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { @@ -140,27 +140,27 @@ "errorMessage": null }, { - "itemBarcode": "33433114102084", + "itemBarcode": "33433114102134", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433114102043", + "itemBarcode": "33433110762741", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433110762741", + "itemBarcode": "33433114102043", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433110762709", + "itemBarcode": "33433110762733", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433110762691", + "itemBarcode": "33433110762717", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -170,72 +170,72 @@ "errorMessage": null }, { - "itemBarcode": "33433110762717", + "itemBarcode": "33433110762691", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433110762733", + "itemBarcode": "33433110762709", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433108528393", + "itemBarcode": "33433108528377", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433108528385", + "itemBarcode": "33433108528401", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433108528401", + "itemBarcode": "33433108528385", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433108528377", + "itemBarcode": "33433108528393", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433099610952", + "itemBarcode": "33433099611091", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611083", + "itemBarcode": "33433099611075", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611109", + "itemBarcode": "33433099610945", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099610945", + "itemBarcode": "33433099611109", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611075", + "itemBarcode": "33433099611083", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611091", + "itemBarcode": "33433099610952", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099612925", + "itemBarcode": "33433099611133", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611125", + "itemBarcode": "33433099611117", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -245,102 +245,102 @@ "errorMessage": null }, { - "itemBarcode": "33433099611117", + "itemBarcode": "33433099611125", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611133", + "itemBarcode": "33433099612925", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611166", + "itemBarcode": "33433099611174", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611182", + "itemBarcode": "33433099611190", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611190", + "itemBarcode": "33433099611182", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433099611174", + "itemBarcode": "33433099611166", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063992", + "itemBarcode": "33433085064214", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064008", + "itemBarcode": "33433085064172", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063950", + "itemBarcode": "33433085063976", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063976", + "itemBarcode": "33433085063950", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064172", + "itemBarcode": "33433085064008", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064214", + "itemBarcode": "33433085063992", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063984", + "itemBarcode": "33433085064198", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063943", + "itemBarcode": "33433085063968", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064180", + "itemBarcode": "33433085064206", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064206", + "itemBarcode": "33433085064180", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085063968", + "itemBarcode": "33433085063943", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433085064198", + "itemBarcode": "33433085063984", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240575", + "itemBarcode": "33433084240583", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240559", + "itemBarcode": "33433084240542", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -350,22 +350,22 @@ "errorMessage": null }, { - "itemBarcode": "33433084240542", + "itemBarcode": "33433084240559", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240583", + "itemBarcode": "33433084240575", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240526", + "itemBarcode": "33433084240500", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240518", + "itemBarcode": "33433084240534", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -375,22 +375,22 @@ "errorMessage": null }, { - "itemBarcode": "33433084240534", + "itemBarcode": "33433084240518", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240500", + "itemBarcode": "33433084240526", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240476", + "itemBarcode": "33433084240484", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240468", + "itemBarcode": "33433080028222", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -400,82 +400,82 @@ "errorMessage": null }, { - "itemBarcode": "33433080028222", + "itemBarcode": "33433084240468", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240484", + "itemBarcode": "33433084240476", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240443", + "itemBarcode": "33433084240419", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240427", + "itemBarcode": "33433084240435", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240401", + "itemBarcode": "33433084240450", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240450", + "itemBarcode": "33433084240401", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240435", + "itemBarcode": "33433084240427", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240419", + "itemBarcode": "33433084240443", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240385", + "itemBarcode": "33433084240351", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240369", + "itemBarcode": "33433084240377", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240344", + "itemBarcode": "33433084240393", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240393", + "itemBarcode": "33433084240344", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240377", + "itemBarcode": "33433084240369", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240351", + "itemBarcode": "33433084240385", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240328", + "itemBarcode": "33433084240310", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433079991612", + "itemBarcode": "33433084240336", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -485,17 +485,17 @@ "errorMessage": null }, { - "itemBarcode": "33433084240336", + "itemBarcode": "33433079991612", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240310", + "itemBarcode": "33433084240328", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433084240286", + "itemBarcode": "33433080426707", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null } diff --git a/test/fixtures/scsb-by-barcode-459f6f37fcdb71a9c34013aa059821ef.json b/test/fixtures/scsb-by-barcode-86d3e2182e29772fa98a527eb571085b.json similarity index 99% rename from test/fixtures/scsb-by-barcode-459f6f37fcdb71a9c34013aa059821ef.json rename to test/fixtures/scsb-by-barcode-86d3e2182e29772fa98a527eb571085b.json index 233b131c..c12317b6 100644 --- a/test/fixtures/scsb-by-barcode-459f6f37fcdb71a9c34013aa059821ef.json +++ b/test/fixtures/scsb-by-barcode-86d3e2182e29772fa98a527eb571085b.json @@ -210,13 +210,13 @@ "errorMessage": null }, { - "itemBarcode": "33433032678454", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433098691227", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433098691227", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433032678454", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { diff --git a/test/fixtures/scsb-by-barcode-2cc9d5c309214602bb1963e2567a5e08.json b/test/fixtures/scsb-by-barcode-8a1efe7954b1daeec96bdaef058cbad0.json similarity index 99% rename from test/fixtures/scsb-by-barcode-2cc9d5c309214602bb1963e2567a5e08.json rename to test/fixtures/scsb-by-barcode-8a1efe7954b1daeec96bdaef058cbad0.json index 3b79e5ad..7ec10310 100644 --- a/test/fixtures/scsb-by-barcode-2cc9d5c309214602bb1963e2567a5e08.json +++ b/test/fixtures/scsb-by-barcode-8a1efe7954b1daeec96bdaef058cbad0.json @@ -10,13 +10,13 @@ "errorMessage": null }, { - "itemBarcode": "33433084847221", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433061318089", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433061318089", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433084847221", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { diff --git a/test/fixtures/scsb-by-barcode-8741f373536f95bcdc119cace14a1a17.json b/test/fixtures/scsb-by-barcode-a240a643965b774ab9384fbfc813a6f3.json similarity index 100% rename from test/fixtures/scsb-by-barcode-8741f373536f95bcdc119cace14a1a17.json rename to test/fixtures/scsb-by-barcode-a240a643965b774ab9384fbfc813a6f3.json index 571f10cb..e216aecc 100644 --- a/test/fixtures/scsb-by-barcode-8741f373536f95bcdc119cace14a1a17.json +++ b/test/fixtures/scsb-by-barcode-a240a643965b774ab9384fbfc813a6f3.json @@ -245,12 +245,12 @@ "errorMessage": null }, { - "itemBarcode": "33433014576007", + "itemBarcode": "33433014575991", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433014575991", + "itemBarcode": "33433014576007", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -260,12 +260,12 @@ "errorMessage": null }, { - "itemBarcode": "33433014575967", + "itemBarcode": "33433014575975", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433014575975", + "itemBarcode": "33433014575967", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -275,12 +275,12 @@ "errorMessage": null }, { - "itemBarcode": "33433014575942", + "itemBarcode": "33433014575934", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33433014575934", + "itemBarcode": "33433014575942", "itemAvailabilityStatus": "Available", "errorMessage": null }, diff --git a/test/fixtures/scsb-by-barcode-7112d7d97c20b128eca788b9b9280966.json b/test/fixtures/scsb-by-barcode-b03969825ecd51133aa3ec63442c38bc.json similarity index 98% rename from test/fixtures/scsb-by-barcode-7112d7d97c20b128eca788b9b9280966.json rename to test/fixtures/scsb-by-barcode-b03969825ecd51133aa3ec63442c38bc.json index 11ce9e0a..13e263e8 100644 --- a/test/fixtures/scsb-by-barcode-7112d7d97c20b128eca788b9b9280966.json +++ b/test/fixtures/scsb-by-barcode-b03969825ecd51133aa3ec63442c38bc.json @@ -89,6 +89,11 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, + { + "itemBarcode": "33433004734608", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, { "itemBarcode": "33433107660718", "itemAvailabilityStatus": "Available", @@ -528,20 +533,5 @@ "itemBarcode": "33433005347897", "itemAvailabilityStatus": "Available", "errorMessage": null - }, - { - "itemBarcode": "33433019909617", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019909609", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433019909591", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-49571d38fe75fc26379dc78cc87bf250.json b/test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json similarity index 100% rename from test/fixtures/scsb-by-barcode-49571d38fe75fc26379dc78cc87bf250.json rename to test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json index b62d429f..9f5df717 100644 --- a/test/fixtures/scsb-by-barcode-49571d38fe75fc26379dc78cc87bf250.json +++ b/test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json @@ -1,6 +1,6 @@ [ { - "itemBarcode": "33433034124614", + "itemBarcode": "33433035187214", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -10,7 +10,7 @@ "errorMessage": null }, { - "itemBarcode": "33433035187214", + "itemBarcode": "33433034124614", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null } diff --git a/test/fixtures/scsb-by-barcode-c611e4c0e4880bfee11c1a4cd80d95bb.json b/test/fixtures/scsb-by-barcode-ed0a6cc5e79279ebad32c4806edd44ca.json similarity index 99% rename from test/fixtures/scsb-by-barcode-c611e4c0e4880bfee11c1a4cd80d95bb.json rename to test/fixtures/scsb-by-barcode-ed0a6cc5e79279ebad32c4806edd44ca.json index cd86e7f6..a27a6dc6 100644 --- a/test/fixtures/scsb-by-barcode-c611e4c0e4880bfee11c1a4cd80d95bb.json +++ b/test/fixtures/scsb-by-barcode-ed0a6cc5e79279ebad32c4806edd44ca.json @@ -30,13 +30,13 @@ "errorMessage": null }, { - "itemBarcode": "33433084847221", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433061318089", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { - "itemBarcode": "33433061318089", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433084847221", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { diff --git a/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json b/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json new file mode 100644 index 00000000..3041df63 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json @@ -0,0 +1,7 @@ +[ + { + "itemBarcode": "33433114102084", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + } +] \ No newline at end of file diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index be701d5b..b321d2c5 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -1,17 +1,20 @@ const request = require('request-promise') const assert = require('assert') +const { expect } = require('chai') const fixtures = require('./fixtures') -const { expect } = require('chai') +const app = require('../app') describe('Test Resources responses', function () { const sampleResources = [{ id: 'b10015541', type: 'nypl:Item' }, { id: 'b10022950', type: 'nypl:Item' }] this.timeout(10000) - before(function () { + before(async () => { fixtures.enableEsFixtures() fixtures.enableScsbFixtures() + + await app.start() }) after(function () { @@ -38,7 +41,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(917) + expect(doc.numItemsMatched).to.be.greaterThan(800) done() }) }) @@ -65,7 +68,7 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(917) // this changed when I rebuild the fixtures with no code changes + expect(doc.numItemsMatched).to.be.greaterThan(800) done() }) }) @@ -74,7 +77,10 @@ describe('Test Resources responses', function () { request.get(url, (err, res, body) => { if (err) throw err const doc = JSON.parse(body) - expect(doc.numItemsMatched).to.equal(2) // this changed when I rebuild the fixtures with no code changes + // Note: When updating fixtures, the following value may change. The + // most important thing is that it appears to filter out items from the + // 800+ item bib: + expect(doc.numItemsMatched).to.be.lessThan(20) done() }) }) diff --git a/test/test_helper.js b/test/test_helper.js index 12bc781d..b07bbcc9 100644 --- a/test/test_helper.js +++ b/test/test_helper.js @@ -1,54 +1,32 @@ -const fs = require('fs') const chai = require('chai') const chaiAsPromised = require('chai-as-promised') const dotenv = require('dotenv') -const kmsHelper = require('../lib/kms-helper') +const loadConfig = require('../lib/load-config') +const app = require('../app') +const sinon = require('sinon') -// Load baseline test env vars: -dotenv.config({ path: './config/test.env' }) +before(async () => { + if (!process.env.UPDATE_FIXTURES) { + // Load baseline test env vars: + dotenv.config({ path: './config/test.env' }) -before(() => { - // If we're updating fixtures, load real production creds - if (process.env.UPDATE_FIXTURES) { - const productionEnv = dotenv.parse(fs.readFileSync('./config/qa.env')) - return Promise.all( - [ - // These are the config params that will allow us to build fixtures - // from real production data: - 'SCSB_URL', - 'SCSB_API_KEY', - 'ELASTICSEARCH_HOST', - 'RESOURCES_INDEX', - 'NYPL_OAUTH_URL', - 'NYPL_OAUTH_ID', - 'NYPL_OAUTH_SECRET', - 'NYPL_API_BASE_URL' - ].map((key) => { - const value = productionEnv[key] - let handleValue = Promise.resolve(value) - // Decrypt the config that's encrypted: - if (['SCSB_URL', 'SCSB_API_KEY', 'NYPL_OAUTH_SECRET'].includes(key)) { - handleValue = kmsHelper.decrypt(value) - } - return handleValue - .then((value) => { - process.env[key] = value - }) - }) - ) + sinon.stub(loadConfig, 'decryptEncryptedConfig').callsFake(() => { + Object.keys(process.env) + .filter((key) => /^ENCRYPTED_/.test(key)) + .forEach((encryptedKey) => { + const keyWithoutPrefix = encryptedKey.replace(/^ENCRYPTED_/, '') + process.env[keyWithoutPrefix] = process.env[encryptedKey] + }) + + return Promise.resolve() + }) } -}) -// Establish base url for local queries: -global.TEST_BASE_URL = `http://localhost:${process.env.PORT}` + await app.init() -// Nullify SCSB creds just in case they've been brought in by app.js by a -// local .env (but only if we're not updating fixtures, for which we'll need -// that auth..): -if (!process.env.UPDATE_FIXTURES) { - process.env.SCSB_URL = 'https://example.com' - process.env.SCSB_API_KEY = 'fake-scsb-api-key' -} + // Establish base url for local queries: + global.TEST_BASE_URL = `http://localhost:${process.env.PORT}` +}) require('../lib/globals') From 757189ba00d003fb40a7183182111ca5ef093c77 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 12 Mar 2024 17:03:44 -0400 Subject: [PATCH 10/51] Update NYPL packages --- lib/scsb-client.js | 47 +++++++------------------ package-lock.json | 56 ++++++++++++++++++++---------- package.json | 4 +-- test/availability_resolver.test.js | 4 +-- test/scsb-client.test.js | 18 +++++----- 5 files changed, 64 insertions(+), 65 deletions(-) diff --git a/lib/scsb-client.js b/lib/scsb-client.js index 6e146d05..7e7d78f2 100644 --- a/lib/scsb-client.js +++ b/lib/scsb-client.js @@ -1,13 +1,21 @@ -const ScsbRestClient = require('@nypl/scsb-rest-client') -const request = require('request') +const scsbRestClient = require('@nypl/scsb-rest-client') const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper') const logger = require('./logger') const { bNumberWithCheckDigit } = require('./util') -let _scsbClient +let _initialized = false + const scsbClient = () => { - if (!_scsbClient) _scsbClient = new ScsbRestClient({ url: process.env.SCSB_URL, apiKey: process.env.SCSB_API_KEY }) - return _scsbClient + if (!_initialized) { + scsbRestClient.config({ + url: process.env.SCSB_URL, + apiKey: process.env.SCSB_API_KEY + }) + + _initialized = true + } + + return scsbRestClient } const clientWrapper = {} @@ -102,33 +110,4 @@ clientWrapper.getBarcodesByStatusForBnum = (bnum) => { }) } -// Shim scsbQuery as general-purpose function for performing arbitrary SCSB -// queries (this function is available in @nypl/scsb-rest-client#2.0, which -// requires Node12+, preventing this app from using it for now.) -ScsbRestClient.prototype.scsbQuery = function (path, body) { - return new Promise((resolve, reject) => { - const options = { - url: this.url + path, - headers: this._headers(), - body: JSON.stringify(body), - // Fail any SCSB query that exceeds 3s (at writing this function is only - // used by getItemsAvailabilityForBnum) - timeout: 3000 - } - request.post(options, (error, response, body) => { - if (error) { - reject(error) - } else if (response && response.statusCode === 200) { - resolve(JSON.parse(body)) - } else { - reject(new Error(`Error hitting SCSB API ${response.statusCode}: ${response.body}`)) - } - }) - }) -} - -clientWrapper._private = { - ScsbRestClient -} - module.exports = clientWrapper diff --git a/package-lock.json b/package-lock.json index c4834c9e..f5a2d24c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,8 +11,8 @@ "dependencies": { "@elastic/elasticsearch": "~7.12.0", "@nypl/nypl-core-objects": "2.3.2", - "@nypl/nypl-data-api-client": "^1.0.1", - "@nypl/scsb-rest-client": "1.0.6", + "@nypl/nypl-data-api-client": "^1.0.5", + "@nypl/scsb-rest-client": "2.0.0", "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^4.0.0", @@ -385,10 +385,12 @@ } }, "node_modules/@nypl/scsb-rest-client": { - "version": "1.0.6", - "license": "MIT", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@nypl/scsb-rest-client/-/scsb-rest-client-2.0.0.tgz", + "integrity": "sha512-vR/cPtltT9D4O5vEp8qyaSOSTCwhRhBdOBg7R/w/0eFdc4J85MO22LwLY/VQnLwYhH1Py7vSPX1ZEQuiMBJkug==", "dependencies": { - "request": "^2.88.2" + "axios": "^0.27.2", + "axios-concurrency": "^1.0.4" } }, "node_modules/@sinonjs/commons": { @@ -918,16 +920,30 @@ }, "node_modules/axios": { "version": "0.27.2", - "dev": true, "license": "MIT", "dependencies": { "follow-redirects": "^1.14.9", "form-data": "^4.0.0" } }, + "node_modules/axios-concurrency": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/axios-concurrency/-/axios-concurrency-1.0.4.tgz", + "integrity": "sha512-KDtlv1uWln80fmr6D4aq2je/HAtiMZ6k3nY8uCbQlSQWHznpm2v3aZPlBatPBGUBWuDeFRpMF9aFFpO+xyiW4g==", + "dependencies": { + "axios": "^0.21.1" + } + }, + "node_modules/axios-concurrency/node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, "node_modules/axios/node_modules/form-data": { "version": "4.0.0", - "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -3028,15 +3044,15 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "node_modules/follow-redirects": { - "version": "1.15.2", - "dev": true, + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], - "license": "MIT", "engines": { "node": ">=4.0" }, @@ -3151,9 +3167,10 @@ } }, "node_modules/get-func-name": { - "version": "2.0.0", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", "dev": true, - "license": "MIT", "engines": { "node": "*" } @@ -4134,8 +4151,9 @@ } }, "node_modules/jsonld/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } @@ -4693,9 +4711,10 @@ } }, "node_modules/node-environment-flags/node_modules/semver": { - "version": "5.7.1", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver" } @@ -5737,8 +5756,9 @@ } }, "node_modules/rdf-canonize/node_modules/semver": { - "version": "6.3.0", - "license": "ISC", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } diff --git a/package.json b/package.json index 8decca7a..3cd29296 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,8 @@ "author": "NYPL Digital", "dependencies": { "@nypl/nypl-core-objects": "2.3.2", - "@nypl/nypl-data-api-client": "^1.0.1", - "@nypl/scsb-rest-client": "1.0.6", + "@nypl/nypl-data-api-client": "^1.0.5", + "@nypl/scsb-rest-client": "2.0.0", "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^4.0.0", diff --git a/test/availability_resolver.test.js b/test/availability_resolver.test.js index b04fdd8b..28d317a2 100644 --- a/test/availability_resolver.test.js +++ b/test/availability_resolver.test.js @@ -53,7 +53,7 @@ const itemAvailabilityResponse = [ describe('Response with updated availability', function () { beforeEach(() => { - sinon.stub(scsbClient._private.ScsbRestClient.prototype, 'getItemsAvailabilityForBarcodes') + sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') .callsFake(() => Promise.resolve(itemAvailabilityResponse)) sinon.stub(scsbClient, 'recapCustomerCodeByBarcode') @@ -61,7 +61,7 @@ describe('Response with updated availability', function () { }) afterEach(() => { - scsbClient._private.ScsbRestClient.prototype.getItemsAvailabilityForBarcodes.restore() + scsbClient.getItemsAvailabilityForBarcodes.restore() scsbClient.recapCustomerCodeByBarcode.restore() }) diff --git a/test/scsb-client.test.js b/test/scsb-client.test.js index 89d0b446..1d82ac34 100644 --- a/test/scsb-client.test.js +++ b/test/scsb-client.test.js @@ -1,11 +1,11 @@ const sinon = require('sinon') -const ScsbRestClient = require('@nypl/scsb-rest-client') +const scsbRestClient = require('@nypl/scsb-rest-client') const scsbClient = require('../lib/scsb-client') describe('scsb-client', () => { describe('getItemsAvailabilityForBnum', () => { beforeEach(() => { - sinon.stub(ScsbRestClient.prototype, 'scsbQuery') + sinon.stub(scsbRestClient, 'scsbQuery') .callsFake((path, body) => { return Promise.resolve([ { @@ -17,18 +17,18 @@ describe('scsb-client', () => { }) afterEach(() => { - ScsbRestClient.prototype.scsbQuery.restore() + scsbRestClient.scsbQuery.restore() }) it('returns barcode-status map for NYPL bnum', () => { return scsbClient.getItemsAvailabilityForBnum('b123') .then((resp) => { // Verify SCSB API hit once: - expect(ScsbRestClient.prototype.scsbQuery.callCount).to.equal(1) + expect(scsbRestClient.scsbQuery.callCount).to.equal(1) // Verify SCSB bibAvailabilityStatus query performed - expect(ScsbRestClient.prototype.scsbQuery.firstCall.args[0]) + expect(scsbRestClient.scsbQuery.firstCall.args[0]) .to.equal('/sharedCollection/bibAvailabilityStatus') - expect(ScsbRestClient.prototype.scsbQuery.firstCall.args[1]) + expect(scsbRestClient.scsbQuery.firstCall.args[1]) .to.deep.equal({ institutionId: 'NYPL', // Verify payload has NYPL padded bnum: @@ -49,11 +49,11 @@ describe('scsb-client', () => { return scsbClient.getItemsAvailabilityForBnum('hb123') .then((resp) => { // Verify SCSB API hit once: - expect(ScsbRestClient.prototype.scsbQuery.callCount).to.equal(1) + expect(scsbRestClient.scsbQuery.callCount).to.equal(1) // Verify SCSB bibAvailabilityStatus query performed - expect(ScsbRestClient.prototype.scsbQuery.firstCall.args[0]) + expect(scsbRestClient.scsbQuery.firstCall.args[0]) .to.equal('/sharedCollection/bibAvailabilityStatus') - expect(ScsbRestClient.prototype.scsbQuery.firstCall.args[1]) + expect(scsbRestClient.scsbQuery.firstCall.args[1]) .to.deep.equal({ institutionId: 'HL', // Verify payload has original HL bnum: From 55842b56fe52400df8dbabb4d66d6c1bd64c883c Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 14 Mar 2024 16:30:42 -0400 Subject: [PATCH 11/51] Dependencies audit: removals and updates Remove many production dependencies that are unneeded. Update many others. --- .nvmrc | 2 +- app.js | 11 +- config/default.json | 1450 ----------------- data/prefixes.csv | 31 - lib/availability_resolver.js | 32 +- lib/delivery-locations-resolver.js | 35 +- lib/globals.js | 20 - lib/jsonld_serializers.js | 18 +- lib/util.js | 125 +- package-lock.json | 2309 +++++++--------------------- package.json | 13 +- routes/misc.js | 5 +- routes/resources.js | 4 +- server.js | 3 + test/test_helper.js | 2 - 15 files changed, 552 insertions(+), 3508 deletions(-) delete mode 100644 config/default.json delete mode 100644 data/prefixes.csv delete mode 100644 lib/globals.js create mode 100644 server.js diff --git a/.nvmrc b/.nvmrc index 3c032078..209e3ef4 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +20 diff --git a/app.js b/app.js index cb731f2d..96eed261 100644 --- a/app.js +++ b/app.js @@ -1,4 +1,3 @@ -const config = require('config') const express = require('express') const esClient = require('./lib/es-client') @@ -26,8 +25,6 @@ app.init = async () => { // Load logger after running above to ensure we respect LOG_LEVEL if set app.logger = require('./lib/logger') - app.thesaurus = config.thesaurus - require('./lib/resources')(app) // routes @@ -60,12 +57,10 @@ app.init = async () => { app.start = async () => { await app.init() - const port = process.env.PORT || config.port + const port = process.env.PORT || 3000 - return require('./lib/globals')(app).then((app) => { - return app.listen(port, function () { - app.logger.info('Server started on port ' + port) - }) + return app.listen(port, function () { + app.logger.info('Server started on port ' + port) }) } diff --git a/config/default.json b/config/default.json deleted file mode 100644 index ef9b0a22..00000000 --- a/config/default.json +++ /dev/null @@ -1,1450 +0,0 @@ -{ - "host": "discovery-api.nypltech.org", - "proto": "http", - "elasticsearch": { - "host": "111.111.111.111:9200" - }, - "port": 3000, - "itemAvailability":{ - "available": { - "id" : "status:a", - "label": "Available" - }, - "notAvailable": { - "id" : "status:na", - "label": "Not available" - } - }, - "major_version": 0.1, - "contextAll": "http://api.data.nypl.org/api/v1/context_all.jsonld", - "predicateCreators": [ - "dcterms:contributor", - "roles:abr", - "roles:acp", - "roles:act", - "roles:adi", - "roles:adp", - "roles:aft", - "roles:anl", - "roles:anm", - "roles:ann", - "roles:ant", - "roles:ape", - "roles:apl", - "roles:app", - "roles:aqt", - "roles:arc", - "roles:ard", - "roles:arr", - "roles:art", - "roles:asg", - "roles:asn", - "roles:ato", - "roles:att", - "roles:auc", - "roles:aud", - "roles:aui", - "roles:aus", - "roles:aut", - "roles:bdd", - "roles:bjd", - "roles:bkd", - "roles:bkp", - "roles:blw", - "roles:bnd", - "roles:bpd", - "roles:brd", - "roles:brl", - "roles:bsl", - "roles:cas", - "roles:ccp", - "roles:chr", - "roles:cli", - "roles:cll", - "roles:clr", - "roles:clt", - "roles:cmm", - "roles:cmp", - "roles:cmt", - "roles:cnd", - "roles:cng", - "roles:cns", - "roles:coe", - "roles:col", - "roles:com", - "roles:con", - "roles:cor", - "roles:cos", - "roles:cot", - "roles:cou", - "roles:cov", - "roles:cpc", - "roles:cpe", - "roles:cph", - "roles:cpl", - "roles:cpt", - "roles:cre", - "roles:crp", - "roles:crr", - "roles:crt", - "roles:csl", - "roles:csp", - "roles:cst", - "roles:ctb", - "roles:cte", - "roles:ctg", - "roles:ctr", - "roles:cts", - "roles:ctt", - "roles:cur", - "roles:cwt", - "roles:dbp", - "roles:dfd", - "roles:dfe", - "roles:dft", - "roles:dgg", - "roles:dgs", - "roles:dis", - "roles:dln", - "roles:dnc", - "roles:dnr", - "roles:dpc", - "roles:dpt", - "roles:drm", - "roles:drt", - "roles:dsr", - "roles:dst", - "roles:dtc", - "roles:dte", - "roles:dtm", - "roles:dto", - "roles:dub", - "roles:edc", - "roles:edm", - "roles:edt", - "roles:egr", - "roles:elg", - "roles:elt", - "roles:eng", - "roles:enj", - "roles:etr", - "roles:evp", - "roles:exp", - "roles:fac", - "roles:fds", - "roles:fld", - "roles:flm", - "roles:fmd", - "roles:fmk", - "roles:fmo", - "roles:fmp", - "roles:fnd", - "roles:fpy", - "roles:frg", - "roles:gis", - "roles:his", - "roles:hnr", - "roles:hst", - "roles:ill", - "roles:ilu", - "roles:ins", - "roles:inv", - "roles:isb", - "roles:itr", - "roles:ive", - "roles:ivr", - "roles:jud", - "roles:jug", - "roles:lbr", - "roles:lbt", - "roles:ldr", - "roles:led", - "roles:lee", - "roles:lel", - "roles:len", - "roles:let", - "roles:lgd", - "roles:lie", - "roles:lil", - "roles:lit", - "roles:lsa", - "roles:lse", - "roles:lso", - "roles:ltg", - "roles:lyr", - "roles:mcp", - "roles:mdc", - "roles:med", - "roles:mfp", - "roles:mfr", - "roles:mod", - "roles:mon", - "roles:mrb", - "roles:mrk", - "roles:msd", - "roles:mte", - "roles:mtk", - "roles:mus", - "roles:nrt", - "roles:opn", - "roles:org", - "roles:orm", - "roles:osp", - "roles:oth", - "roles:own", - "roles:pan", - "roles:pat", - "roles:pbd", - "roles:pbl", - "roles:pdr", - "roles:pfr", - "roles:pht", - "roles:plt", - "roles:pma", - "roles:pmn", - "roles:pop", - "roles:ppm", - "roles:ppt", - "roles:pra", - "roles:prc", - "roles:prd", - "roles:pre", - "roles:prf", - "roles:prg", - "roles:prm", - "roles:prn", - "roles:pro", - "roles:prp", - "roles:prs", - "roles:prt", - "roles:prv", - "roles:pta", - "roles:pte", - "roles:ptf", - "roles:pth", - "roles:ptt", - "roles:pup", - "roles:rbr", - "roles:rcd", - "roles:rce", - "roles:rcp", - "roles:rdd", - "roles:red", - "roles:ren", - "roles:res", - "roles:rev", - "roles:rpc", - "roles:rps", - "roles:rpt", - "roles:rpy", - "roles:rse", - "roles:rsg", - "roles:rsp", - "roles:rsr", - "roles:rst", - "roles:rth", - "roles:rtm", - "roles:sad", - "roles:sce", - "roles:scl", - "roles:scr", - "roles:sds", - "roles:sec", - "roles:sgd", - "roles:sgn", - "roles:sht", - "roles:sll", - "roles:sng", - "roles:spk", - "roles:spn", - "roles:spy", - "roles:srv", - "roles:std", - "roles:stg", - "roles:stl", - "roles:stm", - "roles:stn", - "roles:str", - "roles:tcd", - "roles:tch", - "roles:ths", - "roles:tld", - "roles:tlp", - "roles:trc", - "roles:trl", - "roles:tyd", - "roles:tyg", - "roles:uvp", - "roles:vac", - "roles:vdg", - "roles:wac", - "roles:wal", - "roles:wam", - "roles:wat", - "roles:wdc", - "roles:wde", - "roles:win", - "roles:wit", - "roles:wpr", - "roles:wst" - ], - "predicatesAgents": [ - "dbo:birthDate", - "dbo:deathDate", - "dcterms:description", - "foaf:depiction", - "foaf:isPrimaryTopicOf", - "rdf:type", - "skos:exactMatch", - "skos:prefLabel" - ], - "predicatesResources": [ - "dcterms:contributor", - "classify:holdings", - "skos:note", - "rdf:type", - "nypl:suppressed", - "nypl:owner", - "dcterms:type", - "dcterms:title", - "dcterms:subject", - "dcterms:language", - "dcterms:identifier", - "dcterms:created", - "db:dateEnd", - "db:dateStart", - "roles:abr", - "roles:acp", - "roles:act", - "roles:adi", - "roles:adp", - "roles:aft", - "roles:anl", - "roles:anm", - "roles:ann", - "roles:ant", - "roles:ape", - "roles:apl", - "roles:app", - "roles:aqt", - "roles:arc", - "roles:ard", - "roles:arr", - "roles:art", - "roles:asg", - "roles:asn", - "roles:ato", - "roles:att", - "roles:auc", - "roles:aud", - "roles:aui", - "roles:aus", - "roles:aut", - "roles:bdd", - "roles:bjd", - "roles:bkd", - "roles:bkp", - "roles:blw", - "roles:bnd", - "roles:bpd", - "roles:brd", - "roles:brl", - "roles:bsl", - "roles:cas", - "roles:ccp", - "roles:chr", - "roles:cli", - "roles:cll", - "roles:clr", - "roles:clt", - "roles:cmm", - "roles:cmp", - "roles:cmt", - "roles:cnd", - "roles:cng", - "roles:cns", - "roles:coe", - "roles:col", - "roles:com", - "roles:con", - "roles:cor", - "roles:cos", - "roles:cot", - "roles:cou", - "roles:cov", - "roles:cpc", - "roles:cpe", - "roles:cph", - "roles:cpl", - "roles:cpt", - "roles:cre", - "roles:crp", - "roles:crr", - "roles:crt", - "roles:csl", - "roles:csp", - "roles:cst", - "roles:ctb", - "roles:cte", - "roles:ctg", - "roles:ctr", - "roles:cts", - "roles:ctt", - "roles:cur", - "roles:cwt", - "roles:dbp", - "roles:dfd", - "roles:dfe", - "roles:dft", - "roles:dgg", - "roles:dgs", - "roles:dis", - "roles:dln", - "roles:dnc", - "roles:dnr", - "roles:dpc", - "roles:dpt", - "roles:drm", - "roles:drt", - "roles:dsr", - "roles:dst", - "roles:dtc", - "roles:dte", - "roles:dtm", - "roles:dto", - "roles:dub", - "roles:edc", - "roles:edm", - "roles:edt", - "roles:egr", - "roles:elg", - "roles:elt", - "roles:eng", - "roles:enj", - "roles:etr", - "roles:evp", - "roles:exp", - "roles:fac", - "roles:fds", - "roles:fld", - "roles:flm", - "roles:fmd", - "roles:fmk", - "roles:fmo", - "roles:fmp", - "roles:fnd", - "roles:fpy", - "roles:frg", - "roles:gis", - "roles:his", - "roles:hnr", - "roles:hst", - "roles:ill", - "roles:ilu", - "roles:ins", - "roles:inv", - "roles:isb", - "roles:itr", - "roles:ive", - "roles:ivr", - "roles:jud", - "roles:jug", - "roles:lbr", - "roles:lbt", - "roles:ldr", - "roles:led", - "roles:lee", - "roles:lel", - "roles:len", - "roles:let", - "roles:lgd", - "roles:lie", - "roles:lil", - "roles:lit", - "roles:lsa", - "roles:lse", - "roles:lso", - "roles:ltg", - "roles:lyr", - "roles:mcp", - "roles:mdc", - "roles:med", - "roles:mfp", - "roles:mfr", - "roles:mod", - "roles:mon", - "roles:mrb", - "roles:mrk", - "roles:msd", - "roles:mte", - "roles:mtk", - "roles:mus", - "roles:nrt", - "roles:opn", - "roles:org", - "roles:orm", - "roles:osp", - "roles:oth", - "roles:own", - "roles:pan", - "roles:pat", - "roles:pbd", - "roles:pbl", - "roles:pdr", - "roles:pfr", - "roles:pht", - "roles:plt", - "roles:pma", - "roles:pmn", - "roles:pop", - "roles:ppm", - "roles:ppt", - "roles:pra", - "roles:prc", - "roles:prd", - "roles:pre", - "roles:prf", - "roles:prg", - "roles:prm", - "roles:prn", - "roles:pro", - "roles:prp", - "roles:prs", - "roles:prt", - "roles:prv", - "roles:pta", - "roles:pte", - "roles:ptf", - "roles:pth", - "roles:ptt", - "roles:pup", - "roles:rbr", - "roles:rcd", - "roles:rce", - "roles:rcp", - "roles:rdd", - "roles:red", - "roles:ren", - "roles:res", - "roles:rev", - "roles:rpc", - "roles:rps", - "roles:rpt", - "roles:rpy", - "roles:rse", - "roles:rsg", - "roles:rsp", - "roles:rsr", - "roles:rst", - "roles:rth", - "roles:rtm", - "roles:sad", - "roles:sce", - "roles:scl", - "roles:scr", - "roles:sds", - "roles:sec", - "roles:sgd", - "roles:sgn", - "roles:sht", - "roles:sll", - "roles:sng", - "roles:spk", - "roles:spn", - "roles:spy", - "roles:srv", - "roles:std", - "roles:stg", - "roles:stl", - "roles:stm", - "roles:stn", - "roles:str", - "roles:tcd", - "roles:tch", - "roles:ths", - "roles:tld", - "roles:tlp", - "roles:trc", - "roles:trl", - "roles:tyd", - "roles:tyg", - "roles:uvp", - "roles:vac", - "roles:vdg", - "roles:wac", - "roles:wal", - "roles:wam", - "roles:wat", - "roles:wdc", - "roles:wde", - "roles:win", - "roles:wit", - "roles:wpr", - "roles:wst" - ], - "prefixes": { - "agents": "http://data.nypl.org/agents/", - "bf": "http://bibframe.org/vocab/", - "classify": "http://purl.org/library/", - "carrier": "http://id.loc.gov/authorities/carrierTypes/", - "data": "http://data.nypl.org/datasets/", - "db": "https://NEEDTOFIX.org/what-is-db/", - "dbo": "http://www.dbpedia.org/ontology/", - "dbr": "http://www.dbpedia.org/resource/", - "dcterms": "http://purl.org/dc/terms/", - "edm": "http://www.europeana.eu/schemas/edm", - "foaf": "http://xmlns.com/foaf/0.1/", - "language": "http://id.loc.gov/vocabulary/languages/", - "lc": "http://id.loc.gov/authorities/names/", - "media": "http://id.loc.gov/authorities/mediaTypes/", - "nypl": "http://data.nypl.org/nypl-core/", - "nyplapp": "http://data.nypl.org/nypl-application/", - "org": "http://www.w3.org/ns/org#", - "orgs": "http://data.nypl.org/organizations/", - "pcdm": "http://pcdm.org/models#", - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "res": "http://data.nypl.org/resources/", - "resourcetypes": "http://id.loc.gov/vocabulary/resourceTypes/", - "roles": "http://id.loc.gov/vocabulary/relators/", - "skos": "http://www.w3.org/2004/02/skos/core#", - "schema": "http://schema.org/", - "terms": "http://data.nypl.org/terms/", - "urn": "urn:x-nypl:", - "viaf": "http://viaf.org/viaf/", - "wikidata": "https://www.wikidata.org/wiki/", - "xsd": "http://www.w3.org/2001/XMLSchema#" - }, - "thesaurus": { - "orgsMap": { - "orgs:1000": "Stephen A. Schwarzman Building", - "orgs:1001": "Schomburg Center for Research in Black Culture", - "orgs:1002": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center", - "orgs:1100": "New York Public Library Archives", - "orgs:1101": "General Research Division", - "orgs:1102": "Carl H. Pforzheimer Collection of Shelley and His Circle", - "orgs:1103": "Dorot Jewish Division", - "orgs:1104": "Henry W. and Albert A. Berg Collection of English and American Literature", - "orgs:1105": "Irma and Paul Milstein Division of United States History, Local History and Genealogy", - "orgs:1106": "Lionel Pincus and Princess Firyal Map Division", - "orgs:1107": "Manuscripts and Archives Division", - "orgs:1108": "Rare Book Division", - "orgs:1109": "George Arents Collection", - "orgs:1110": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection", - "orgs:1111": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Photography Collection", - "orgs:1112": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection", - "orgs:1113": "Spencer Collection", - "orgs:1114": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division", - "orgs:1115": "Schomburg Center for Research in Black Culture, Art and Artifacts Division", - "orgs:1116": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division", - "orgs:1117": "Schomburg Center for Research in Black Culture, Moving Image and Recorded Sound Division", - "orgs:1118": "Schomburg Center for Research in Black Culture, Photographs and Prints Division", - "orgs:1119": "Billy Rose Theatre Division", - "orgs:1120": "Theatre on Film and Tape Archive", - "orgs:1121": "Jerome Robbins Dance Division", - "orgs:1122": "Jerome Robbins Dance Division - Audio and Moving Image", - "orgs:1123": "Music Division", - "orgs:1124": "Rodgers and Hammerstein Archives of Recorded Sound", - "orgs:1125": "Science, Industry and Business Library: General Collection", - "orgs:1126": "Children's Center at 42nd St", - "orgs:1127": "Dorothy and Lewis B. Cullman Center for Scholars & Writers", - "orgs:1128": "Art and Picture Collection", - "orgs:1129": "Slavic and East European Collections", - "orgs:1130": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs", - "orgs:1500": "Mid-Manhattan Library" - }, - "relatorMap": { - "roles:-clb": "Collaborator", - "roles:-grt": "Graphic technician", - "roles:-voc": "Vocalist", - "roles:abr": "Abridger", - "roles:acp": "Art copyist", - "roles:act": "Actor", - "roles:adi": "Art director", - "roles:adp": "Adapter", - "roles:aft": "Author of afterword, colophon, etc.", - "roles:anl": "Analyst", - "roles:anm": "Animator", - "roles:ann": "Annotator", - "roles:ant": "Bibliographic antecedent", - "roles:ape": "Appellee", - "roles:apl": "Appellant", - "roles:app": "Applicant", - "roles:aqt": "Author in quotations or text abstracts", - "roles:arc": "Architect", - "roles:ard": "Artistic director", - "roles:arr": "Arranger", - "roles:art": "Artist", - "roles:asg": "Assignee", - "roles:asn": "Associated name", - "roles:ato": "Autographer", - "roles:att": "Attributed name", - "roles:auc": "Auctioneer", - "roles:aud": "Author of dialog", - "roles:aui": "Author of introduction, etc.", - "roles:aus": "Screenwriter", - "roles:aut": "Author", - "roles:bdd": "Binding designer", - "roles:bjd": "Bookjacket designer", - "roles:bkd": "Book designer", - "roles:bkp": "Book producer", - "roles:blw": "Blurb writer", - "roles:bnd": "Binder", - "roles:bpd": "Bookplate designer", - "roles:brd": "Broadcaster", - "roles:brl": "Braille embosser", - "roles:bsl": "Bookseller", - "roles:cas": "Caster", - "roles:ccp": "Conceptor", - "roles:chr": "Choreographer", - "roles:clb": "Collaborator", - "roles:cli": "Client", - "roles:cll": "Calligrapher", - "roles:clr": "Colorist", - "roles:clt": "Collotyper", - "roles:cmm": "Commentator", - "roles:cmp": "Composer", - "roles:cmt": "Compositor", - "roles:cnd": "Conductor", - "roles:cng": "Cinematographer", - "roles:cns": "Censor", - "roles:coe": "Contestant-appellee", - "roles:col": "Collector", - "roles:com": "Compiler", - "roles:con": "Conservator", - "roles:cor": "Collection registrar", - "roles:cos": "Contestant", - "roles:cot": "Contestant-appellant", - "roles:cou": "Court governed", - "roles:cov": "Cover designer", - "roles:cpc": "Copyright claimant", - "roles:cpe": "Complainant-appellee", - "roles:cph": "Copyright holder", - "roles:cpl": "Complainant", - "roles:cpt": "Complainant-appellant", - "roles:cre": "Creator", - "roles:crp": "Correspondent", - "roles:crr": "Corrector", - "roles:crt": "Court reporter", - "roles:csl": "Consultant", - "roles:csp": "Consultant to a project", - "roles:cst": "Costume designer", - "roles:ctb": "Contributor", - "roles:cte": "Contestee-appellee", - "roles:ctg": "Cartographer", - "roles:ctr": "Contractor", - "roles:cts": "Contestee", - "roles:ctt": "Contestee-appellant", - "roles:cur": "Curator", - "roles:cwt": "Commentator for written text", - "roles:dbp": "Distribution place", - "roles:dfd": "Defendant", - "roles:dfe": "Defendant-appellee", - "roles:dft": "Defendant-appellant", - "roles:dgg": "Degree granting institution", - "roles:dgs": "Degree supervisor", - "roles:dis": "Dissertant", - "roles:dln": "Delineator", - "roles:dnc": "Dancer", - "roles:dnr": "Donor", - "roles:dpc": "Depicted", - "roles:dpt": "Depositor", - "roles:drm": "Draftsman", - "roles:drt": "Director", - "roles:dsr": "Designer", - "roles:dst": "Distributor", - "roles:dtc": "Data contributor", - "roles:dte": "Dedicatee", - "roles:dtm": "Data manager", - "roles:dto": "Dedicator", - "roles:dub": "Dubious author", - "roles:edc": "Editor of compilation", - "roles:edm": "Editor of moving image work", - "roles:edt": "Editor", - "roles:egr": "Engraver", - "roles:elg": "Electrician", - "roles:elt": "Electrotyper", - "roles:eng": "Engineer", - "roles:enj": "Enacting jurisdiction", - "roles:etr": "Etcher", - "roles:evp": "Event place", - "roles:exp": "Expert", - "roles:fac": "Facsimilist", - "roles:fds": "Film distributor", - "roles:fld": "Field director", - "roles:flm": "Film editor", - "roles:fmd": "Film director", - "roles:fmk": "Filmmaker", - "roles:fmo": "Former owner", - "roles:fmp": "Film producer", - "roles:fnd": "Funder", - "roles:fpy": "First party", - "roles:frg": "Forger", - "roles:gis": "Geographic information specialist", - "roles:his": "Host institution", - "roles:hnr": "Honoree", - "roles:hst": "Host", - "roles:ill": "Illustrator", - "roles:ilu": "Illuminator", - "roles:ins": "Inscriber", - "roles:inv": "Inventor", - "roles:isb": "Issuing body", - "roles:itr": "Instrumentalist", - "roles:ive": "Interviewee", - "roles:ivr": "Interviewer", - "roles:jud": "Judge", - "roles:jug": "Jurisdiction governed", - "roles:lbr": "Laboratory", - "roles:lbt": "Librettist", - "roles:ldr": "Laboratory director", - "roles:led": "Lead", - "roles:lee": "Libelee-appellee", - "roles:lel": "Libelee", - "roles:len": "Lender", - "roles:let": "Libelee-appellant", - "roles:lgd": "Lighting designer", - "roles:lie": "Libelant-appellee", - "roles:lil": "Libelant", - "roles:lit": "Libelant-appellant", - "roles:lsa": "Landscape architect", - "roles:lse": "Licensee", - "roles:lso": "Licensor", - "roles:ltg": "Lithographer", - "roles:lyr": "Lyricist", - "roles:mcp": "Music copyist", - "roles:mdc": "Metadata contact", - "roles:med": "Medium", - "roles:mfp": "Manufacture place", - "roles:mfr": "Manufacturer", - "roles:mod": "Moderator", - "roles:mon": "Monitor", - "roles:mrb": "Marbler", - "roles:mrk": "Markup editor", - "roles:msd": "Musical director", - "roles:mte": "Metal-engraver", - "roles:mtk": "Minute taker", - "roles:mus": "Musician", - "roles:nrt": "Narrator", - "roles:opn": "Opponent", - "roles:org": "Originator", - "roles:orm": "Organizer", - "roles:osp": "Onscreen presenter", - "roles:oth": "Other", - "roles:own": "Owner", - "roles:pan": "Panelist", - "roles:pat": "Patron", - "roles:pbd": "Publishing director", - "roles:pbl": "Publisher", - "roles:pdr": "Project director", - "roles:pfr": "Proofreader", - "roles:pht": "Photographer", - "roles:plt": "Platemaker", - "roles:pma": "Permitting agency", - "roles:pmn": "Production manager", - "roles:pop": "Printer of plates", - "roles:ppm": "Papermaker", - "roles:ppt": "Puppeteer", - "roles:pra": "Praeses", - "roles:prc": "Process contact", - "roles:prd": "Production personnel", - "roles:pre": "Presenter", - "roles:prf": "Performer", - "roles:prg": "Programmer", - "roles:prm": "Printmaker", - "roles:prn": "Production company", - "roles:pro": "Producer", - "roles:prp": "Production place", - "roles:prs": "Production designer", - "roles:prt": "Printer", - "roles:prv": "Provider", - "roles:pta": "Patent applicant", - "roles:pte": "Plaintiff-appellee", - "roles:ptf": "Plaintiff", - "roles:pth": "Patent holder", - "roles:ptt": "Plaintiff-appellant", - "roles:pup": "Publication place", - "roles:rbr": "Rubricator", - "roles:rcd": "Recordist", - "roles:rce": "Recording engineer", - "roles:rcp": "Addressee", - "roles:rdd": "Radio director", - "roles:red": "Redaktor", - "roles:ren": "Renderer", - "roles:res": "Researcher", - "roles:rev": "Reviewer", - "roles:rpc": "Radio producer", - "roles:rps": "Repository", - "roles:rpt": "Reporter", - "roles:rpy": "Responsible party", - "roles:rse": "Respondent-appellee", - "roles:rsg": "Restager", - "roles:rsp": "Respondent", - "roles:rsr": "Restorationist", - "roles:rst": "Respondent-appellant", - "roles:rth": "Research team head", - "roles:rtm": "Research team member", - "roles:sad": "Scientific advisor", - "roles:sce": "Scenarist", - "roles:scl": "Sculptor", - "roles:scr": "Scribe", - "roles:sds": "Sound designer", - "roles:sec": "Secretary", - "roles:sgd": "Stage director", - "roles:sgn": "Signer", - "roles:sht": "Supporting host", - "roles:sll": "Seller", - "roles:sng": "Singer", - "roles:spk": "Speaker", - "roles:spn": "Sponsor", - "roles:spy": "Second party", - "roles:srv": "Surveyor", - "roles:std": "Set designer", - "roles:stg": "Setting", - "roles:stl": "Storyteller", - "roles:stm": "Stage manager", - "roles:stn": "Standards body", - "roles:str": "Stereotyper", - "roles:tcd": "Technical director", - "roles:tch": "Teacher", - "roles:ths": "Thesis advisor", - "roles:tld": "Television director", - "roles:tlp": "Television producer", - "roles:trc": "Transcriber", - "roles:trl": "Translator", - "roles:tyd": "Type designer", - "roles:tyg": "Typographer", - "roles:uvp": "University place", - "roles:vac": "Voice actor", - "roles:vdg": "Videographer", - "roles:wac": "Writer of added commentary", - "roles:wal": "Writer of added lyrics", - "roles:wam": "Writer of accompanying material", - "roles:wat": "Writer of added text", - "roles:wdc": "Woodcutter", - "roles:wde": "Wood engraver", - "roles:win": "Writer of introduction", - "roles:wit": "Witness", - "roles:wpr": "Writer of preface", - "roles:wst": "Writer of supplementary textual content" - }, - "typeOfResource": { - "resourcetypes:art": "Artifact", - "resourcetypes:aud": "Audio", - "resourcetypes:car": "Cartographic", - "resourcetypes:col": "Collection", - "resourcetypes:dat": "Dataset", - "resourcetypes:dig": "Digital", - "resourcetypes:img": "Still Image", - "resourcetypes:man": "Manuscript", - "resourcetypes:mix": "Mixed material", - "resourcetypes:mov": "Moving image", - "resourcetypes:mul": "Multimedia", - "resourcetypes:not": "Notated music", - "resourcetypes:tac": "Tactile", - "resourcetypes:txt": "Text", - "resourcetypes:unk": "Unspecified" - }, - "languageCodes": { - "language:aar": "Afar", - "language:abk": "Abkhaz", - "language:ace": "Achinese", - "language:ach": "Acoli", - "language:ada": "Adangme", - "language:ady": "Adygei", - "language:afa": "Afroasiatic (Other)", - "language:afh": "Afrihili (Artificial language)", - "language:afr": "Afrikaans", - "language:ain": "Ainu", - "language:aka": "Akan", - "language:akk": "Akkadian", - "language:alb": "Albanian", - "language:ale": "Aleut", - "language:alg": "Algonquian (Other)", - "language:alt": "Altai", - "language:amh": "Amharic", - "language:ang": "English, Old (ca. 450-1100)", - "language:anp": "Angika", - "language:apa": "Apache languages", - "language:ara": "Arabic", - "language:arc": "Aramaic", - "language:arg": "Aragonese", - "language:arm": "Armenian", - "language:arn": "Mapuche", - "language:arp": "Arapaho", - "language:art": "Artificial (Other)", - "language:arw": "Arawak", - "language:asm": "Assamese", - "language:ast": "Bable", - "language:ath": "Athapascan (Other)", - "language:aus": "Australian languages", - "language:ava": "Avaric", - "language:ave": "Avestan", - "language:awa": "Awadhi", - "language:aym": "Aymara", - "language:aze": "Azerbaijani", - "language:bad": "Banda languages", - "language:bai": "Bamileke languages", - "language:bak": "Bashkir", - "language:bal": "Baluchi", - "language:bam": "Bambara", - "language:ban": "Balinese", - "language:baq": "Basque", - "language:bas": "Basa", - "language:bat": "Baltic (Other)", - "language:bej": "Beja", - "language:bel": "Belarusian", - "language:bem": "Bemba", - "language:ben": "Bengali", - "language:ber": "Berber (Other)", - "language:bho": "Bhojpuri", - "language:bih": "Bihari (Other)", - "language:bik": "Bikol", - "language:bin": "Edo", - "language:bis": "Bislama", - "language:bla": "Siksika", - "language:bnt": "Bantu (Other)", - "language:bos": "Bosnian", - "language:bra": "Braj", - "language:bre": "Breton", - "language:btk": "Batak", - "language:bua": "Buriat", - "language:bug": "Bugis", - "language:bul": "Bulgarian", - "language:bur": "Burmese", - "language:byn": "Bilin", - "language:cad": "Caddo", - "language:cai": "Central American Indian (Other)", - "language:car": "Carib", - "language:cat": "Catalan", - "language:cau": "Caucasian (Other)", - "language:ceb": "Cebuano", - "language:cel": "Celtic (Other)", - "language:cha": "Chamorro", - "language:chb": "Chibcha", - "language:che": "Chechen", - "language:chg": "Chagatai", - "language:chi": "Chinese", - "language:chk": "Chuukese", - "language:chm": "Mari", - "language:chn": "Chinook jargon", - "language:cho": "Choctaw", - "language:chp": "Chipewyan", - "language:chr": "Cherokee", - "language:chu": "Church Slavic", - "language:chv": "Chuvash", - "language:chy": "Cheyenne", - "language:cmc": "Chamic languages", - "language:cop": "Coptic", - "language:cor": "Cornish", - "language:cos": "Corsican", - "language:cpe": "Creoles and Pidgins, English-based (Other)", - "language:cpf": "Creoles and Pidgins, French-based (Other)", - "language:cpp": "Creoles and Pidgins, Portuguese-based (Other)", - "language:cre": "Cree", - "language:crh": "Crimean Tatar", - "language:crp": "Creoles and Pidgins (Other)", - "language:csb": "Kashubian", - "language:cus": "Cushitic (Other)", - "language:cze": "Czech", - "language:dak": "Dakota", - "language:dan": "Danish", - "language:dar": "Dargwa", - "language:day": "Dayak", - "language:del": "Delaware", - "language:den": "Slavey", - "language:dgr": "Dogrib", - "language:din": "Dinka", - "language:div": "Divehi", - "language:doi": "Dogri", - "language:dra": "Dravidian (Other)", - "language:dsb": "Lower Sorbian", - "language:dua": "Duala", - "language:dum": "Dutch, Middle (ca. 1050-1350)", - "language:dut": "Dutch", - "language:dyu": "Dyula", - "language:dzo": "Dzongkha", - "language:efi": "Efik", - "language:egy": "Egyptian", - "language:eka": "Ekajuk", - "language:elx": "Elamite", - "language:eng": "English", - "language:enm": "English, Middle (1100-1500)", - "language:epo": "Esperanto", - "language:est": "Estonian", - "language:ewe": "Ewe", - "language:ewo": "Ewondo", - "language:fan": "Fang", - "language:fao": "Faroese", - "language:fat": "Fanti", - "language:fij": "Fijian", - "language:fil": "Filipino", - "language:fin": "Finnish", - "language:fiu": "Finno-Ugrian (Other)", - "language:fon": "Fon", - "language:fre": "French", - "language:frm": "French, Middle (ca. 1300-1600)", - "language:fro": "French, Old (ca. 842-1300)", - "language:frr": "North Frisian", - "language:frs": "East Frisian", - "language:fry": "Frisian", - "language:ful": "Fula", - "language:fur": "Friulian", - "language:gaa": "Gã", - "language:gay": "Gayo", - "language:gba": "Gbaya", - "language:gem": "Germanic (Other)", - "language:geo": "Georgian", - "language:ger": "German", - "language:gez": "Ethiopic", - "language:gil": "Gilbertese", - "language:gla": "Scottish Gaelic", - "language:gle": "Irish", - "language:glg": "Galician", - "language:glv": "Manx", - "language:gmh": "German, Middle High (ca. 1050-1500)", - "language:goh": "German, Old High (ca. 750-1050)", - "language:gon": "Gondi", - "language:gor": "Gorontalo", - "language:got": "Gothic", - "language:grb": "Grebo", - "language:grc": "Greek, Ancient (to 1453)", - "language:gre": "Greek, Modern (1453- )", - "language:grn": "Guarani", - "language:gsw": "Swiss German", - "language:guj": "Gujarati", - "language:gwi": "Gwich'in", - "language:hai": "Haida", - "language:hat": "Haitian French Creole", - "language:hau": "Hausa", - "language:haw": "Hawaiian", - "language:heb": "Hebrew", - "language:her": "Herero", - "language:hil": "Hiligaynon", - "language:him": "Western Pahari languages", - "language:hin": "Hindi", - "language:hit": "Hittite", - "language:hmn": "Hmong", - "language:hmo": "Hiri Motu", - "language:hrv": "Croatian", - "language:hsb": "Upper Sorbian", - "language:hun": "Hungarian", - "language:hup": "Hupa", - "language:iba": "Iban", - "language:ibo": "Igbo", - "language:ice": "Icelandic", - "language:ido": "Ido", - "language:iii": "Sichuan Yi", - "language:ijo": "Ijo", - "language:iku": "Inuktitut", - "language:ile": "Interlingue", - "language:ilo": "Iloko", - "language:ina": "Interlingua (International Auxiliary Language Association)", - "language:inc": "Indic (Other)", - "language:ind": "Indonesian", - "language:ine": "Indo-European (Other)", - "language:inh": "Ingush", - "language:ipk": "Inupiaq", - "language:ira": "Iranian (Other)", - "language:iro": "Iroquoian (Other)", - "language:ita": "Italian", - "language:jav": "Javanese", - "language:jbo": "Lojban (Artificial language)", - "language:jpn": "Japanese", - "language:jpr": "Judeo-Persian", - "language:jrb": "Judeo-Arabic", - "language:kaa": "Kara-Kalpak", - "language:kab": "Kabyle", - "language:kac": "Kachin", - "language:kal": "Kalâtdlisut", - "language:kam": "Kamba", - "language:kan": "Kannada", - "language:kar": "Karen languages", - "language:kas": "Kashmiri", - "language:kau": "Kanuri", - "language:kaw": "Kawi", - "language:kaz": "Kazakh", - "language:kbd": "Kabardian", - "language:kha": "Khasi", - "language:khi": "Khoisan (Other)", - "language:khm": "Khmer", - "language:kho": "Khotanese", - "language:kik": "Kikuyu", - "language:kin": "Kinyarwanda", - "language:kir": "Kyrgyz", - "language:kmb": "Kimbundu", - "language:kok": "Konkani", - "language:kom": "Komi", - "language:kon": "Kongo", - "language:kor": "Korean", - "language:kos": "Kosraean", - "language:kpe": "Kpelle", - "language:krc": "Karachay-Balkar", - "language:krl": "Karelian", - "language:kro": "Kru (Other)", - "language:kru": "Kurukh", - "language:kua": "Kuanyama", - "language:kum": "Kumyk", - "language:kur": "Kurdish", - "language:kut": "Kootenai", - "language:lad": "Ladino", - "language:lah": "Lahndā", - "language:lam": "Lamba (Zambia and Congo)", - "language:lao": "Lao", - "language:lat": "Latin", - "language:lav": "Latvian", - "language:lez": "Lezgian", - "language:lim": "Limburgish", - "language:lin": "Lingala", - "language:lit": "Lithuanian", - "language:lol": "Mongo-Nkundu", - "language:loz": "Lozi", - "language:ltz": "Luxembourgish", - "language:lua": "Luba-Lulua", - "language:lub": "Luba-Katanga", - "language:lug": "Ganda", - "language:lui": "Luiseño", - "language:lun": "Lunda", - "language:luo": "Luo (Kenya and Tanzania)", - "language:lus": "Lushai", - "language:mac": "Macedonian", - "language:mad": "Madurese", - "language:mag": "Magahi", - "language:mah": "Marshallese", - "language:mai": "Maithili", - "language:mak": "Makasar", - "language:mal": "Malayalam", - "language:man": "Mandingo", - "language:mao": "Maori", - "language:map": "Austronesian (Other)", - "language:mar": "Marathi", - "language:mas": "Maasai", - "language:may": "Malay", - "language:mdf": "Moksha", - "language:mdr": "Mandar", - "language:men": "Mende", - "language:mga": "Irish, Middle (ca. 1100-1550)", - "language:mic": "Micmac", - "language:min": "Minangkabau", - "language:mis": "Miscellaneous languages", - "language:mkh": "Mon-Khmer (Other)", - "language:mlg": "Malagasy", - "language:mlt": "Maltese", - "language:mnc": "Manchu", - "language:mni": "Manipuri", - "language:mno": "Manobo languages", - "language:moh": "Mohawk", - "language:mon": "Mongolian", - "language:mos": "Mooré", - "language:mul": "Multiple languages", - "language:mun": "Munda (Other)", - "language:mus": "Creek", - "language:mwl": "Mirandese", - "language:mwr": "Marwari", - "language:myn": "Mayan languages", - "language:myv": "Erzya", - "language:nah": "Nahuatl", - "language:nai": "North American Indian (Other)", - "language:nap": "Neapolitan Italian", - "language:nau": "Nauru", - "language:nav": "Navajo", - "language:nbl": "Ndebele (South Africa)", - "language:nde": "Ndebele (Zimbabwe)", - "language:ndo": "Ndonga", - "language:nds": "Low German", - "language:nep": "Nepali", - "language:new": "Newari", - "language:nia": "Nias", - "language:nic": "Niger-Kordofanian (Other)", - "language:niu": "Niuean", - "language:nno": "Norwegian (Nynorsk)", - "language:nob": "Norwegian (Bokmål)", - "language:nog": "Nogai", - "language:non": "Old Norse", - "language:nor": "Norwegian", - "language:nqo": "N'Ko", - "language:nso": "Northern Sotho", - "language:nub": "Nubian languages", - "language:nwc": "Newari, Old", - "language:nya": "Nyanja", - "language:nym": "Nyamwezi", - "language:nyn": "Nyankole", - "language:nyo": "Nyoro", - "language:nzi": "Nzima", - "language:oci": "Occitan (post-1500)", - "language:oji": "Ojibwa", - "language:ori": "Oriya", - "language:orm": "Oromo", - "language:osa": "Osage", - "language:oss": "Ossetic", - "language:ota": "Turkish, Ottoman", - "language:oto": "Otomian languages", - "language:paa": "Papuan (Other)", - "language:pag": "Pangasinan", - "language:pal": "Pahlavi", - "language:pam": "Pampanga", - "language:pan": "Panjabi", - "language:pap": "Papiamento", - "language:pau": "Palauan", - "language:peo": "Old Persian (ca. 600-400 B.C.)", - "language:per": "Persian", - "language:phi": "Philippine (Other)", - "language:phn": "Phoenician", - "language:pli": "Pali", - "language:pol": "Polish", - "language:pon": "Pohnpeian", - "language:por": "Portuguese", - "language:pra": "Prakrit languages", - "language:pro": "Provençal (to 1500)", - "language:pus": "Pushto", - "language:que": "Quechua", - "language:raj": "Rajasthani", - "language:rap": "Rapanui", - "language:rar": "Rarotongan", - "language:roa": "Romance (Other)", - "language:roh": "Raeto-Romance", - "language:rom": "Romani", - "language:rum": "Romanian", - "language:run": "Rundi", - "language:rup": "Aromanian", - "language:rus": "Russian", - "language:sad": "Sandawe", - "language:sag": "Sango (Ubangi Creole)", - "language:sah": "Yakut", - "language:sai": "South American Indian (Other)", - "language:sal": "Salishan languages", - "language:sam": "Samaritan Aramaic", - "language:san": "Sanskrit", - "language:sas": "Sasak", - "language:sat": "Santali", - "language:scn": "Sicilian Italian", - "language:sco": "Scots", - "language:sel": "Selkup", - "language:sem": "Semitic (Other)", - "language:sga": "Irish, Old (to 1100)", - "language:sgn": "Sign languages", - "language:shn": "Shan", - "language:sid": "Sidamo", - "language:sin": "Sinhalese", - "language:sio": "Siouan (Other)", - "language:sit": "Sino-Tibetan (Other)", - "language:sla": "Slavic (Other)", - "language:slo": "Slovak", - "language:slv": "Slovenian", - "language:sma": "Southern Sami", - "language:sme": "Northern Sami", - "language:smi": "Sami", - "language:smj": "Lule Sami", - "language:smn": "Inari Sami", - "language:smo": "Samoan", - "language:sms": "Skolt Sami", - "language:sna": "Shona", - "language:snd": "Sindhi", - "language:snk": "Soninke", - "language:sog": "Sogdian", - "language:som": "Somali", - "language:son": "Songhai", - "language:sot": "Sotho", - "language:spa": "Spanish", - "language:srd": "Sardinian", - "language:srn": "Sranan", - "language:srp": "Serbian", - "language:srr": "Serer", - "language:ssa": "Nilo-Saharan (Other)", - "language:ssw": "Swazi", - "language:suk": "Sukuma", - "language:sun": "Sundanese", - "language:sus": "Susu", - "language:sux": "Sumerian", - "language:swa": "Swahili", - "language:swe": "Swedish", - "language:syc": "Syriac", - "language:syr": "Syriac, Modern", - "language:tah": "Tahitian", - "language:tai": "Tai (Other)", - "language:tam": "Tamil", - "language:tat": "Tatar", - "language:tel": "Telugu", - "language:tem": "Temne", - "language:ter": "Terena", - "language:tet": "Tetum", - "language:tgk": "Tajik", - "language:tgl": "Tagalog", - "language:tha": "Thai", - "language:tib": "Tibetan", - "language:tig": "Tigré", - "language:tir": "Tigrinya", - "language:tiv": "Tiv", - "language:tkl": "Tokelauan", - "language:tlh": "Klingon (Artificial language)", - "language:tli": "Tlingit", - "language:tmh": "Tamashek", - "language:tog": "Tonga (Nyasa)", - "language:ton": "Tongan", - "language:tpi": "Tok Pisin", - "language:tsi": "Tsimshian", - "language:tsn": "Tswana", - "language:tso": "Tsonga", - "language:tuk": "Turkmen", - "language:tum": "Tumbuka", - "language:tup": "Tupi languages", - "language:tur": "Turkish", - "language:tut": "Altaic (Other)", - "language:tvl": "Tuvaluan", - "language:twi": "Twi", - "language:tyv": "Tuvinian", - "language:udm": "Udmurt", - "language:uga": "Ugaritic", - "language:uig": "Uighur", - "language:ukr": "Ukrainian", - "language:umb": "Umbundu", - "language:und": "Undetermined", - "language:urd": "Urdu", - "language:uzb": "Uzbek", - "language:vai": "Vai", - "language:ven": "Venda", - "language:vie": "Vietnamese", - "language:vol": "Volapük", - "language:vot": "Votic", - "language:wak": "Wakashan languages", - "language:wal": "Wolayta", - "language:war": "Waray", - "language:was": "Washoe", - "language:wel": "Welsh", - "language:wen": "Sorbian (Other)", - "language:wln": "Walloon", - "language:wol": "Wolof", - "language:xal": "Oirat", - "language:xho": "Xhosa", - "language:yao": "Yao (Africa)", - "language:yap": "Yapese", - "language:yid": "Yiddish", - "language:yor": "Yoruba", - "language:ypk": "Yupik languages", - "language:zap": "Zapotec", - "language:zbl": "Blissymbolics", - "language:zen": "Zenaga", - "language:zha": "Zhuang", - "language:znd": "Zande languages", - "language:zul": "Zulu", - "language:zun": "Zuni", - "language:zxx": "No linguistic content", - "language:zza": "Zaza" - }, - "typeOfResourceImg": { - "resourcetypes:art": "art.png", - "resourcetypes:aud": "aud.png", - "resourcetypes:car": "car.png", - "resourcetypes:col": "col.png", - "resourcetypes:dat": "dat.png", - "resourcetypes:dig": "dig.png", - "resourcetypes:img": "img.png", - "resourcetypes:man": "man.png", - "resourcetypes:mix": "mix.png", - "resourcetypes:mov": "mov.png", - "resourcetypes:mul": "mul.png", - "resourcetypes:not": "not.png", - "resourcetypes:tac": "tac.png", - "resourcetypes:txt": "txt.png", - "resourcetypes:unk": "unk.png" - } - } -} diff --git a/data/prefixes.csv b/data/prefixes.csv deleted file mode 100644 index 629bd675..00000000 --- a/data/prefixes.csv +++ /dev/null @@ -1,31 +0,0 @@ -agents, http://data.nypl.org/agents/ -bf, http://bibframe.org/vocab/ -classify, http://purl.org/library/ -carrier, http://id.loc.gov/authorities/carrierTypes/ -data, http://data.nypl.org/datasets/ -db, https://NEEDTOFIX.org/what-is-db/ -dbo, http://www.dbpedia.org/ontology/ -dbr, http://www.dbpedia.org/resource/ -dcterms, http://purl.org/dc/terms/ -edm, http://www.europeana.eu/schemas/edm -foaf, http://xmlns.com/foaf/0.1/ -language, http://id.loc.gov/vocabulary/languages/ -lc, http://id.loc.gov/authorities/names/ -media, http://id.loc.gov/authorities/mediaTypes/ -nypl, http://data.nypl.org/nypl-core/ -nyplapp, http://data.nypl.org/nypl-application/ -org, http://www.w3.org/ns/org# -orgs, http://data.nypl.org/organizations/ -pcdm, http://pcdm.org/models# -rdf, http://www.w3.org/1999/02/22-rdf-syntax-ns# -rdfs, https://www.w3.org/2000/01/rdf-schema -res, http://data.nypl.org/resources/ -resourcetypes, http://id.loc.gov/vocabulary/resourceTypes/ -roles, http://id.loc.gov/vocabulary/relators/ -kos, http://www.w3.org/2004/02/skos/core# -schema, http://schema.org/ -terms, http://data.nypl.org/terms/ -urn, urn:x-nypl: -viaf, http://viaf.org/viaf/ -wikidata, https://www.wikidata.org/wiki/ -xsd, http://www.w3.org/2001/XMLSchema# diff --git a/lib/availability_resolver.js b/lib/availability_resolver.js index b0e92282..14fab431 100644 --- a/lib/availability_resolver.js +++ b/lib/availability_resolver.js @@ -1,4 +1,3 @@ -const config = require('config') const scsbClient = require('./scsb-client') const logger = require('./logger') const ResourceSerializer = require('./jsonld_serializers').ResourceSerializer @@ -6,6 +5,17 @@ const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper' const { nonRecapItemStatusAggregation } = require('./es-client') const { deepValue, isInRecap } = require('./util') +const ITEM_STATUSES = { + available: { + id: 'status:a', + label: 'Available' + }, + notAvailable: { + id: 'status:na', + label: 'Not available' + } +} + class AvailabilityResolver { constructor (responseReceived) { this.elasticSearchResponse = responseReceived @@ -118,8 +128,8 @@ class AvailabilityResolver { const buckets = resp.aggregations.item_status._nested.buckets resp.aggregations.item_status._nested.buckets = buckets.map((bucket) => { const id = bucket.key.split('||').shift() - if (id === config.get('itemAvailability.notAvailable.id')) { - bucket.key = `${id}||${config.get('itemAvailability.notAvailable.label')}` + if (id === ITEM_STATUSES.notAvailable.id) { + bucket.key = `${id}||${ITEM_STATUSES.notAvailable.label}` } return bucket }) @@ -141,9 +151,9 @@ class AvailabilityResolver { // Build status agg response for just ReCAP statuses: return Object.keys(recapStatusesToCounts) .map((status) => { - let key = `${config.get('itemAvailability.notAvailable.id')}||${config.get('itemAvailability.notAvailable.label')}` + let key = `${ITEM_STATUSES.notAvailable.id}||${ITEM_STATUSES.notAvailable.label}` if (status === 'Available') { - key = `${config.get('itemAvailability.available.id')}||${config.get('itemAvailability.available.label')}` + key = `${ITEM_STATUSES.available.id}||${ITEM_STATUSES.available.label}` } return { key, doc_count: recapStatusesToCounts[status] } }) @@ -246,16 +256,16 @@ class AvailabilityResolver { const barcode = this._getItemBarcode(item) const recapAvailabilityStatus = barcodesAndAvailability[barcode] if (recapAvailabilityStatus === 'Available') { - item.status[0].id = config.get('itemAvailability.available.id') - item.status[0].label = config.get('itemAvailability.available.label') + item.status[0].id = ITEM_STATUSES.available.id + item.status[0].label = ITEM_STATUSES.available.label } else { - item.status[0].id = config.get('itemAvailability.notAvailable.id') - item.status[0].label = config.get('itemAvailability.notAvailable.label') + item.status[0].id = ITEM_STATUSES.notAvailable.id + item.status[0].label = ITEM_STATUSES.notAvailable.label } // If item has been mis-indexed with wrong status:na label, fix it: } else if (item.status && item.status[0] && - item.status[0].id === config.get('itemAvailability.notAvailable.id')) { - item.status[0].label = config.get('itemAvailability.notAvailable.label') + item.status[0].id === ITEM_STATUSES.notAvailable.id) { + item.status[0].label = ITEM_STATUSES.notAvailable.label } return item }) diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 4cf10cce..4deb9539 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -1,5 +1,5 @@ const { itemHasRecapHoldingLocation, barcodeFromItem } = require('./util') -const SCSBRestClient = require('@nypl/scsb-rest-client') +const scsbClient = require('./scsb-client') const recapCustomerCodes = require('@nypl/nypl-core-objects')('by-recap-customer-code') const sierraLocations = require('@nypl/nypl-core-objects')('by-sierra-location') const logger = require('./logger') @@ -122,42 +122,11 @@ class DeliveryLocationsResolver { static __recapCustomerCodesByBarcodes (barcodes) { if (!barcodes || barcodes.length === 0) return Promise.resolve({}) - const scsbClient = new SCSBRestClient({ url: process.env.SCSB_URL, apiKey: process.env.SCSB_API_KEY }) - // Record time to process all: const __startAll = new Date() return Promise.all( - barcodes.map((barcode) => { - // Record start time to process this request - const __start = new Date() - return scsbClient.search({ fieldValue: barcode, fieldName: 'Barcode' }) - .then((response) => { - const ellapsed = ((new Date()) - __start) - logger.debug({ message: `HTC searchByParam API took ${ellapsed}ms`, metric: 'searchByParam-barcode', timeMs: ellapsed }) - - if (response && response.searchResultRows && response.searchResultRows.length) { - const results = response.searchResultRows - let customerCode = null - - if (results && (results.length > 0) && results[0].searchItemResultRows.length > 0) { - logger.debug(`${barcode} is a serial item`) - customerCode = results[0].searchItemResultRows[0].customerCode - } else { - logger.debug(`${barcode} is a not a serial item`) - customerCode = results[0].customerCode - } - return { [barcode]: customerCode } - } - }) - .catch((error) => { - // This is a common error: - // "Error hitting SCSB API 502: \r\n502 Bad Gateway\r\n\r\n

502 Bad Gateway

\r\n\r\n\r\n" - // return Promise.reject(error) - logger.error({ message: 'HTC API error. Send everything to NH', htcError: error.message }) - return null - }) - }) + barcodes.map(scsbClient.recapCustomerCodeByBarcode) ).then((scsbResponses) => { const ellapsed = ((new Date()) - __startAll) logger.debug({ message: `HTC searchByParam API across ${barcodes.length} barcodes took ${ellapsed}ms total`, metric: 'searchByParam-barcode-multiple', timeMs: ellapsed }) diff --git a/lib/globals.js b/lib/globals.js deleted file mode 100644 index 0ab071db..00000000 --- a/lib/globals.js +++ /dev/null @@ -1,20 +0,0 @@ -const util = require('./util') - -module.exports = function (app) { - // Load various two-col csvs mapping column 0 to value in column 1 - const promises = ['prefixes'].map((which) => { - return util.readCsv(`./data/${which}.csv`).then((rows) => { - return { - [which]: rows.reduce((h, r) => { - h[r[0]] = r[1] - return h - }, {}) - } - }) - }) - - return Promise.all(promises).then((globals) => { - app.globals = globals - return app - }) -} diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index f9983dd9..a64c421a 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -1,8 +1,5 @@ 'use strict' -const R = require('ramda') -const lexicon = require('nypl-registry-utils-lexicon') - const NyplSourceMapper = require('discovery-store-models/lib/nypl-source-mapper') const util = require('./util.js') @@ -211,24 +208,13 @@ class ResourceSerializer extends JsonLdItemSerializer { constructor (item, options) { super(item, options) // Serialize both the most general type (Resource) as well as any resource-specific type (Collection, Component, Capture, etc) - this.type = R.uniq(R.flatten([item.type].concat('nypl:Resource'))) + this.type = [...new Set([item.type].concat('nypl:Resource').flat())] } statements () { const stmts = JsonLdItemSerializer.prototype.statements.call(this) - if (this.body.parentUri) stmts.memberOf = R.flatten([util.eachValue(this.body.parentUri, (id) => ({ '@type': 'nypl:Resource', '@id': `res:${id}` }))]) - - // Parse all contributor_(aut|ill|...) statements: - Object.keys(this.body).forEach((field) => { - let match = null - if ((match = field.match(/^contributor_(\w{3})_packed$/))) { - const role = match[1] - stmts[`roles:${role}`] = JsonLdItemSerializer.parsePackedStatement(this.body[field]).map((contributor) => { - return Object.assign(contributor, { note: lexicon.labels.relators[role] }) - }) - } - }) + if (this.body.parentUri) stmts.memberOf = [util.eachValue(this.body.parentUri, (id) => ({ '@type': 'nypl:Resource', '@id': `res:${id}` }))].flat() // Override default serialization of bib.supplementaryContent statements (finding aids, TOCs, etc.): if (this.body.supplementaryContent) { diff --git a/lib/util.js b/lib/util.js index 1f5c20fc..2e043327 100644 --- a/lib/util.js +++ b/lib/util.js @@ -1,12 +1,6 @@ -const config = require('config') -const jsonld = require('jsonld') -const fs = require('fs') -const csv = require('fast-csv') const logger = require('./logger') const isItemNyplOwned = require('./ownership_determination').isItemNyplOwned -exports.contextAll = config.contextAll - exports.buildJsonLdContext = function (prefixes) { const context = JSON.parse(JSON.stringify(prefixes)) delete context.urn @@ -48,6 +42,7 @@ exports.context = (which) => { }) } +const __fileCache = {} const readJson = (path) => { const cacheKey = `readJson:${path}` if (__fileCache[cacheKey]) return Promise.resolve(__fileCache[cacheKey]) @@ -65,26 +60,6 @@ const readJson = (path) => { }) } -const __fileCache = {} -exports.readCsv = (path) => { - const cacheKey = `readCsv:${path}` - if (__fileCache[cacheKey]) return Promise.resolve(__fileCache[cacheKey]) - - return new Promise((resolve, reject) => { - const rows = [] - - fs.createReadStream(path) - .pipe(csv()) - .on('data', (data) => { - rows.push(data) - }) - .on('end', () => { - __fileCache[cacheKey] = rows - resolve(rows) - }) - }) -} - exports.eachValue = function (a, cb) { switch (typeof a) { case 'object': return a.map(cb) @@ -93,104 +68,6 @@ exports.eachValue = function (a, cb) { } } -exports.flatenTriples = function (object) { - const flat = { objectLiteral: {}, objectUri: {} } - for (const key in object) { - // is this a triple - if (config.predicatesAgents.indexOf(key) > -1 || config.predicatesResources.indexOf(key) > -1) { - object[key].forEach((value) => { - if (value.objectLiteral) { - if (!flat.objectLiteral[key]) flat.objectLiteral[key] = [] - flat.objectLiteral[key].push(value.objectLiteral) - } - if (value.objectUri) { - if (!flat.objectUri[key]) flat.objectUri[key] = [] - flat.objectUri[key].push(value.objectUri) - if (value.label) { - if (!flat.objectUri[key + ':label']) flat.objectUri[key + ':label'] = [] - flat.objectUri[key + ':label'].push({ uri: value.objectUri, label: value.label }) - } - } - }) - } - } - return flat -} - -exports.expandObjectUri = function (objectUri) { - if (!objectUri) return false - - const split = objectUri.split(':') - const prefix = split[0] - split.shift(0, 1) - const value = split.join(':') - - const uriBase = config.prefixes[prefix] - if (!uriBase) { - console.log('Unknown Prefix:', prefix) - return false - } - return uriBase + value -} - -// turns the objects into triples sans provo -exports.returnNtTriples = function (obj, type) { - let uri = null - const triples = [] - if (type === 'resource') { - uri = '' - } else if (type === 'agent') { - uri = '' - } else if (type === 'term') { - uri = '' - } else if (type === 'org') { - uri = '' - } else if (type === 'dataset') { - uri = '' - } else { - return false - } - - for (const p in obj.statements) { - if ((typeof obj.statements[p]) !== 'object') continue - - if (config.predicatesAgents.indexOf(p) > -1 || config.predicatesResources.indexOf(p) > -1) { - // it is a triple - const expandedPredicate = '<' + exports.expandObjectUri(p) + '>' - obj.statements[p].forEach((o) => { - let expandedObject = null - if (o.objectUri) { - expandedObject = '<' + exports.expandObjectUri(o.objectUri) + '>' - } else { - expandedObject = exports.expandObjectUri(o.objectLiteralType) - if (expandedObject === false && o.objectLiteralType) { - expandedObject = '@' + o.objectLiteralType - } else if (typeof expandedObject === 'string') { - expandedObject = '^^<' + expandedObject + '>' - } else { - expandedObject = '' - } - if (typeof o.objectLiteral === 'string') o.objectLiteral = o.objectLiteral.replace('"', '\\"').replace('\n', ' ') - expandedObject = '"' + o.objectLiteral + '"' + expandedObject - } - triples.push(uri + ' ' + expandedPredicate + ' ' + expandedObject + '.') - }) - } - } - return triples -} - -exports.returnNtJsonLd = function (obj, type, cb) { - const triples = exports.returnNtTriples(obj, type).join('\n') - jsonld.fromRDF(triples, { format: 'application/nquads' }, function (err, doc) { - if (err) console.log(JSON.stringify(err, null, 2)) - jsonld.compact(doc, exports.context, function (err, compacted) { - if (err) console.log(err) - cb(err, compacted) - }) - }) -} - // Applies validation against hash of params given spec // see `parseParams` exports.parseParams = function (params, spec) { diff --git a/package-lock.json b/package-lock.json index f5a2d24c..66a21c12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,16 +13,9 @@ "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.5", "@nypl/scsb-rest-client": "2.0.0", - "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", - "dotenv": "^4.0.0", - "express": "^4.14.0", - "fast-csv": "^2.3.0", - "jsonld": "^2.0.2", - "nypl-registry-utils-lexicon": "nypl-registry/utils-lexicon", - "ramda": "^0.21.0", - "request": "2.88.2", - "string_score": "^0.1.22", + "dotenv": "^16.4.5", + "express": "^4.18.3", "winston": "3.12.0" }, "devDependencies": { @@ -32,7 +25,7 @@ "chai-as-promised": "^7.1.1", "md5": "^2.2.1", "minimist": "^1.2.5", - "mocha": "^6.2.3", + "mocha": "^10.3.0", "qs": "^6.5.1", "request-promise": "^4.1.1", "should": "^7.0.2", @@ -384,6 +377,14 @@ "node": ">=0.1.90" } }, + "node_modules/@nypl/nypl-data-api-client/node_modules/dotenv": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz", + "integrity": "sha512-XcaMACOr3JMVcEv0Y/iUM2XaOsATRZ3U1In41/1jjK6vJZ2PZbQ1bzCG8uvaByfaBpl9gqc9QWJovpUGBXLLYQ==", + "engines": { + "node": ">=4.6.0" + } + }, "node_modules/@nypl/scsb-rest-client": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@nypl/scsb-rest-client/-/scsb-rest-client-2.0.0.tgz", @@ -526,35 +527,22 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ajv-keywords": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", - "integrity": "sha512-vuBv+fm2s6cqUyey2A7qYcvsik+GMDJsw8BARP2sDE76cqmaZVarsvHf7Vx6VJ0Xk8gLl+u3MoAPf6gKzJefeA==", - "peerDependencies": { - "ajv": ">=4.10.0" - } - }, "node_modules/ansi-colors": { - "version": "3.2.3", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/ansi-regex": { - "version": "2.1.1", - "license": "MIT", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/ansi-styles": { @@ -590,19 +578,17 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/arguments-extended": { - "version": "0.0.3", - "license": "MIT", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, "dependencies": { - "extended": "~0.0.3", - "is-extended": "~0.0.8" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, "node_modules/array-buffer-byte-length": { @@ -621,15 +607,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array-extended": { - "version": "0.0.11", - "license": "MIT", - "dependencies": { - "arguments-extended": "~0.0.3", - "extended": "~0.0.3", - "is-extended": "~0.0.3" - } - }, "node_modules/array-flatten": { "version": "1.1.1", "license": "MIT" @@ -746,24 +723,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.reduce": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/array.prototype.toreversed": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", @@ -956,6 +915,7 @@ }, "node_modules/balanced-match": { "version": "1.0.2", + "dev": true, "license": "MIT" }, "node_modules/base64-js": { @@ -984,17 +944,30 @@ "tweetnacl": "^0.14.3" } }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/bluebird": { "version": "3.7.2", "dev": true, "license": "MIT" }, "node_modules/body-parser": { - "version": "1.20.1", - "license": "MIT", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -1002,7 +975,7 @@ "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", - "raw-body": "2.5.1", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -1013,7 +986,8 @@ }, "node_modules/body-parser/node_modules/qs": { "version": "6.11.0", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { "side-channel": "^1.0.4" }, @@ -1026,12 +1000,25 @@ }, "node_modules/brace-expansion": { "version": "1.1.11", + "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/browser-stdout": { "version": "1.3.1", "dev": true, @@ -1099,7 +1086,8 @@ }, "node_modules/bytes": { "version": "3.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } @@ -1122,25 +1110,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==", - "dependencies": { - "callsites": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/caller-path/node_modules/callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -1151,17 +1120,17 @@ } }, "node_modules/camelcase": { - "version": "5.3.1", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/canonicalize": { - "version": "1.0.8", - "license": "Apache-2.0" - }, "node_modules/caseless": { "version": "0.11.0", "license": "Apache-2.0" @@ -1226,76 +1195,54 @@ "node": "*" } }, - "node_modules/circular-json": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", - "deprecated": "CircularJSON is in maintenance only, flatted is its successor." - }, - "node_modules/cli-cursor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha512-25tABq090YNKkF6JH7lcwO0zFJTRke4Jcq9iX2nr/Sz0Cjjv4gckmwlW6Ty/aoyFd6z3ysR2hMGC2GFugmBo6A==", - "dependencies": { - "restore-cursor": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" - }, - "node_modules/cliui": { - "version": "5.0.0", + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, - "license": "ISC", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - } - }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true, - "license": "MIT", + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, "engines": { - "node": ">=4" + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/cliui/node_modules/string-width": { - "version": "3.1.0", + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "license": "MIT", "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=6" + "node": ">= 6" } }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "5.2.0", + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, "node_modules/clone": { @@ -1305,22 +1252,6 @@ "node": ">=0.8" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/color": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", @@ -1382,6 +1313,7 @@ }, "node_modules/concat-map": { "version": "0.0.1", + "dev": true, "license": "MIT" }, "node_modules/concat-stream": { @@ -1397,12 +1329,6 @@ "typedarray": "^0.0.6" } }, - "node_modules/config": { - "version": "1.12.0", - "engines": { - "node": ">0.4.x" - } - }, "node_modules/content-disposition": { "version": "0.5.4", "license": "MIT", @@ -1433,7 +1359,8 @@ }, "node_modules/content-type": { "version": "1.0.5", - "license": "MIT", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "engines": { "node": ">= 0.6" } @@ -1525,18 +1452,6 @@ "node": ">=0.4.0" } }, - "node_modules/d": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", - "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", - "dependencies": { - "es5-ext": "^0.10.64", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.12" - } - }, "node_modules/dashdash": { "version": "1.14.1", "license": "MIT", @@ -1547,15 +1462,6 @@ "node": ">=0.10" } }, - "node_modules/date-extended": { - "version": "0.0.6", - "license": "MIT", - "dependencies": { - "array-extended": "~0.0.3", - "extended": "~0.0.3", - "is-extended": "~0.0.3" - } - }, "node_modules/debug": { "version": "2.6.9", "license": "MIT", @@ -1563,30 +1469,22 @@ "ms": "2.0.0" } }, - "node_modules/debug-log": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", - "integrity": "sha512-gV/pe1YIaKNgLYnd1g9VNW80tcb7oV5qvNUxG7NM8rbDpnl6RGunzlAtlGSb0wEs3nesu2vHNiX9TSsZ+Y+RjA==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/debug/node_modules/ms": { "version": "2.0.0", "license": "MIT" }, "node_modules/decamelize": { - "version": "1.2.0", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/declare.js": { - "version": "0.0.8", - "license": "MIT" - }, "node_modules/deep-eql": { "version": "4.1.3", "dev": true, @@ -1601,26 +1499,8 @@ "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "engines": { - "node": ">=0.8" - } + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/define-data-property": { "version": "1.1.4", @@ -1655,25 +1535,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/deglob": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/deglob/-/deglob-1.1.2.tgz", - "integrity": "sha512-CACtLHJwEHEgrs2aShBEV4B318fGmUlYMzZgxut1h/R6k2vyusxwVAJJU+1IiPFgNuOPOfH1rBHrtJ2hwEElLw==", - "dependencies": { - "find-root": "^1.0.0", - "glob": "^7.0.5", - "ignore": "^3.0.9", - "pkg-config": "^1.1.0", - "run-parallel": "^1.1.2", - "uniq": "^1.0.1", - "xtend": "^4.0.0" - } - }, - "node_modules/deglob/node_modules/ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" - }, "node_modules/delayed-stream": { "version": "1.0.0", "license": "MIT", @@ -1749,10 +1610,14 @@ } }, "node_modules/dotenv": { - "version": "4.0.0", - "license": "BSD-2-Clause", + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "engines": { - "node": ">=4.6.0" + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" } }, "node_modules/ecc-jsbn": { @@ -1768,9 +1633,10 @@ "license": "MIT" }, "node_modules/emoji-regex": { - "version": "7.0.3", - "dev": true, - "license": "MIT" + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, "node_modules/enabled": { "version": "2.0.0", @@ -1963,81 +1829,13 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es5-ext": { - "version": "0.10.64", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", - "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", - "hasInstallScript": true, - "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "esniff": "^2.0.1", - "next-tick": "^1.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha512-mz3UqCh0uPCIqsw1SSAkB/p0rOzF/M0V++vyN7JqlPtSW/VsYgQBvVvqMLmfBuyMzTpLnNqi6JmcSizs4jy19A==", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-set": "~0.1.5", - "es6-symbol": "~3.1.1", - "event-emitter": "~0.3.5" - } - }, - "node_modules/es6-set": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz", - "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==", - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "es6-iterator": "~2.0.3", - "es6-symbol": "^3.1.3", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", - "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", - "dependencies": { - "d": "^1.0.2", - "ext": "^1.7.0" - }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, "engines": { - "node": ">=0.12" - } - }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" + "node": ">=6" } }, "node_modules/escape-html": { @@ -2045,32 +1843,15 @@ "license": "MIT" }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escope": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", - "integrity": "sha512-75IUQsusDdalQEW/G/2esa87J7raqdJF+Ca0/Xm5C3Q58Nr4yVYjZGp/P1+2xiEVgXRrA39dpRb8LcshajbqDQ==", - "dependencies": { - "es6-map": "^0.1.3", - "es6-weak-map": "^2.0.1", - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/escope/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { @@ -2471,11 +2252,6 @@ "semver": "bin/semver.js" } }, - "node_modules/eslint-plugin-standard": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-1.3.3.tgz", - "integrity": "sha512-LjMgISU4D6qdCmyGDzowQm5bINHpzkGiem1zhcm+Qa/FyZHsccZDU13cGYiEvF6iYl0ZazXAvPSPxbpD6/aEOg==" - }, "node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", @@ -2531,15 +2307,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2557,18 +2324,6 @@ } } }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -2645,32 +2400,6 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/esniff": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", - "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", @@ -2688,17 +2417,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/esprima": { - "version": "4.0.1", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/esquery": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", @@ -2715,6 +2433,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, "dependencies": { "estraverse": "^5.2.0" }, @@ -2726,22 +2445,16 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, "engines": { "node": ">=4.0" } }, - "node_modules/estraverse-fb": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.2.tgz", - "integrity": "sha512-wp3lfRrWy5EQD9TqesuYM1SKVP4ERT0cUatb4e8Vznf4K5IOpREhuyXZxGj3a9s9mvX5vGZKNHA4R9D4kp9Q9A==", - "peerDependencies": { - "estraverse": "*" - } - }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -2753,15 +2466,6 @@ "node": ">= 0.6" } }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, "node_modules/events": { "version": "1.1.1", "dev": true, @@ -2770,21 +2474,14 @@ "node": ">=0.4.x" } }, - "node_modules/exit-hook": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha512-MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/express": { - "version": "4.18.2", - "license": "MIT", + "version": "4.18.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.3.tgz", + "integrity": "sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -2849,32 +2546,10 @@ ], "license": "MIT" }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "dependencies": { - "type": "^2.7.2" - } - }, "node_modules/extend": { "version": "3.0.2", "license": "MIT" }, - "node_modules/extended": { - "version": "0.0.6", - "license": "MIT", - "dependencies": { - "extender": "~0.0.5" - } - }, - "node_modules/extender": { - "version": "0.0.10", - "license": "MIT", - "dependencies": { - "declare.js": "~0.0.4" - } - }, "node_modules/extsprintf": { "version": "1.3.0", "engines": [ @@ -2888,20 +2563,6 @@ "node": "> 0.1.90" } }, - "node_modules/fast-csv": { - "version": "2.5.0", - "license": "MIT", - "dependencies": { - "extended": "0.0.6", - "is-extended": "0.0.10", - "object-extended": "0.0.7", - "safer-buffer": "^2.1.2", - "string-extended": "0.0.8" - }, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "license": "MIT" @@ -2913,7 +2574,8 @@ "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "node_modules/fastq": { "version": "1.17.1", @@ -2929,18 +2591,6 @@ "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" }, - "node_modules/figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==", - "dependencies": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -2953,6 +2603,18 @@ "node": "^10.12.0 || >=12.0.0" } }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/finalhandler": { "version": "1.2.0", "license": "MIT", @@ -2969,11 +2631,6 @@ "node": ">= 0.8" } }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, "node_modules/find-up": { "version": "3.0.0", "dev": true, @@ -2986,12 +2643,10 @@ } }, "node_modules/flat": { - "version": "4.1.1", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "is-buffer": "~2.0.3" - }, "bin": { "flat": "cli.js" } @@ -3010,28 +2665,6 @@ "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/flat/node_modules/is-buffer": { - "version": "2.0.5", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/flatted": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", @@ -3105,8 +2738,23 @@ }, "node_modules/fs.realpath": { "version": "1.0.0", + "dev": true, "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -3142,26 +2790,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/generate-function": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", - "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", - "dependencies": { - "is-property": "^1.0.2" - } - }, - "node_modules/generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha512-TuOwZWgJ2VAMEGJvAyPWvpqxSANF0LDpmyHauMjFYzaACvn+QTT/AZomvPCzVBV7yDN3OmwHQ5OvHaeLKre3JQ==", - "dependencies": { - "is-property": "^1.0.0" - } - }, "node_modules/get-caller-file": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -3238,6 +2871,7 @@ }, "node_modules/glob": { "version": "7.2.3", + "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -3308,7 +2942,8 @@ "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true }, "node_modules/graphemer": { "version": "1.4.0", @@ -3316,14 +2951,6 @@ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, - "node_modules/growl": { - "version": "1.10.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.x" - } - }, "node_modules/har-schema": { "version": "2.0.0", "license": "ISC", @@ -3342,17 +2969,6 @@ "node": ">=6" } }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/has-bigints": { "version": "1.0.2", "dev": true, @@ -3362,11 +2978,12 @@ } }, "node_modules/has-flag": { - "version": "3.0.0", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/has-property-descriptors": { @@ -3482,7 +3099,8 @@ }, "node_modules/iconv-lite": { "version": "0.4.24", - "license": "MIT", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -3531,6 +3149,7 @@ }, "node_modules/inflight": { "version": "1.0.6", + "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -3541,57 +3160,6 @@ "version": "2.0.4", "license": "ISC" }, - "node_modules/inquirer": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", - "integrity": "sha512-bOetEz5+/WpgaW4D1NYOk1aD+JCqRjqu/FwRFgnIfiP7FC/zinsrfyO1vlS3nyH/R7S0IH3BIHBu4DBIDSqiGQ==", - "dependencies": { - "ansi-escapes": "^1.1.0", - "ansi-regex": "^2.0.0", - "chalk": "^1.0.0", - "cli-cursor": "^1.0.1", - "cli-width": "^2.0.0", - "figures": "^1.3.5", - "lodash": "^4.3.0", - "readline2": "^1.0.1", - "run-async": "^0.1.0", - "rx-lite": "^3.1.2", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.0", - "through": "^2.3.6" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/internal-slot": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", @@ -3676,6 +3244,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/is-boolean-object": { "version": "1.1.2", "dev": true, @@ -3711,6 +3291,7 @@ "version": "2.13.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, "dependencies": { "hasown": "^2.0.0" }, @@ -3732,13 +3313,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-extended": { - "version": "0.0.10", - "license": "MIT", - "dependencies": { - "extended": "~0.0.3" - } - }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -3761,13 +3335,12 @@ } }, "node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "number-is-nan": "^1.0.0" - }, + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/is-generator-function": { @@ -3808,23 +3381,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-my-ip-valid": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz", - "integrity": "sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg==" - }, - "node_modules/is-my-json-valid": { - "version": "2.20.6", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz", - "integrity": "sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==", - "dependencies": { - "generate-function": "^2.0.0", - "generate-object-property": "^1.1.0", - "is-my-ip-valid": "^1.0.0", - "jsonpointer": "^5.0.0", - "xtend": "^4.0.0" - } - }, "node_modules/is-negative-zero": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", @@ -3837,6 +3393,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/is-number-object": { "version": "1.0.7", "dev": true, @@ -3860,10 +3425,14 @@ "node": ">=8" } }, - "node_modules/is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } }, "node_modules/is-regex": { "version": "1.1.4", @@ -3881,11 +3450,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" - }, "node_modules/is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", @@ -3968,6 +3532,18 @@ "version": "1.0.0", "license": "MIT" }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-weakmap": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", @@ -4083,34 +3659,12 @@ "version": "0.4.1", "license": "MIT" }, - "node_modules/json-stable-stringify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", - "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", - "dependencies": { - "call-bind": "^1.0.5", - "isarray": "^2.0.5", - "jsonify": "^0.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "node_modules/json-stable-stringify/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, "node_modules/json-stringify-safe": { "version": "5.0.1", "license": "ISC" @@ -4127,45 +3681,6 @@ "json5": "lib/cli.js" } }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/jsonld": { - "version": "2.0.2", - "license": "BSD-3-Clause", - "dependencies": { - "canonicalize": "^1.0.1", - "lru-cache": "^5.1.1", - "rdf-canonize": "^1.0.2", - "request": "^2.88.0", - "semver": "^6.3.0", - "xmldom": "0.1.19" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonld/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/jsprim": { "version": "1.4.2", "license": "MIT", @@ -4303,49 +3818,19 @@ "dev": true }, "node_modules/log-symbols": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "3.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "2.4.2", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "5.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" + "node": ">=10" }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/logform": { @@ -4407,13 +3892,6 @@ "get-func-name": "^2.0.0" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, "node_modules/manakin": { "version": "0.5.2", "license": "MIT", @@ -4434,7 +3912,8 @@ }, "node_modules/media-typer": { "version": "0.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "engines": { "node": ">= 0.6" } @@ -4479,6 +3958,7 @@ }, "node_modules/minimatch": { "version": "3.1.2", + "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -4502,153 +3982,202 @@ "node": ">= 8.0.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, "node_modules/mocha": { - "version": "6.2.3", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.3.0.tgz", + "integrity": "sha512-uF2XJs+7xSLsrmIvn37i/wnc91nw7XjOQB8ccyx5aEgdnohr7n+rEiZP23WkCYHjilR6+EboEnbq/ZQDz4LSbg==", "dev": true, - "license": "MIT", "dependencies": { - "ansi-colors": "3.2.3", + "ansi-colors": "4.1.1", "browser-stdout": "1.3.1", - "debug": "3.2.6", - "diff": "3.5.0", - "escape-string-regexp": "1.0.5", - "find-up": "3.0.0", - "glob": "7.1.3", - "growl": "1.10.5", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "8.1.0", "he": "1.2.0", - "js-yaml": "3.13.1", - "log-symbols": "2.2.0", - "minimatch": "3.0.4", - "mkdirp": "0.5.4", - "ms": "2.1.1", - "node-environment-flags": "1.0.5", - "object.assign": "4.1.0", - "strip-json-comments": "2.0.1", - "supports-color": "6.0.0", - "which": "1.3.1", - "wide-align": "1.1.3", - "yargs": "13.3.2", - "yargs-parser": "13.1.2", - "yargs-unparser": "1.6.0" + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" }, "bin": { "_mocha": "bin/_mocha", - "mocha": "bin/mocha" + "mocha": "bin/mocha.js" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, "node_modules/mocha/node_modules/debug": { - "version": "3.2.6", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "license": "MIT", "dependencies": { - "ms": "^2.1.1" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mocha/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/mocha/node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/mocha/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mocha/node_modules/glob": { - "version": "7.1.3", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, - "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/mocha/node_modules/js-yaml": { - "version": "3.13.1", + "node_modules/mocha/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "p-locate": "^5.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mocha/node_modules/minimatch": { - "version": "3.0.4", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=10" } }, - "node_modules/mocha/node_modules/mkdirp": { - "version": "0.5.4", - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "node_modules/mocha/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "license": "MIT", "dependencies": { - "minimist": "^1.2.5" + "yocto-queue": "^0.1.0" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.1", + "node_modules/mocha/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "license": "MIT" + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/mocha/node_modules/strip-json-comments": { - "version": "2.0.1", + "node_modules/mocha/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/mocha/node_modules/supports-color": { - "version": "6.0.0", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, - "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/ms": { "version": "2.1.3", "license": "MIT" }, - "node_modules/multiline": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multiline/-/multiline-1.0.2.tgz", - "integrity": "sha512-DGpmDIZKKQ+EVx0sh0757V6qlb+ouuByoC5CWH7J0bOd6KRM6ka6l9LGHWfe17OKxm+4AsLs1tgiK4vZIx66RQ==", - "dependencies": { - "strip-indent": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mute-stream": { "version": "0.0.8", "license": "ISC" @@ -4666,11 +4195,6 @@ "node": ">= 0.6" } }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - }, "node_modules/nise": { "version": "5.1.9", "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz", @@ -4701,395 +4225,15 @@ "node": ">= 0.4.6" } }, - "node_modules/node-environment-flags": { - "version": "1.0.5", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "object.getownpropertydescriptors": "^2.0.3", - "semver": "^5.7.0" - } - }, - "node_modules/node-environment-flags/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/node-forge": { - "version": "0.10.0", - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/nypl-registry-utils-lexicon": { - "version": "1.0.0", - "resolved": "git+ssh://git@github.com/nypl-registry/utils-lexicon.git#330e7258c7d2243b7689dec9850173541664db1e", - "license": "MIT", - "dependencies": { - "glob": "^7.0.0", - "standard": "^6.0.7" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", - "dependencies": { - "acorn": "^3.0.4" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/acorn-jsx/node_modules/acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==", - "dependencies": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.2.0.tgz", - "integrity": "sha512-Ay1ThESRUQUlI3JnWrVjAecu+v2sm9ldq95IPe4LyrC8fG3SSZs5f2l4xRfB3kW9UOACeBsx0Na8uJ1ckgeBrg==", - "dependencies": { - "chalk": "^1.0.0", - "concat-stream": "^1.4.6", - "debug": "^2.1.1", - "doctrine": "^1.1.0", - "es6-map": "^0.1.3", - "escope": "^3.4.0", - "espree": "^3.0.0", - "estraverse": "^4.1.1", - "estraverse-fb": "^1.3.1", - "esutils": "^2.0.2", - "file-entry-cache": "^1.1.1", - "glob": "^6.0.4", - "globals": "^8.18.0", - "ignore": "^2.2.19", - "inquirer": "^0.12.0", - "is-my-json-valid": "^2.10.0", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.5.1", - "json-stable-stringify": "^1.0.0", - "lodash": "^4.0.0", - "mkdirp": "^0.5.0", - "optionator": "^0.8.1", - "path-is-absolute": "^1.0.0", - "path-is-inside": "^1.0.1", - "pluralize": "^1.2.1", - "progress": "^1.1.8", - "require-uncached": "^1.0.2", - "resolve": "^1.1.6", - "shelljs": "^0.5.3", - "strip-json-comments": "~1.0.1", - "table": "^3.7.8", - "text-table": "~0.2.0", - "user-home": "^2.0.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-config-standard": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-5.1.0.tgz", - "integrity": "sha512-mDjsN6Hk4W3rJe2w9G6W2H3RIrUcKUeXtDWL6orlNcik8Q2w4oZvBOhHtDZGuB7uXTL5DKLOBnPVO9NVopLb2Q==", - "peerDependencies": { - "eslint": "^2.0.0-rc.0", - "eslint-plugin-promise": "^1.0.8", - "eslint-plugin-standard": "^1.3.1" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-config-standard-jsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-1.1.1.tgz", - "integrity": "sha512-AWUuX0M2BbnSQHNGTObfdfW7LtB+imuoqXdVrK74u+eMK3Astu8PFoHd8+kTUMqWR5WosrxxRtOY+IgBUs8ZYw==", - "peerDependencies": { - "eslint": "^2.0.0-rc.0", - "eslint-plugin-react": ">=2.7.1" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-plugin-promise": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-1.3.2.tgz", - "integrity": "sha512-0u7miAO2rYoIt3xhSoajdZSQdCvkyAu0JFXY5la1PW/xcgSyaBxQz91Rnm4zN084YSwYB6dc+HId2ByMS7jImw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint-plugin-react": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-4.3.0.tgz", - "integrity": "sha512-ajQ9S74FUln2GcwgpPUQqRLcT6UFDhvAMIiDX4F68tDnuihNXcAA7LI19MmRGGOuJnpMVDXugJg+wf9K+bf6kg==" - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/eslint/node_modules/glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", - "dependencies": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/file-entry-cache": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", - "integrity": "sha512-JyVk7P0Hvw6uEAwH4Y0j+rZMvaMWvLBYRmRGAF2S6jKTycf0mMDcC7d21Y2KyrKJk3XI8YghSsk5KmRdbvg0VQ==", - "dependencies": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/flat-cache": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", - "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", - "dependencies": { - "circular-json": "^0.3.1", - "graceful-fs": "^4.1.2", - "rimraf": "~2.6.2", - "write": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/get-stdin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", - "integrity": "sha512-jZV7n6jGE3Gt7fgSTJoz91Ak5MuTLwMwkoYdjxuJ/AmjIsE1UC03y/IWkZCQGEvVNS9qoRNwy5BCqxImv0FVeA==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/globals": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-8.18.0.tgz", - "integrity": "sha512-IHCTKEGo42ICEkTZBADyl4HX06hVdFF4qdJdqOgaBe5X8RE1/MrvubetsEtGTcwjs46djFq0Gc3+5RgTsc3UoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/ignore": { - "version": "2.2.19", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-2.2.19.tgz", - "integrity": "sha512-Mq1FKJDxSky/AR+Goatl1RmCzWbAHE4fNvgkmJu9Ln8T8A8JbKAd/BHHZQaqknHSFCBe0zQJg7akDpI57pKTlQ==", - "deprecated": "several bugs fixed in v3.2.1" - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/standard": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/standard/-/standard-6.0.8.tgz", - "integrity": "sha512-qvzyrbsMBqapl7BAAQUmxhUvZW+sN5Ok4Mj+ZEsqABrjOY88a1rE5IFybXnXUdvD7KN/8fjqRubHW5NgT4bJhw==", - "dependencies": { - "eslint": "~2.2.0", - "eslint-config-standard": "5.1.0", - "eslint-config-standard-jsx": "1.1.1", - "eslint-plugin-promise": "^1.0.8", - "eslint-plugin-react": "^4.0.0", - "eslint-plugin-standard": "^1.3.1", - "standard-engine": "^3.3.0", - "xtend": "^4.0.1" - }, - "bin": { - "standard": "bin/cmd.js" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/standard-engine": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-3.3.1.tgz", - "integrity": "sha512-Y1k4p/k0e3BGk/xnyr3T2ybnYEm7b3Jdr2NtjW74RV6bzlxHTZPQAJdaQUKlmhKSdauWleUuTo4Xn9nTvS3A5g==", - "dependencies": { - "defaults": "^1.0.2", - "deglob": "^1.0.0", - "find-root": "^1.0.0", - "get-stdin": "^5.0.1", - "minimist": "^1.1.0", - "multiline": "^1.0.2", - "pkg-config": "^1.0.1", - "xtend": "^4.0.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/strip-json-comments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", - "integrity": "sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==", - "bin": { - "strip-json-comments": "cli.js" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/nypl-registry-utils-lexicon/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/oauth": { "version": "0.9.15", "license": "MIT" @@ -5105,19 +4249,11 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/object-extended": { - "version": "0.0.7", - "license": "MIT", - "dependencies": { - "array-extended": "~0.0.4", - "extended": "~0.0.3", - "is-extended": "~0.0.3" - } - }, "node_modules/object-inspect": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", @@ -5128,21 +4264,8 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.0", "dev": true, "license": "MIT", - "dependencies": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" - }, "engines": { "node": ">= 0.4" } @@ -5178,24 +4301,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.6", - "dev": true, - "license": "MIT", - "dependencies": { - "array.prototype.reduce": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.21.2", - "safe-array-concat": "^1.0.0" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/object.groupby": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", @@ -5264,14 +4369,6 @@ "fn.name": "1.x.x" } }, - "node_modules/onetime": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha512-GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", @@ -5289,14 +4386,6 @@ "node": ">= 0.8.0" } }, - "node_modules/os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/p-limit": { "version": "2.3.0", "dev": true, @@ -5381,16 +4470,12 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" - }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -5403,7 +4488,8 @@ "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "node_modules/path-to-regexp": { "version": "0.1.7", @@ -5488,6 +4574,18 @@ "split2": "^4.1.0" } }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -5510,24 +4608,6 @@ "node": ">=6" } }, - "node_modules/pkg-config": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", - "integrity": "sha512-ft/WI9YK6FuTuw4Ql+QUaNXtm/ASQNqDUUsZEgFZKyFpW6amyP8Gx01xrRs8KdiNbbqXfYxkOXplpq1euWbOjw==", - "dependencies": { - "debug-log": "^1.0.0", - "find-root": "^1.0.0", - "xtend": "^4.0.1" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pluralize": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", - "integrity": "sha512-TH+BeeL6Ct98C7as35JbZLf8lgsRzlNJb5gklRIGHKaPkGl1esOKBc5ALUMd+q08Sr6tiEKM+Icbsxg5vuhMKQ==" - }, "node_modules/possible-typed-array-names": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", @@ -5581,14 +4661,6 @@ "version": "2.0.1", "license": "MIT" }, - "node_modules/progress": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", - "integrity": "sha512-UdA8mJ4weIkUBO224tIarHzuHs4HuYiJvsuGT7j/SPQiUJVjYvNDBIPa0hAorduOfjGohB/qHWRa/lrrWX/mXw==", - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/promise": { "version": "7.3.1", "license": "MIT", @@ -5705,6 +4777,7 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, "funding": [ { "type": "github", @@ -5720,9 +4793,14 @@ } ] }, - "node_modules/ramda": { - "version": "0.21.0", - "license": "MIT" + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } }, "node_modules/range-parser": { "version": "1.2.1", @@ -5732,8 +4810,9 @@ } }, "node_modules/raw-body": { - "version": "2.5.1", - "license": "MIT", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -5744,25 +4823,6 @@ "node": ">= 0.8" } }, - "node_modules/rdf-canonize": { - "version": "1.2.0", - "license": "BSD-3-Clause", - "dependencies": { - "node-forge": "^0.10.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/rdf-canonize/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -5792,21 +4852,18 @@ "util-deprecate": "~1.0.1" } }, - "node_modules/readline2": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", - "integrity": "sha512-8/td4MmwUB6PkZUbV25uKz7dfrmjYWxsW8DVfibWdlHRk/l/DfHKn4pU+dfcoGLFgWOdyGCzINRQD7jn+Bv+/g==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "mute-stream": "0.0.5" + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "node_modules/readline2/node_modules/mute-stream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", - "integrity": "sha512-EbrziT4s8cWPmzr47eYVW3wimS4HsvlnV5ri1xw1aR6JQo/OrJX5rkl32K/QQHdxeabJETtfeaROGhd8W7uBgg==" - }, "node_modules/reflect.getprototypeof": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", @@ -5932,33 +4989,9 @@ }, "node_modules/require-directory": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/require-uncached": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", - "integrity": "sha512-Xct+41K3twrbBHdxAgMoOS+cNcoqIjfM2/VxBF4LL2hVph7YsF8VSKyQ3BDFZwEVbok9yeDl2le/qo0S77WG2w==", - "dependencies": { - "caller-path": "^0.1.0", - "resolve-from": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-uncached/node_modules/resolve-from": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha512-kT10v4dhrlLNcnO084hEjvXCI1wUG9qZLoz2RogxqDQQYy7IxjI/iMUkOtQTNEh6rzHxvdQWHsJyel1pKOVCxg==", "engines": { "node": ">=0.10.0" } @@ -5967,6 +5000,7 @@ "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -5988,18 +5022,6 @@ "node": ">=4" } }, - "node_modules/restore-cursor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha512-reSjH4HuiFlxlaBaFCiS6O76ZGG2ygKoSlCsipKdaZuKSPx/+bt9mULkn4l0asVzbEfQQmXRg6Wp6gv6m0wElw==", - "dependencies": { - "exit-hook": "^1.0.0", - "onetime": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -6032,18 +5054,11 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/run-async": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", - "integrity": "sha512-qOX+w+IxFgpUpJfkv2oGN0+ExPs68F4sZHfaRRx4dDexAQkG83atugKVEylyT5ARees3HBbfmuvnjbrd8j9Wjw==", - "dependencies": { - "once": "^1.3.0" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, "funding": [ { "type": "github", @@ -6062,11 +5077,6 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/rx-lite": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", - "integrity": "sha512-1I1+G2gteLB8Tkt8YI1sJvSIfa0lWuRtC8GjvtyPBcLSF5jBCCJJqKrpER5JU5r6Bhe+i9/pK3VMuUcXu0kdwQ==" - }, "node_modules/safe-array-concat": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", @@ -6162,6 +5172,15 @@ "node": ">= 0.8.0" } }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, "node_modules/serve-static": { "version": "1.15.0", "license": "MIT", @@ -6175,11 +5194,6 @@ "node": ">= 0.8.0" } }, - "node_modules/set-blocking": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, "node_modules/set-function-length": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", @@ -6236,17 +5250,6 @@ "node": ">=8" } }, - "node_modules/shelljs": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", - "integrity": "sha512-C2FisSSW8S6TIYHHiMHN0NqzdjWfTekdMpA2FJTbRWnQMLO1RRIXEB9eVZYOlofYmjZA7fY3ChoFu09MeI3wlQ==", - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/should": { "version": "7.1.1", "dev": true, @@ -6330,14 +5333,6 @@ "node": ">=0.3.1" } }, - "node_modules/slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/spex": { "version": "2.0.2", "license": "MIT", @@ -6353,10 +5348,6 @@ "node": ">= 10.x" } }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "license": "BSD-3-Clause" - }, "node_modules/sshpk": { "version": "1.17.0", "license": "MIT", @@ -6483,30 +5474,18 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/string_score": { - "version": "0.1.22", - "license": "MIT" - }, - "node_modules/string-extended": { - "version": "0.0.8", - "license": "MIT", - "dependencies": { - "array-extended": "~0.0.5", - "date-extended": "~0.0.3", - "extended": "~0.0.3", - "is-extended": "~0.0.3" - } - }, "node_modules/string-width": { - "version": "1.0.2", - "license": "MIT", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/string.prototype.matchall": { @@ -6575,13 +5554,15 @@ } }, "node_modules/strip-ansi": { - "version": "3.0.1", - "license": "MIT", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "dependencies": { - "ansi-regex": "^2.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/strip-bom": { @@ -6593,28 +5574,6 @@ "node": ">=4" } }, - "node_modules/strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", - "dependencies": { - "get-stdin": "^4.0.1" - }, - "bin": { - "strip-indent": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-indent/node_modules/get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -6639,19 +5598,11 @@ "node": ">=8" } }, - "node_modules/supports-color/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -6678,98 +5629,6 @@ "get-port": "^3.1.0" } }, - "node_modules/table": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", - "integrity": "sha512-RZuzIOtzFbprLCE0AXhkI0Xi42ZJLZhCC+qkwuMLf/Vjz3maWpA8gz1qMdbmNoI9cOROT2Am/DxeRyXenrL11g==", - "dependencies": { - "ajv": "^4.7.0", - "ajv-keywords": "^1.0.0", - "chalk": "^1.1.1", - "lodash": "^4.0.0", - "slice-ansi": "0.0.4", - "string-width": "^2.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha512-I/bSHSNEcFFqXLf91nchoNB9D1Kie3QKcWdchYUaoIg1+1bdWDkdfdlvdIOJbi9U8xR0y+MWc5D+won9v95WlQ==", - "dependencies": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" - } - }, - "node_modules/table/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/table/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/table/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/table/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/table/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/table/node_modules/string-width/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/table/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/text-hex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", @@ -6778,7 +5637,8 @@ "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true }, "node_modules/then-request": { "version": "2.2.0", @@ -6792,10 +5652,17 @@ "qs": "^6.1.0" } }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } }, "node_modules/toidentifier": { "version": "1.0.1", @@ -6849,11 +5716,6 @@ "version": "0.14.5", "license": "Unlicense" }, - "node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -6888,7 +5750,8 @@ }, "node_modules/type-is": { "version": "1.6.18", - "license": "MIT", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -6988,11 +5851,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==" - }, "node_modules/unpipe": { "version": "1.0.0", "license": "MIT", @@ -7021,17 +5879,6 @@ "dev": true, "license": "MIT" }, - "node_modules/user-home": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", - "integrity": "sha512-KMWqdlOcjCYdtIJpicDSFBQ8nFwS2i9sslAd6f4+CBGcU4gist2REnr2fxj2YocvJFxSF3ZOHLYLVZnUxv4BZQ==", - "dependencies": { - "os-homedir": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/util": { "version": "0.12.5", "dev": true, @@ -7095,17 +5942,6 @@ "node": ">=0.10.48" } }, - "node_modules/which": { - "version": "1.3.1", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/which-boxed-primitive": { "version": "1.0.2", "dev": true, @@ -7168,11 +6004,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-module": { - "version": "2.0.1", - "dev": true, - "license": "ISC" - }, "node_modules/which-typed-array": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", @@ -7192,14 +6023,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wide-align": { - "version": "1.1.3", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, "node_modules/winston": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/winston/-/winston-3.12.0.tgz", @@ -7273,93 +6096,33 @@ "node": ">= 6" } }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true }, "node_modules/wrap-ansi": { - "version": "5.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "3.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "3.1.0", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "license": "MIT", "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" + "node": ">=10" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "license": "ISC" }, - "node_modules/write": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", - "integrity": "sha512-CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA==", - "dependencies": { - "mkdirp": "^0.5.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/xdg-basedir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", @@ -7389,13 +6152,6 @@ "node": ">=4.0" } }, - "node_modules/xmldom": { - "version": "0.1.19", - "deprecated": "Deprecated due to CVE-2021-21366 resolved in 0.5.0", - "engines": { - "node": ">=0.1" - } - }, "node_modules/xtend": { "version": "4.0.2", "license": "MIT", @@ -7404,91 +6160,54 @@ } }, "node_modules/y18n": { - "version": "4.0.3", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, - "license": "ISC" - }, - "node_modules/yallist": { - "version": "3.1.1", - "license": "ISC" + "engines": { + "node": ">=10" + } }, "node_modules/yargs": { - "version": "13.3.2", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, - "license": "MIT", "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "node_modules/yargs-parser": { - "version": "13.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, - "node_modules/yargs-unparser": { - "version": "1.6.0", - "dev": true, - "license": "MIT", - "dependencies": { - "flat": "^4.1.0", - "lodash": "^4.17.15", - "yargs": "^13.3.0" + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/yargs/node_modules/ansi-regex": { - "version": "4.1.1", + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "node_modules/yargs-unparser": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/string-width": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", "dependencies": { - "ansi-regex": "^4.1.0" + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" } }, "node_modules/yocto-queue": { diff --git a/package.json b/package.json index 3cd29296..fa2fa089 100644 --- a/package.json +++ b/package.json @@ -5,17 +5,10 @@ "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.5", "@nypl/scsb-rest-client": "2.0.0", - "config": "1.12.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", - "dotenv": "^4.0.0", + "dotenv": "^16.4.5", "@elastic/elasticsearch": "~7.12.0", - "express": "^4.14.0", - "fast-csv": "^2.3.0", - "jsonld": "^2.0.2", - "nypl-registry-utils-lexicon": "nypl-registry/utils-lexicon", - "ramda": "^0.21.0", - "request": "2.88.2", - "string_score": "^0.1.22", + "express": "^4.18.3", "winston": "3.12.0" }, "devDependencies": { @@ -25,7 +18,7 @@ "chai-as-promised": "^7.1.1", "md5": "^2.2.1", "minimist": "^1.2.5", - "mocha": "^6.2.3", + "mocha": "^10.3.0", "qs": "^6.5.1", "request-promise": "^4.1.1", "should": "^7.0.2", diff --git a/routes/misc.js b/routes/misc.js index f03e890a..b598aabf 100644 --- a/routes/misc.js +++ b/routes/misc.js @@ -1,8 +1,5 @@ const util = require('../lib/util') -const config = require('config') -const VER = config.get('major_version') - module.exports = function (app) { app.all('*', function (req, res, next) { res.header('Access-Control-Allow-Origin', '*') @@ -11,7 +8,7 @@ module.exports = function (app) { next() }) - app.get(`/api/v${VER}/discovery/context_:which.jsonld`, function (req, res) { + app.get('/api/v0.1/discovery/context_:which.jsonld', function (req, res) { res.type('application/ld+json') util.context(req.params.which).then((c) => res.status(200).send(JSON.stringify({ '@context': c }, null, 2))) }) diff --git a/routes/resources.js b/routes/resources.js index 1c8b4bb5..ab86dba6 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -1,8 +1,6 @@ const gatherParams = require('../lib/util').gatherParams -const config = require('config') - -const VER = config.get('major_version') +const VER = '0.1' module.exports = function (app) { app.all('*', function (req, res, next) { diff --git a/server.js b/server.js new file mode 100644 index 00000000..847a66ff --- /dev/null +++ b/server.js @@ -0,0 +1,3 @@ +const app = require('./app') + +app.start() diff --git a/test/test_helper.js b/test/test_helper.js index b07bbcc9..2765ee4f 100644 --- a/test/test_helper.js +++ b/test/test_helper.js @@ -28,7 +28,5 @@ before(async () => { global.TEST_BASE_URL = `http://localhost:${process.env.PORT}` }) -require('../lib/globals') - chai.use(chaiAsPromised) global.expect = chai.expect From 37099c14e09b161e4f86d4ee40e7c3a3e1a3dde6 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 14 Mar 2024 16:36:24 -0400 Subject: [PATCH 12/51] Update README for node20 --- .env.example | 24 ------------------------ README.md | 49 +------------------------------------------------ 2 files changed, 1 insertion(+), 72 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index e3339f44..00000000 --- a/.env.example +++ /dev/null @@ -1,24 +0,0 @@ -# URL to the SCSB API -SCSB_URL=https://get.from.coworker:9093 - -# Auth Key for SCSB API -SCSB_API_KEY=getmefromacowoker - -# URL (with auth and port) for the ES domain: -ELASTICSEARCH_URI=https://USER:PASS@example.tld:9201 - - -# Name of the index to connect to -RESOURCES_INDEX=getmefromacoworker - -# To talk with our OAuth server and API Gateway -NYPL_API_BASE_URL=http://path-to-our-api-gateway.example.com/api/v0.1/ -NYPL_OAUTH_URL=https://url-to-our-oauth-server-including-slash.example.com/ -NYPL_OAUTH_ID=who-you-will-connect-to-the-api-as -NYPL_OAUTH_SECRET=that-accounts-pw -NYPL_CORE_VERSION=v1.21 - -CATALOG_WEBPUB_DEF_URL=[fqdn to catalog webpub.def. Only required for running scripts/update-annotated-marc-rules.js] - -# How many nested items should be returned by the search endpoint -SEARCH_ITEMS_SIZE=100 diff --git a/README.md b/README.md index 83ca55ca..e4faf27a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Build Status](https://travis-ci.com/NYPL/discovery-api.svg?branch=main)](https://travis-ci.com/NYPL/discovery-api) -# Discovery API +# Discovery API (aka Research Catalog API) This is the API providing most of bibliographic data to the [NYPL Research Catalog front-end](https://github.com/NYPL/discovery-front-end). Check the [current swagger](https://github.com/NYPL/discovery-api/blob/main/swagger.v1.1.x.json) for the machine readable api contract. @@ -18,22 +18,6 @@ docker-compose build Note that when developing locally, you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). -If you are adding a dependency or need to rebuild package-lock.json, run this script: - -``` -nvm use; npm i -g npm@5.10.0 -``` - -## About Environment Variables - -See `.env.example` for a description the variables. **If you're adding new variables please add them to .env.example and `./lib/preflight_check.js`** - -Note that config variables are maintained in `./config/*.env` as a formality and to assist onboarding; Changes made to those files will not effect deployed config. Config changes must be applied to the deployed Beanstalk app manually. Note that sensitive values are encrypted in `./config/*.env` whereas they are not in the deployed Beanstalk. - -### Changes to SCSB/UAT endpoints - -When HTC changes the SCSB endpoint, apply changes to the relevant environment file in `config/` (encrypting the value if sensitive) and also manually apply the change to the running Beanstalk app (without encrypting the value). - ## Contributing This app uses a [PRs Target Main, Merge to Deployment Branches](https://github.com/NYPL/engineering-general/blob/master/standards/git-workflow.md#prs-target-main-merge-to-deployment-branches) git workflow. @@ -50,37 +34,6 @@ This app uses a [PRs Target Main, Merge to Deployment Branches](https://github.c 1. Confirm app deploys to QA and run appropriate testing 1. Merge `main` > `production` -## Deployment - -This app is deployed via a deployment hook in `.travis.yml`. Pushes to `qa` deploy to our QA deployment; Pushes to `production` deploy to our Production deployment. We generally don't update `development` or use the Development deployment. - -### Initial Creation / Deployment to Elastic Beanstalk - -1. `.ebextensions` directory needed at application's root directory -2. `.ebextensions/00_environment.config` to store environment variables. For environment variables that needs to be hidden, -3. `.ebextensions/03_nodecommand.config` to start node app after deployment. -4. `eb init -i --profile <>` -5. Initial creation of instance on Beanstalk: - -Please use the instance profile of _cloudwatchable-beanstalk_. -Which has all the permissions needed for a traditional or Docker-flavored Beanstalk -machine that wants to log to CloudWatch. - -```bash -eb create discovery-api-[environmentname] \ - --instance_type t2.small \ - --instance_profile cloudwatchable-beanstalk \ - --cname discovery-api-[environmentname] \ - --vpc.id vpc-1e293a7b \ - --vpc.elbsubnets public-subnet-id-1,public-subnet-id-2 \ - --vpc.ec2subnets private-subnet-id-1,private-subnet-id-2 \ - --vpc.elbpublic \ - --tags Project=Discovery, Foo=Bar \ - --keyname dgdvteam \ - --scale 2 \ - --envvars VAR_NAME_1="xxx",VAR_NAME_2="xxx" -``` - ## Testing Run all tests: From a04fb7fc72660756cd0058cef7632618c76af233 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 14 Mar 2024 16:37:53 -0400 Subject: [PATCH 13/51] Remove .env-docker in favor of config/* --- .env-docker | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .env-docker diff --git a/.env-docker b/.env-docker deleted file mode 100644 index 3e9570d3..00000000 --- a/.env-docker +++ /dev/null @@ -1,24 +0,0 @@ -# Greg built self-hosted domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= - -ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDGdkVdF5qRl8uYWPoQIBEIA87iTS5cOoPOH3LJA7ggi5Euz6hjEAXYUfWf2M5kkb+kpW0s3sGCbiY3j7OZKi631Wy3eSQ01ZQ7vtflF+ -ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= - -NYPL_API_BASE_URL=https://platform.nypl.org/api/v0.1/ -NYPL_OAUTH_URL=https://isso.nypl.org/ -ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== -ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= - -NYPL_CORE_VERSION=v2.0 -ROMCOM_MAX_XA_BNUM=b0 - -LOG_LEVEL=debug -FEATURES=on-site-edd - -SEARCH_ITEMS_SIZE=100 -PORT=8082 - -HIDE_NYPL_SOURCE= - -BIB_HAS_VOLUMES_THRESHOLD=0.01 From 92ba7bebacac33cf856b72543bbe0b0be93d4b1d Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 14 Mar 2024 17:00:36 -0400 Subject: [PATCH 14/51] Update aws-sdk to v3 --- lib/kms-helper.js | 20 +- package-lock.json | 1319 +++++++++++++++++++++++++++++++++++++++------ package.json | 4 +- 3 files changed, 1178 insertions(+), 165 deletions(-) diff --git a/lib/kms-helper.js b/lib/kms-helper.js index cf2ddfd4..fd2667e2 100644 --- a/lib/kms-helper.js +++ b/lib/kms-helper.js @@ -1,15 +1,15 @@ -const KMS = require('aws-sdk/clients/kms') +const { KMSClient, DecryptCommand } = require('@aws-sdk/client-kms') -function decrypt (encrypted) { - return new Promise((resolve, reject) => { - const kms = new KMS({ region: 'us-east-1' }) - kms.decrypt({ CiphertextBlob: Buffer.from(encrypted, 'base64') }, (err, data) => { - if (err) return reject(err) +async function decrypt (encrypted) { + const client = new KMSClient({ region: 'us-east-1' }) + const input = { + CiphertextBlob: Buffer.from(encrypted, 'base64') + } + const command = new DecryptCommand(input) + const response = await client.send(command) - const decrypted = data.Plaintext.toString('ascii') - resolve(decrypted) - }) - }) + const decrypted = new TextDecoder('utf-8').decode(response.Plaintext) + return decrypted } module.exports = { decrypt } diff --git a/package-lock.json b/package-lock.json index 66a21c12..06a22a0b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "1.1.2", "license": "MIT", "dependencies": { + "@aws-sdk/client-kms": "^3.533.0", "@elastic/elasticsearch": "~7.12.0", "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.5", @@ -19,7 +20,6 @@ "winston": "3.12.0" }, "devDependencies": { - "aws-sdk": "^2.1137.0", "axios": "^0.27.2", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", @@ -42,6 +42,604 @@ "node": ">=0.10.0" } }, + "node_modules/@aws-crypto/crc32": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-3.0.0.tgz", + "integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==", + "dependencies": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/crc32/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/ie11-detection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz", + "integrity": "sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==", + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/ie11-detection/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/sha256-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz", + "integrity": "sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==", + "dependencies": { + "@aws-crypto/ie11-detection": "^3.0.0", + "@aws-crypto/sha256-js": "^3.0.0", + "@aws-crypto/supports-web-crypto": "^3.0.0", + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/sha256-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz", + "integrity": "sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==", + "dependencies": { + "@aws-crypto/util": "^3.0.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/sha256-js/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz", + "integrity": "sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==", + "dependencies": { + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-crypto/util": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-3.0.0.tgz", + "integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==", + "dependencies": { + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-utf8-browser": "^3.0.0", + "tslib": "^1.11.1" + } + }, + "node_modules/@aws-crypto/util/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/@aws-sdk/client-kms": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-kms/-/client-kms-3.533.0.tgz", + "integrity": "sha512-h16+sUdvqJqVfT/X1vIzDXT0w/d/Zmd3JhgsG7W3prsbC56B0WRXG9X0tf0CyVl15VUte9eZ2UP4YLDwe8gcgA==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.533.0", + "@aws-sdk/core": "3.533.0", + "@aws-sdk/credential-provider-node": "3.533.0", + "@aws-sdk/middleware-host-header": "3.533.0", + "@aws-sdk/middleware-logger": "3.533.0", + "@aws-sdk/middleware-recursion-detection": "3.533.0", + "@aws-sdk/middleware-user-agent": "3.533.0", + "@aws-sdk/region-config-resolver": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@aws-sdk/util-endpoints": "3.533.0", + "@aws-sdk/util-user-agent-browser": "3.533.0", + "@aws-sdk/util-user-agent-node": "3.533.0", + "@smithy/config-resolver": "^2.1.5", + "@smithy/core": "^1.3.8", + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/hash-node": "^2.1.4", + "@smithy/invalid-dependency": "^2.1.4", + "@smithy/middleware-content-length": "^2.1.4", + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-retry": "^2.1.7", + "@smithy/middleware-serde": "^2.2.1", + "@smithy/middleware-stack": "^2.1.4", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "@smithy/util-base64": "^2.2.1", + "@smithy/util-body-length-browser": "^2.1.1", + "@smithy/util-body-length-node": "^2.2.2", + "@smithy/util-defaults-mode-browser": "^2.1.7", + "@smithy/util-defaults-mode-node": "^2.2.7", + "@smithy/util-endpoints": "^1.1.5", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-retry": "^2.1.4", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-sso": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.533.0.tgz", + "integrity": "sha512-qO+PCEM3fGS/3uBJQjQ01oAI+ashN0CHTJF8X0h3ycVsv3VAAYrpZigpylOOgv7c253s7VrSwjvdKIE8yTbelw==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.533.0", + "@aws-sdk/middleware-host-header": "3.533.0", + "@aws-sdk/middleware-logger": "3.533.0", + "@aws-sdk/middleware-recursion-detection": "3.533.0", + "@aws-sdk/middleware-user-agent": "3.533.0", + "@aws-sdk/region-config-resolver": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@aws-sdk/util-endpoints": "3.533.0", + "@aws-sdk/util-user-agent-browser": "3.533.0", + "@aws-sdk/util-user-agent-node": "3.533.0", + "@smithy/config-resolver": "^2.1.5", + "@smithy/core": "^1.3.8", + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/hash-node": "^2.1.4", + "@smithy/invalid-dependency": "^2.1.4", + "@smithy/middleware-content-length": "^2.1.4", + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-retry": "^2.1.7", + "@smithy/middleware-serde": "^2.2.1", + "@smithy/middleware-stack": "^2.1.4", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "@smithy/util-base64": "^2.2.1", + "@smithy/util-body-length-browser": "^2.1.1", + "@smithy/util-body-length-node": "^2.2.2", + "@smithy/util-defaults-mode-browser": "^2.1.7", + "@smithy/util-defaults-mode-node": "^2.2.7", + "@smithy/util-endpoints": "^1.1.5", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-retry": "^2.1.4", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.533.0.tgz", + "integrity": "sha512-jxG+L81bcuH6JJkls+VSRsOTpixvNEQ8clpUglal/XC+qiV09yZUnOi+Fxf2q7OAB7bfM9DB3Wy8YwbhaR2wYg==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/client-sts": "3.533.0", + "@aws-sdk/core": "3.533.0", + "@aws-sdk/middleware-host-header": "3.533.0", + "@aws-sdk/middleware-logger": "3.533.0", + "@aws-sdk/middleware-recursion-detection": "3.533.0", + "@aws-sdk/middleware-user-agent": "3.533.0", + "@aws-sdk/region-config-resolver": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@aws-sdk/util-endpoints": "3.533.0", + "@aws-sdk/util-user-agent-browser": "3.533.0", + "@aws-sdk/util-user-agent-node": "3.533.0", + "@smithy/config-resolver": "^2.1.5", + "@smithy/core": "^1.3.8", + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/hash-node": "^2.1.4", + "@smithy/invalid-dependency": "^2.1.4", + "@smithy/middleware-content-length": "^2.1.4", + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-retry": "^2.1.7", + "@smithy/middleware-serde": "^2.2.1", + "@smithy/middleware-stack": "^2.1.4", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "@smithy/util-base64": "^2.2.1", + "@smithy/util-body-length-browser": "^2.1.1", + "@smithy/util-body-length-node": "^2.2.2", + "@smithy/util-defaults-mode-browser": "^2.1.7", + "@smithy/util-defaults-mode-node": "^2.2.7", + "@smithy/util-endpoints": "^1.1.5", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-retry": "^2.1.4", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "@aws-sdk/credential-provider-node": "^3.533.0" + } + }, + "node_modules/@aws-sdk/client-sts": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.533.0.tgz", + "integrity": "sha512-Z/z76T/pEq0DsBpoyWSMQdS7R6IRpq2ZV6dfZwr+HZ2vho2Icd70nIxwiNzZxaV16aVIhu5/l/5v5Ns9ZCfyOA==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.533.0", + "@aws-sdk/middleware-host-header": "3.533.0", + "@aws-sdk/middleware-logger": "3.533.0", + "@aws-sdk/middleware-recursion-detection": "3.533.0", + "@aws-sdk/middleware-user-agent": "3.533.0", + "@aws-sdk/region-config-resolver": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@aws-sdk/util-endpoints": "3.533.0", + "@aws-sdk/util-user-agent-browser": "3.533.0", + "@aws-sdk/util-user-agent-node": "3.533.0", + "@smithy/config-resolver": "^2.1.5", + "@smithy/core": "^1.3.8", + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/hash-node": "^2.1.4", + "@smithy/invalid-dependency": "^2.1.4", + "@smithy/middleware-content-length": "^2.1.4", + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-retry": "^2.1.7", + "@smithy/middleware-serde": "^2.2.1", + "@smithy/middleware-stack": "^2.1.4", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "@smithy/util-base64": "^2.2.1", + "@smithy/util-body-length-browser": "^2.1.1", + "@smithy/util-body-length-node": "^2.2.2", + "@smithy/util-defaults-mode-browser": "^2.1.7", + "@smithy/util-defaults-mode-node": "^2.2.7", + "@smithy/util-endpoints": "^1.1.5", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-retry": "^2.1.4", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "@aws-sdk/credential-provider-node": "^3.533.0" + } + }, + "node_modules/@aws-sdk/core": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.533.0.tgz", + "integrity": "sha512-m3jq9WJbIvlDOnN5KG5U/org1MwOwXzfyU2Rr/48rRey6/+kNSm5QzYZMT0Htsk8V5Ukp325dzs/XR8DyO9uMQ==", + "dependencies": { + "@smithy/core": "^1.3.8", + "@smithy/protocol-http": "^3.2.2", + "@smithy/signature-v4": "^2.1.4", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "fast-xml-parser": "4.2.5", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.533.0.tgz", + "integrity": "sha512-opj7hfcCeNosSmxfJkJr0Af0aSxlqwkdCPlLEvOTwbHmdkovD+SyEpaI4/0ild0syZDMifuJAU6I6K0ukbcm3g==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/property-provider": "^2.1.4", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-http": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.533.0.tgz", + "integrity": "sha512-m5z3V9MRO77t1CF312QKaQSfYG2MM/USqZ1Jj6srb+kJBX+GuVXbkc0+NwrpG5+j8Iukgxy1tms+0p3Wjatu6A==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/property-provider": "^2.1.4", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/util-stream": "^2.1.5", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.533.0.tgz", + "integrity": "sha512-xQ7TMY+j99zxOph+LJJhGPIav6RpydESZgIp5cp/pFY4Liwe5e84M7SaCgkFLck2HE9s7MhP42c8xmC6u9PIuw==", + "dependencies": { + "@aws-sdk/client-sts": "3.533.0", + "@aws-sdk/credential-provider-env": "3.533.0", + "@aws-sdk/credential-provider-process": "3.533.0", + "@aws-sdk/credential-provider-sso": "3.533.0", + "@aws-sdk/credential-provider-web-identity": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@smithy/credential-provider-imds": "^2.2.6", + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.533.0.tgz", + "integrity": "sha512-Tn2grwFfFDLV5Hr8sZvZY5pjEmDUOm/e+ipnyxxCBB/K7t2ru2R4jG/RUa6+dZXSH/pi+TNte9cYq/Lx2Szjlw==", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.533.0", + "@aws-sdk/credential-provider-http": "3.533.0", + "@aws-sdk/credential-provider-ini": "3.533.0", + "@aws-sdk/credential-provider-process": "3.533.0", + "@aws-sdk/credential-provider-sso": "3.533.0", + "@aws-sdk/credential-provider-web-identity": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@smithy/credential-provider-imds": "^2.2.6", + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-process": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.533.0.tgz", + "integrity": "sha512-9Iuhp8dhMqEv7kPsZlc9KFhC5XvuB/jFv3IZoTtRgbACW4cdxng7OwJEWdeZGrcjy9x40Tc2DT9KcmCE895KpQ==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.533.0.tgz", + "integrity": "sha512-1zPZQnFUoZ0fWuLPW2X2L3jPKyd+qW8VzFO1k26oX1KJuiEZJzoYbfap08soy6vhFI+n4NfsAgvoA1IMsqG0Pg==", + "dependencies": { + "@aws-sdk/client-sso": "3.533.0", + "@aws-sdk/token-providers": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.533.0.tgz", + "integrity": "sha512-utemXrFmvFxBvX+WCznlh5wGdXRIfwEyeNIDFs+WLRn8NIR/6gqCipi7rlC9ZbFFkBhkCTssa6+ruXG+kUQcMg==", + "dependencies": { + "@aws-sdk/client-sts": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@smithy/property-provider": "^2.1.4", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-host-header": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.533.0.tgz", + "integrity": "sha512-y9JaPjvz3pk4DZcFB6Nud//Hc6y4BkkSwiGXfthwFv5kxfaaksHKd8smDjL3RUPqDKl8AI9vxHzTz1UrQQkpQw==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/protocol-http": "^3.2.2", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-logger": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.533.0.tgz", + "integrity": "sha512-W+ou4YgqnHn/xVNcBgfwAUCtXTHGJjjsFffdt69s1Tb7rP5U4gXnl8wHHADajy9tXiKK48fRc2SGF42EthjQIA==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.533.0.tgz", + "integrity": "sha512-dobVdJ4g1avrVG6QTRHndfvdTxUeloDCn32WLwyOV11XF/2x5p8QJ1VZS+K24xsl29DoJ8bXibZf9xZ7MPwRLg==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/protocol-http": "^3.2.2", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.533.0.tgz", + "integrity": "sha512-H5vbkgwFVgp9egQ/CR+gLRXhVJ/jHqq+J9TTug/To4ev183fcNc2OE15ojiNek8phuSsBZITLaQB+DWBTydsAA==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@aws-sdk/util-endpoints": "3.533.0", + "@smithy/protocol-http": "^3.2.2", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/region-config-resolver": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.533.0.tgz", + "integrity": "sha512-1FLLcohz23aVV+lK3iCUJpjKO/4adXjre0KMg9tvHWwCkOD/sZgLjzlv+BW5Fx2vH3Dgo0kDQ04+XEsbuVC2xA==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/types": "^2.11.0", + "@smithy/util-config-provider": "^2.2.1", + "@smithy/util-middleware": "^2.1.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/token-providers": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.533.0.tgz", + "integrity": "sha512-mHaZUeJ6zfbkW0E64dUmzDwReO1LoDYRful+FT1dbKqQr0p+9Q8o4n6fAswwAVfCYHaAeIt68vE0zVkAlbGCqA==", + "dependencies": { + "@aws-sdk/client-sso-oidc": "3.533.0", + "@aws-sdk/types": "3.533.0", + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/types": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.533.0.tgz", + "integrity": "sha512-mFb0701oLRcJ7Y2unlrszzk9rr2P6nt2A4Bdz4K5WOsY4f4hsdbcYkrzA1NPmIUTEttU9JT0YG+8z0XxLEX4Aw==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/util-endpoints": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.533.0.tgz", + "integrity": "sha512-pmjRqWqno6X61RaJ/iEbSSql79Jyaq9d9SvTkyvo8Ce8Kb+49cflzUY1PP0s40Caj4H+bUkpksVHwO7t2qIakw==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/types": "^2.11.0", + "@smithy/util-endpoints": "^1.1.5", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/util-locate-window": { + "version": "3.495.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.495.0.tgz", + "integrity": "sha512-MfaPXT0kLX2tQaR90saBT9fWQq2DHqSSJRzW+MZWsmF+y5LGCOhO22ac/2o6TKSQm7h0HRc2GaADqYYYor62yg==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.533.0.tgz", + "integrity": "sha512-wyzDxH89yQ89+Q/9rWZeYBeegaXkB4nhb9Bd+xG4J3KgaNVuVvaYT6Nbzjg4oPtuC+pPeQp1iSXKs/2QTlsqPA==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/types": "^2.11.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.533.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.533.0.tgz", + "integrity": "sha512-Tu79n4+q1MAPPFEtu7xTgiTQGzOAPe4c2p8vSyrIJEBHclf7cyvZxgziQAyM9Yy4DoRdtnnAeeybao3U4d+CzA==", + "dependencies": { + "@aws-sdk/types": "3.533.0", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/util-utf8-browser": { + "version": "3.259.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz", + "integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==", + "dependencies": { + "tslib": "^2.3.1" + } + }, "node_modules/@colors/colors": { "version": "1.5.0", "license": "MIT", @@ -438,6 +1036,537 @@ "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", "dev": true }, + "node_modules/@smithy/abort-controller": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.1.4.tgz", + "integrity": "sha512-66HO817oIZ2otLIqy06R5muapqZjkgF1jfU0wyNko8cuqZNu8nbS9ljlhcRYw/M/uWRJzB9ih81DLSHhYbBLlQ==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/config-resolver": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.1.5.tgz", + "integrity": "sha512-LcBB5JQC3Tx2ZExIJzfvWaajhFIwHrUNQeqxhred2r5nnqrdly9uoCrvM1sxOOdghYuWWm2Kr8tBCDOmxsgeTA==", + "dependencies": { + "@smithy/node-config-provider": "^2.2.5", + "@smithy/types": "^2.11.0", + "@smithy/util-config-provider": "^2.2.1", + "@smithy/util-middleware": "^2.1.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/core": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-1.3.8.tgz", + "integrity": "sha512-6cFhQ9ChU7MxvOXJn6nuUSONacpNsGHWhfueROQuM/0vibDdZA9FWEdNbVkuVuc+BFI5BnaX3ltERUlpUirpIA==", + "dependencies": { + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-retry": "^2.1.7", + "@smithy/middleware-serde": "^2.2.1", + "@smithy/protocol-http": "^3.2.2", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/util-middleware": "^2.1.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/credential-provider-imds": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.2.6.tgz", + "integrity": "sha512-+xQe4Pite0kdk9qn0Vyw5BRVh0iSlj+T4TEKRXr4E1wZKtVgIzGlkCrfICSjiPVFkPxk4jMpVboMYdEiiA88/w==", + "dependencies": { + "@smithy/node-config-provider": "^2.2.5", + "@smithy/property-provider": "^2.1.4", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-codec": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.1.4.tgz", + "integrity": "sha512-UkiieTztP7adg8EuqZvB0Y4LewdleZCJU7Kgt9RDutMsRYqO32fMpWeQHeTHaIMosmzcRZUykMRrhwGJe9mP3A==", + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^2.11.0", + "@smithy/util-hex-encoding": "^2.1.1", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/fetch-http-handler": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.4.5.tgz", + "integrity": "sha512-FR1IMGdo0yRFs1tk71zRGSa1MznVLQOVNaPjyNtx6dOcy/u0ovEnXN5NVz6slw5KujFlg3N1w4+UbO8F3WyYUg==", + "dependencies": { + "@smithy/protocol-http": "^3.2.2", + "@smithy/querystring-builder": "^2.1.4", + "@smithy/types": "^2.11.0", + "@smithy/util-base64": "^2.2.1", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/hash-node": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.1.4.tgz", + "integrity": "sha512-uvCcpDLXaTTL0X/9ezF8T8sS77UglTfZVQaUOBiCvR0QydeSyio3t0Hj3QooVdyFsKTubR8gCk/ubLk3vAyDng==", + "dependencies": { + "@smithy/types": "^2.11.0", + "@smithy/util-buffer-from": "^2.1.1", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/invalid-dependency": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.1.4.tgz", + "integrity": "sha512-QzlNBl6jt3nb9jNnE51wTegReVvUdozyMMrFEyb/rc6AzPID1O+qMJYjAAoNw098y0CZVfCpEnoK2+mfBOd8XA==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/is-array-buffer": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.1.1.tgz", + "integrity": "sha512-xozSQrcUinPpNPNPds4S7z/FakDTh1MZWtRP/2vQtYB/u3HYrX2UXuZs+VhaKBd6Vc7g2XPr2ZtwGBNDN6fNKQ==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-content-length": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.1.4.tgz", + "integrity": "sha512-C6VRwfcr0w9qRFhDGCpWMVhlEIBFlmlPRP1aX9Cv9xDj9SUwlDrNvoV1oP1vjRYuLxCDgovBBynCwwcluS2wLw==", + "dependencies": { + "@smithy/protocol-http": "^3.2.2", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-endpoint": { + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.4.6.tgz", + "integrity": "sha512-AsXtUXHPOAS0EGZUSFOsVJvc7p0KL29PGkLxLfycPOcFVLru/oinYB6yvyL73ZZPX2OB8sMYUMrj7eH2kI7V/w==", + "dependencies": { + "@smithy/middleware-serde": "^2.2.1", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "@smithy/url-parser": "^2.1.4", + "@smithy/util-middleware": "^2.1.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-retry": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.1.7.tgz", + "integrity": "sha512-8fOP/cJN4oMv+5SRffZC8RkqfWxHqGgn/86JPINY/1DnTRegzf+G5GT9lmIdG1YasuSbU7LISfW9PXil3isPVw==", + "dependencies": { + "@smithy/node-config-provider": "^2.2.5", + "@smithy/protocol-http": "^3.2.2", + "@smithy/service-error-classification": "^2.1.4", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-retry": "^2.1.4", + "tslib": "^2.5.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-retry/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@smithy/middleware-serde": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.2.1.tgz", + "integrity": "sha512-VAWRWqnNjgccebndpyK94om4ZTYzXLQxUmNCXYzM/3O9MTfQjTNBgtFtQwyIIez6z7LWcCsXmnKVIOE9mLqAHQ==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-stack": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.1.4.tgz", + "integrity": "sha512-Qqs2ba8Ax1rGKOSGJS2JN23fhhox2WMdRuzx0NYHtXzhxbJOIMmz9uQY6Hf4PY8FPteBPp1+h0j5Fmr+oW12sg==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-config-provider": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.2.5.tgz", + "integrity": "sha512-CxPf2CXhjO79IypHJLBATB66Dw6suvr1Yc2ccY39hpR6wdse3pZ3E8RF83SODiNH0Wjmkd0ze4OF8exugEixgA==", + "dependencies": { + "@smithy/property-provider": "^2.1.4", + "@smithy/shared-ini-file-loader": "^2.3.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-http-handler": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.4.3.tgz", + "integrity": "sha512-bD5zRdEl1u/4vAAMeQnGEUNbH1seISV2Z0Wnn7ltPRl/6B2zND1R9XzTfsOnH1R5jqghpochF/mma8u7uXz0qQ==", + "dependencies": { + "@smithy/abort-controller": "^2.1.4", + "@smithy/protocol-http": "^3.2.2", + "@smithy/querystring-builder": "^2.1.4", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/property-provider": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.1.4.tgz", + "integrity": "sha512-nWaY/MImj1BiXZ9WY65h45dcxOx8pl06KYoHxwojDxDL+Q9yLU1YnZpgv8zsHhEftlj9KhePENjQTlNowWVyug==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/protocol-http": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.2.2.tgz", + "integrity": "sha512-xYBlllOQcOuLoxzhF2u8kRHhIFGQpDeTQj/dBSnw4kfI29WMKL5RnW1m9YjnJAJ49miuIvrkJR+gW5bCQ+Mchw==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-builder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.1.4.tgz", + "integrity": "sha512-LXSL0J/nRWvGT+jIj+Fip3j0J1ZmHkUyBFRzg/4SmPNCLeDrtVu7ptKOnTboPsFZu5BxmpYok3kJuQzzRdrhbw==", + "dependencies": { + "@smithy/types": "^2.11.0", + "@smithy/util-uri-escape": "^2.1.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.1.4.tgz", + "integrity": "sha512-U2b8olKXgZAs0eRo7Op11jTNmmcC/sqYmsA7vN6A+jkGnDvJlEl7AetUegbBzU8q3D6WzC5rhR/joIy8tXPzIg==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/service-error-classification": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.1.4.tgz", + "integrity": "sha512-JW2Hthy21evnvDmYYk1kItOmbp3X5XI5iqorXgFEunb6hQfSDZ7O1g0Clyxg7k/Pcr9pfLk5xDIR2To/IohlsQ==", + "dependencies": { + "@smithy/types": "^2.11.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.3.5.tgz", + "integrity": "sha512-oI99+hOvsM8oAJtxAGmoL/YCcGXtbP0fjPseYGaNmJ4X5xOFTer0KPk7AIH3AL6c5AlYErivEi1X/X78HgTVIw==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/signature-v4": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.1.4.tgz", + "integrity": "sha512-gnu9gCn0qQ8IdhNjs6o3QVCXzUs33znSDYwVMWo3nX4dM6j7z9u6FC302ShYyVWfO4MkVMuGCCJ6nl3PcH7V1Q==", + "dependencies": { + "@smithy/eventstream-codec": "^2.1.4", + "@smithy/is-array-buffer": "^2.1.1", + "@smithy/types": "^2.11.0", + "@smithy/util-hex-encoding": "^2.1.1", + "@smithy/util-middleware": "^2.1.4", + "@smithy/util-uri-escape": "^2.1.1", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/smithy-client": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.4.5.tgz", + "integrity": "sha512-igXOM4kPXPo6b5LZXTUqTnrGk20uVd8OXoybC3f89gczzGfziLK4yUNOmiHSdxY9OOMOnnhVe5MpTm01MpFqvA==", + "dependencies": { + "@smithy/middleware-endpoint": "^2.4.6", + "@smithy/middleware-stack": "^2.1.4", + "@smithy/protocol-http": "^3.2.2", + "@smithy/types": "^2.11.0", + "@smithy/util-stream": "^2.1.5", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/types": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.11.0.tgz", + "integrity": "sha512-AR0SXO7FuAskfNhyGfSTThpLRntDI5bOrU0xrpVYU0rZyjl3LBXInZFMTP/NNSd7IS6Ksdtar0QvnrPRIhVrLQ==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/url-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.1.4.tgz", + "integrity": "sha512-1hTy6UYRYqOZlHKH2/2NzdNQ4NNmW2Lp0sYYvztKy+dEQuLvZL9w88zCzFQqqFer3DMcscYOshImxkJTGdV+rg==", + "dependencies": { + "@smithy/querystring-parser": "^2.1.4", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/util-base64": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.2.1.tgz", + "integrity": "sha512-troGfokrpoqv8TGgsb8p4vvM71vqor314514jyQ0i9Zae3qs0jUVbSMCIBB1tseVynXFRcZJAZ9hPQYlifLD5A==", + "dependencies": { + "@smithy/util-buffer-from": "^2.1.1", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-body-length-browser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.1.1.tgz", + "integrity": "sha512-ekOGBLvs1VS2d1zM2ER4JEeBWAvIOUKeaFch29UjjJsxmZ/f0L3K3x0dEETgh3Q9bkZNHgT+rkdl/J/VUqSRag==", + "dependencies": { + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/util-body-length-node": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.2.2.tgz", + "integrity": "sha512-U7DooaT1SfW7XHrOcxthYJnQ+WMaefRrFPxW5Qmypw38Ivv+TKvfVuVHA9V162h8BeW9rzOJwOunjgXd0DdB4w==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-buffer-from": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.1.1.tgz", + "integrity": "sha512-clhNjbyfqIv9Md2Mg6FffGVrJxw7bgK7s3Iax36xnfVj6cg0fUG7I4RH0XgXJF8bxi+saY5HR21g2UPKSxVCXg==", + "dependencies": { + "@smithy/is-array-buffer": "^2.1.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-config-provider": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.2.1.tgz", + "integrity": "sha512-50VL/tx9oYYcjJn/qKqNy7sCtpD0+s8XEBamIFo4mFFTclKMNp+rsnymD796uybjiIquB7VCB/DeafduL0y2kw==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.1.7.tgz", + "integrity": "sha512-vvIpWsysEdY77R0Qzr6+LRW50ye7eii7AyHM0OJnTi0isHYiXo5M/7o4k8gjK/b1upQJdfjzSBoJVa2SWrI+2g==", + "dependencies": { + "@smithy/property-provider": "^2.1.4", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.2.7.tgz", + "integrity": "sha512-qzXkSDyU6Th+rNNcNkG4a7Ix7m5HlMOtSCPxTVKlkz7eVsqbSSPggegbFeQJ2MVELBB4wnzNPsVPJIrpIaJpXA==", + "dependencies": { + "@smithy/config-resolver": "^2.1.5", + "@smithy/credential-provider-imds": "^2.2.6", + "@smithy/node-config-provider": "^2.2.5", + "@smithy/property-provider": "^2.1.4", + "@smithy/smithy-client": "^2.4.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-endpoints": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.1.5.tgz", + "integrity": "sha512-tgDpaUNsUtRvNiBulKU1VnpoXU1GINMfZZXunRhUXOTBEAufG1Wp79uDXLau2gg1RZ4dpAR6lXCkrmddihCGUg==", + "dependencies": { + "@smithy/node-config-provider": "^2.2.5", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.1.1.tgz", + "integrity": "sha512-3UNdP2pkYUUBGEXzQI9ODTDK+Tcu1BlCyDBaRHwyxhA+8xLP8agEKQq4MGmpjqb4VQAjq9TwlCQX0kP6XDKYLg==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-middleware": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.1.4.tgz", + "integrity": "sha512-5yYNOgCN0DL0OplME0pthoUR/sCfipnROkbTO7m872o0GHCVNJj5xOFJ143rvHNA54+pIPMLum4z2DhPC2pVGA==", + "dependencies": { + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-retry": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.1.4.tgz", + "integrity": "sha512-JRZwhA3fhkdenSEYIWatC8oLwt4Bdf2LhHbNQApqb7yFoIGMl4twcYI3BcJZ7YIBZrACA9jGveW6tuCd836XzQ==", + "dependencies": { + "@smithy/service-error-classification": "^2.1.4", + "@smithy/types": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-stream": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.1.5.tgz", + "integrity": "sha512-FqvBFeTgx+QC4+i8USHqU8Ifs9nYRpW/OBfksojtgkxPIQ2H7ypXDEbnQRAV7PwoNHWcSwPomLYi0svmQQG5ow==", + "dependencies": { + "@smithy/fetch-http-handler": "^2.4.5", + "@smithy/node-http-handler": "^2.4.3", + "@smithy/types": "^2.11.0", + "@smithy/util-base64": "^2.2.1", + "@smithy/util-buffer-from": "^2.1.1", + "@smithy/util-hex-encoding": "^2.1.1", + "@smithy/util-utf8": "^2.2.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-uri-escape": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.1.1.tgz", + "integrity": "sha512-saVzI1h6iRBUVSqtnlOnc9ssU09ypo7n+shdQ8hBTZno/9rZ3AuRYvoHInV57VF7Qn7B+pFJG7qTzFiHxWlWBw==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-utf8": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.2.0.tgz", + "integrity": "sha512-hBsKr5BqrDrKS8qy+YcV7/htmMGxriA1PREOf/8AGBhHIZnfilVv1Waf1OyKhSbFW15U/8+gcMUQ9/Kk5qwpHQ==", + "dependencies": { + "@smithy/util-buffer-from": "^2.1.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/@types/concat-stream": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz", @@ -838,34 +1967,6 @@ "node": ">=0.11" } }, - "node_modules/aws-sdk": { - "version": "2.1391.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "buffer": "4.9.2", - "events": "1.1.1", - "ieee754": "1.1.13", - "jmespath": "0.16.0", - "querystring": "0.2.0", - "sax": "1.2.1", - "url": "0.10.3", - "util": "^0.12.4", - "uuid": "8.0.0", - "xml2js": "0.5.0" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/aws-sdk/node_modules/uuid": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/aws-sign2": { "version": "0.7.0", "license": "Apache-2.0", @@ -918,25 +2019,6 @@ "dev": true, "license": "MIT" }, - "node_modules/base64-js": { - "version": "1.5.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "license": "BSD-3-Clause", @@ -998,6 +2080,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/bowser": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + }, "node_modules/brace-expansion": { "version": "1.1.11", "dev": true, @@ -1024,16 +2111,6 @@ "dev": true, "license": "ISC" }, - "node_modules/buffer": { - "version": "4.9.2", - "dev": true, - "license": "MIT", - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "license": "MIT" @@ -2466,14 +3543,6 @@ "node": ">= 0.6" } }, - "node_modules/events": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.x" - } - }, "node_modules/express": { "version": "4.18.3", "resolved": "https://registry.npmjs.org/express/-/express-4.18.3.tgz", @@ -2577,6 +3646,27 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fast-xml-parser": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", + "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", + "funding": [ + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + }, + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", @@ -3108,11 +4198,6 @@ "node": ">=0.10.0" } }, - "node_modules/ieee754": { - "version": "1.1.13", - "dev": true, - "license": "BSD-3-Clause" - }, "node_modules/ignore": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", @@ -3181,21 +4266,6 @@ "node": ">= 0.10" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-array-buffer": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", @@ -3603,14 +4673,6 @@ "set-function-name": "^2.0.1" } }, - "node_modules/jmespath": { - "version": "0.16.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -4765,14 +5827,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystring": { - "version": "0.2.0", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "dev": true, - "engines": { - "node": ">=0.4.x" - } - }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -5133,11 +6187,6 @@ "version": "2.1.2", "license": "MIT" }, - "node_modules/sax": { - "version": "1.2.1", - "dev": true, - "license": "ISC" - }, "node_modules/secure-json-parse": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", @@ -5586,6 +6635,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -5702,6 +6756,11 @@ "strip-bom": "^3.0.0" } }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, "node_modules/tunnel-agent": { "version": "0.6.0", "license": "Apache-2.0", @@ -5865,32 +6924,6 @@ "punycode": "^2.1.0" } }, - "node_modules/url": { - "version": "0.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "dev": true, - "license": "MIT" - }, - "node_modules/util": { - "version": "0.12.5", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, "node_modules/util-deprecate": { "version": "1.0.2", "license": "MIT" @@ -6132,26 +7165,6 @@ "node": ">=8" } }, - "node_modules/xml2js": { - "version": "0.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0" - } - }, "node_modules/xtend": { "version": "4.0.2", "license": "MIT", diff --git a/package.json b/package.json index fa2fa089..c67a0ae6 100644 --- a/package.json +++ b/package.json @@ -2,17 +2,17 @@ "analyze": true, "author": "NYPL Digital", "dependencies": { + "@aws-sdk/client-kms": "^3.533.0", + "@elastic/elasticsearch": "~7.12.0", "@nypl/nypl-core-objects": "2.3.2", "@nypl/nypl-data-api-client": "^1.0.5", "@nypl/scsb-rest-client": "2.0.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^16.4.5", - "@elastic/elasticsearch": "~7.12.0", "express": "^4.18.3", "winston": "3.12.0" }, "devDependencies": { - "aws-sdk": "^2.1137.0", "axios": "^0.27.2", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", From 3fea7ad38b83b897dabae7b04341c6cdae11e65f Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 14 Mar 2024 18:05:06 -0400 Subject: [PATCH 15/51] Add basic github workflows --- .github/workflows/test-and-deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-and-deploy.yml diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml new file mode 100644 index 00000000..cbe9d613 --- /dev/null +++ b/.github/workflows/test-and-deploy.yml @@ -0,0 +1,17 @@ +name: Unit Tests + +on: [push] + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set Node version + uses: actions/setup-node@v3 + with: + node-version-file: '.nvmrc' + - name: npm install + run: npm ci + - name: Unit Tests + run: npm test From dc42fb071beacf3e0bbfd07cc51a82dc260eef1a Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 19:46:46 -0400 Subject: [PATCH 16/51] Update Dockerfile to use node20, cleanup, docs Also, no longer log to discovery-api.log since it appears it may be enough for deployed code to write to stdout. Simplify how json/plain logging is triggered. --- Dockerfile | 20 +++----------------- README.md | 23 +++++++++++++++++++++-- lib/logger.js | 24 ++++++++++-------------- 3 files changed, 34 insertions(+), 33 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6eb5045..4b602e10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-bullseye as production +FROM node:20-bullseye as production RUN apt-get update RUN apt-get upgrade -y @@ -10,8 +10,6 @@ WORKDIR /usr/src/app # A wildcard is used to ensure both package.json AND package-lock.json are copied # where available (npm@5+) COPY package.json ./ -ENV NODE_ENV=production -ENV APP_ENV=production RUN npm cache verify RUN npm install @@ -19,6 +17,7 @@ RUN npm install # Bundle app source # Do not copy non-essential files COPY . . + # Remove any unneeded files RUN rm -rf /usr/src/app/.DS_Store RUN rm -rf /usr/src/app/.ebextensions @@ -26,19 +25,6 @@ RUN rm -rf /usr/src/app/.elasticbeanstalk RUN rm -rf /usr/src/app/.git RUN rm -rf /usr/src/app/.gitignore -# Environment variables for hosted stack in AWS Secrets Manager -# COPY ./config/production.env /usr/src/app/.env - -# Link logs to stdout -RUN ln -sf /dev/stdout /usr/src/app/log/discovery-api.log +ENV LOG_STYLE=json CMD [ "npm", "start" ] - - -FROM production as qa - -ENV NODE_ENV=qa -ENV APP_ENV=qa - -# Environment variables for hosted stack in AWS Secrets Manager -# COPY ./config/qa.env /usr/src/app/.env diff --git a/README.md b/README.md index e4faf27a..618e5d2c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,20 @@ This is the API providing most of bibliographic data to the [NYPL Research Catal ## Installing & Running Locally -Start the container with AWS creds so that the app can decrypt config from `.env-docker`: +For local development, it's easiest to just use local node binaries: + +``` +nvm use; ENV=qa npm start +``` + +Note that when developing locally, you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). + +### Using Docker + +Docker files are included for deployment and can be used locally. + +To start the container with AWS creds so that the app can decrypt config from `config/*`: + ``` AWS_ACCESS_KEY_ID=... AWS_SECRET_ACCESS_KEY=... docker-compose up ``` @@ -16,7 +29,13 @@ After making changes, rebuild the image: docker-compose build ``` -Note that when developing locally, you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). +Or, equivalently, to build and run the image and container directly: + +``` +docker image build -t discovery-api:local . +docker container rm discovery-api +docker run --name discovery-api -e ENV=qa -e AWS_ACCESS_KEY_ID=... -e AWS_SECRET_ACCESS_KEY=... -p 8082:8082 -it discovery-api:local +``` ## Contributing diff --git a/lib/logger.js b/lib/logger.js index e4195c41..122a90cf 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -1,25 +1,21 @@ const winston = require('winston') +// In deployed code, let's do JSON logging to enable CW JSON queries +const format = process.env.LOG_STYLE === 'json' + ? winston.format.json() + // Locally, let's do colorized plaintext logging: + : winston.format.combine( + winston.format.colorize(), + winston.format.simple() + ) + const logger = winston.createLogger({ level: process.env.LOG_LEVEL || 'info', - format: winston.format.json(), transports: [ - new winston.transports.File({ - filename: './log/discovery-api.log' - }) + new winston.transports.Console({ format }) ] }) -// -// If we're not in production then log to the `console` with the format: -// `${info.level}: ${info.message} JSON.stringify({ ...rest }) ` -// -if (process.env.NODE_ENV !== 'production') { - logger.add(new winston.transports.Console({ - format: winston.format.simple() - })) -} - logger.setLevel = (level) => { logger.level = level } From 079f5eba07d64c3f568631e35f4c3c83c305ed58 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 20:51:19 -0400 Subject: [PATCH 17/51] Add deploy-qa step to gh actions --- .github/workflows/test-and-deploy.yml | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index cbe9d613..7f2cf4f3 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -15,3 +15,31 @@ jobs: run: npm ci - name: Unit Tests run: npm test + deploy-qa: + if: github.ref == 'refs/heads/qa-node20' + name: Publish image to ECR and update ECS service + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + role-to-assume: arn:aws:iam::946183545209:role/GithubActionsDeployerRole + aws-region: us-east-1 + + - name: Log in to ECR + id: login-ecr + uses: aws-actions/amazon-ecr-login@v1 + + - name: Build, tag, and push image to Amazon ECR + env: + ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} + ECR_REPOSITORY: discovery-api-qa + IMAGE_TAG: ${{ github.sha }} + run: | + docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . + docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG + docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest + docker push $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest From b93db4db6c884ec1fc290e680643d2d1b9ee7794 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 20:54:57 -0400 Subject: [PATCH 18/51] Trivial --- .github/workflows/test-and-deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 7f2cf4f3..002f0533 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -17,7 +17,6 @@ jobs: run: npm test deploy-qa: if: github.ref == 'refs/heads/qa-node20' - name: Publish image to ECR and update ECS service runs-on: ubuntu-latest steps: - name: Checkout repo From e28afd6b332c601ac2acabc16835c9be5a138884 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 21:09:15 -0400 Subject: [PATCH 19/51] Debug travis --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 14906f8d..7a718de6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: node_js +before_install: + - nvm --version install: npm install script: npm test before_deploy: echo 'All unit tests passed; Successfull built distribution assets; From aa1e33a922028817c79b86169df97979b4761a42 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 21:18:41 -0400 Subject: [PATCH 20/51] Remove .travis Because it won't be needed with migration to gh actions and I can't get it to complete `nvm i` cleanly for some reason. --- .travis.yml | 63 ----------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7a718de6..00000000 --- a/.travis.yml +++ /dev/null @@ -1,63 +0,0 @@ -language: node_js -before_install: - - nvm --version -install: npm install -script: npm test -before_deploy: echo 'All unit tests passed; Successfull built distribution assets; - Preparing to deploy Discovery-API to AWS.' -deploy: -- provider: elasticbeanstalk - skip_cleanup: true - access_key_id: "$AWS_ACCESS_KEY_ID_PRODUCTION" - secret_access_key: "$AWS_SECRET_ACCESS_KEY_PRODUCTION" - region: us-east-1 - app: discovery-api - env: discovery-api-production - bucket_name: elasticbeanstalk-us-east-1-946183545209 - bucket_path: discovery-api-production - on: - repo: NYPL/discovery-api - branch: production -- provider: elasticbeanstalk - skip_cleanup: true - access_key_id: "$AWS_ACCESS_KEY_ID_PRODUCTION" - secret_access_key: "$AWS_SECRET_ACCESS_KEY_PRODUCTION" - region: us-east-1 - app: discovery-api - env: discovery-api-qa - bucket_name: elasticbeanstalk-us-east-1-946183545209 - bucket_path: discovery-api-qa - on: - repo: NYPL/discovery-api - branch: qa -- provider: elasticbeanstalk - skip_cleanup: true - access_key_id: "$AWS_ACCESS_KEY_ID_PRODUCTION" - secret_access_key: "$AWS_SECRET_ACCESS_KEY_PRODUCTION" - region: us-east-1 - app: discovery-api - env: discovery-api-qa-test - bucket_name: elasticbeanstalk-us-east-1-946183545209 - bucket_path: discovery-api-qa - on: - repo: NYPL/discovery-api - branch: qa -- provider: elasticbeanstalk - skip_cleanup: true - access_key_id: "$AWS_ACCESS_KEY_ID_DEVELOPMENT" - secret_access_key: "$AWS_SECRET_ACCESS_KEY_DEVELOPMENT" - region: us-east-1 - app: discovery-api - env: discovery-api-dev - bucket_name: elasticbeanstalk-us-east-1-224280085904 - bucket_path: discovery-api-dev - on: - repo: NYPL/discovery-api - branch: development -after_deploy: echo 'Successfully executed deploy trigger for Discovery API' -notifications: - slack: - secure: g6eiX6ALpd0VvGsSCDyCGpwtkvTT3qDcNTwXFK7yj85y4ZaRPUHqV22RXUn+7hyvPDbaXM1o61Q5EwBCC3XGlzirqGoM0l22TDQq3ZchtJGTSFrALcWGHaj6YHCQOyHu4TbFsaYGzMNG0o2DVjC2A1L/psoLVj5S0mQXtRmsWNiBAfff4kqOBYk76459rCkAGoUkV5Wwz6D0XPdLxVFmOqtfFdt427jjZcQp9tj5as9B33ERm4kdIKX2/CXdJE3F7+YjKeyrUhrqggLRJiTBKc53reoy8X26QjExfQ95ewPkdHx+CAnXKhW1TLym4+EpRTSrQIFt2dhKvT+0VU4X3XIKlxTn2KA/UX/1Qln6s8SMRqzeaNqB6t8rckzqQ3NN5HSgHmcERnmwFaRM4mPfxwTf5RR0bnoZd4iq7x3hiznztLJp3S5i1hUQCm8IJ83sTEU9LHsVdaaBjTOk7FAtATGX3IGA86BKVvdpULgQFaucAx5jRXIGyRFqcuzka3B4UYSyfatU3i+KRVDIuo+PkbcsjLL7EGT3fPZVeXgXnxdLQT7s9mKtEMhCDGOzH4gApJJn62Z+x0m3hoUgR8Y5sw9o9yoiwD2ldlQtYQ/1iMP/mku3gyF8nsCe9AR3nMmUJGyCufEBOTR8A6THscINRU/4pVxWfdFDAUjz1qoADKM= -env: - global: - secure: F96pXMAonEzAc8ju+HrZmtKDid7RO2D+xNyiRI50XmL4ileGQDpvNxleaxW/l81KU7DfFpUoUSsGbbtFfpBavRfa2vdW01tONj7neUVmzGmCHzyT8oHxOrc+SdfsuWbjdQ7V+rZbA7qGt5H0NL40gKJUK1dqM936LzFw1y4nXTEz5Pf7MYby3UqyqCj3wFW4MVCaSFHz/v6DMdNCztkeEfHAnTJxEzwIc7oz3rUs7fngVX4U1LSb5ZeTRfVM/6G/kgUH0+Z2FbGw7vKbQXnH0Old9E/GxOXOrdpsBfpTDT/Q0+xCwA9geAVu2dVS+NcoaqSbVdvz7Sk7DJcGAVRhX78OiCHMK1QGWIwO4QOEzenr1Y1JExrKUzhkeN/7XoTv3WQ0RC+dwBa1hf7r/NSa3DSWqGXPeQxMeBoQ+m0tJKIEat7e/jD/y+vvUJRNZ5iN+rk14gbTB2uwQza3fHUYXw5Ep0m2MLCrLODWQyIuHAaHVEnT1o8GXeY2kAmrMSXbBIn/utJmzk+4eoduZyouR8Pc8vBLYCsUELtmsMOdDiV4SjYcdnJzSLIZibm35FZzCo0JyE6zzUCaKBGNkKe/PiQTMbPCi2AMi9OIw9x152N51E6GHZ/h75YDsHkh+k88IWv+u1MLUsvg6WLH2Tksc+F8qGZVFy8wEBBzudv9DKM= From eaff378e34398f86c0d279a5836206e5319db2b6 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 21:28:45 -0400 Subject: [PATCH 21/51] Clean up Dockerfile --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4b602e10..9766e1e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,15 +7,12 @@ RUN apt-get upgrade -y WORKDIR /usr/src/app # Install app dependencies -# A wildcard is used to ensure both package.json AND package-lock.json are copied -# where available (npm@5+) +COPY package-lock.json ./ COPY package.json ./ - RUN npm cache verify RUN npm install -# Bundle app source -# Do not copy non-essential files +# Add app source COPY . . # Remove any unneeded files From d0a405f1be849f4777a0413f14c0633de2eb4e0e Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 15 Mar 2024 21:36:32 -0400 Subject: [PATCH 22/51] Documentation: README clarifications --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 618e5d2c..eae32706 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ This is the API providing most of bibliographic data to the [NYPL Research Catal For local development, it's easiest to just use local node binaries: ``` +nvm use; npm i nvm use; ENV=qa npm start ``` From f8373a545ce4cd20fdc70c0fefbd214365d2d78d Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 11:55:03 -0400 Subject: [PATCH 23/51] Fix gh actions deploy --- .github/workflows/test-and-deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 002f0533..543ab63d 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -16,8 +16,12 @@ jobs: - name: Unit Tests run: npm test deploy-qa: - if: github.ref == 'refs/heads/qa-node20' + permissions: + id-token: write + contents: read runs-on: ubuntu-latest + needs: test + if: github.ref == 'refs/heads/qa-node20' steps: - name: Checkout repo uses: actions/checkout@v3 From 9429405da8857e2dd17c5f8b6215315593f9cba2 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 11:56:14 -0400 Subject: [PATCH 24/51] Fix gh actions deploy --- .github/workflows/test-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 543ab63d..f28a9de5 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -20,7 +20,7 @@ jobs: id-token: write contents: read runs-on: ubuntu-latest - needs: test + needs: tests if: github.ref == 'refs/heads/qa-node20' steps: - name: Checkout repo From 3bccbd365247bd7662294e4e69c1859ed53062f5 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 12:03:42 -0400 Subject: [PATCH 25/51] Fix gh actions deploy --- .github/workflows/test-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index f28a9de5..613541f2 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -39,7 +39,7 @@ jobs: - name: Build, tag, and push image to Amazon ECR env: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} - ECR_REPOSITORY: discovery-api-qa + ECR_REPOSITORY: discovery-api IMAGE_TAG: ${{ github.sha }} run: | docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . From f70907cf5a155d867cea90439f1751c8a16e587d Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 13:15:55 -0400 Subject: [PATCH 26/51] Support NODE_ENV alt to ENV --- lib/load-config.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/load-config.js b/lib/load-config.js index 9d9b394e..4db11668 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -5,9 +5,11 @@ const { decrypt } = require('./kms-helper') module.exports.loadConfig = async () => { // Use `ENV` var to determine what config to load (default production): - const env = process.env.ENV && - ['local', 'qa', 'qa-new-domain', 'production'].includes(process.env.ENV) - ? process.env.ENV + // ECS task definition is using NODE_ENV, so we'll support that too for now + const envTag = (process.env.ENV || process.env.NODE_ENV) + const env = envTag && + ['local', 'qa', 'qa-new-domain', 'production'].includes(envTag) + ? envTag : 'production' const envPath = `config/${env}.env` @@ -17,7 +19,7 @@ module.exports.loadConfig = async () => { // Now that we've loaded env vars, which may include LOG_LEVEL, instantiate logger: logger.setLevel(process.env.LOG_LEVEL) - logger.info(`Load-config: Loaded ${envPath} for ENV '${process.env.ENV || ''}'`) + logger.info(`Load-config: Loaded ${envPath} for ENV '${envTag || ''}'`) return await exports.decryptEncryptedConfig() } From 6db82509cc1d6da6de2c5e3ee1cefadd84cb6f26 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 13:35:05 -0400 Subject: [PATCH 27/51] Update package.json version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c67a0ae6..e550d726 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "/logs-to-tsv/*" ] }, - "version": "1.1.2", + "version": "1.1.3", "repository": { "type": "git", "url": "https://github.com/NYPL/discovery-api.git" From e6c17dcb2ff35006cf957d07d8f3c2d3faa6f881 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 13:48:44 -0400 Subject: [PATCH 28/51] Fix gh actions deploy --- .github/workflows/test-and-deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 613541f2..0027f500 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -46,3 +46,7 @@ jobs: docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest docker push $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest + + - name: Force ECS Update + run: | + aws ecs update-service --cluster discovery-api-qa --service discovery-api-qa --force-new-deployment From a16cc26fa4f81cbaf75714af06c4bb13e9602b15 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 18 Mar 2024 15:27:06 -0400 Subject: [PATCH 29/51] Add better index-connection error handling --- README.md | 6 +++++- lib/errors.js | 14 +++++++++++++- lib/es-client.js | 9 +++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eae32706..97f031f8 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,11 @@ nvm use; npm i nvm use; ENV=qa npm start ``` -Note that when developing locally, you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). +Note that when developing locally, if connecting to a IP ACL protected index (a practice we're currently deprecating), you may need to [add your IP to the access control policy of the relevant ES domain](https://github.com/NYPL/aws/blob/b5c0af0ec8357af9a645d8b47a5dbb0090966071/common/elasticsearch.md#2-make-the-domain-public-restrict-by-ip). If your IP has not been authorized, you will see errors such as the following in the application logs: + +``` +error: Error connecting to index: 403: {"Message":"User: anonymous is not authorized to perform: es:ESHttpPost because no resource-based policy allows the es:ESHttpPost action"} +``` ### Using Docker diff --git a/lib/errors.js b/lib/errors.js index 81794d54..296f517e 100644 --- a/lib/errors.js +++ b/lib/errors.js @@ -17,4 +17,16 @@ class NotFoundError extends Error { this.message = message } } -module.exports = { InvalidParameterError, NotFoundError } + +/** +* Thrown when there's an error connecting to the ES index +*/ +class IndexConnectionError extends Error { + constructor (message) { + super() + this.name = 'IndexConnectionError' + this.message = message + } +} + +module.exports = { InvalidParameterError, NotFoundError, IndexConnectionError } diff --git a/lib/es-client.js b/lib/es-client.js index f3a9df1c..09c239cd 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -2,6 +2,7 @@ const elasticsearch = require('@elastic/elasticsearch') const url = require('node:url') const { deepValue } = require('./util') const logger = require('./logger') +const { IndexConnectionError } = require('./errors') const clientWrapper = {} @@ -34,6 +35,14 @@ clientWrapper.search = function (body) { index: process.env.RESOURCES_INDEX, body }) + .catch((e) => { + if (e.statusCode === 403) { + logger.error(`Error connecting to index: ${e.statusCode}: ${JSON.stringify(e.body)}`) + throw new IndexConnectionError('Error connecting to index') + } + + throw e + }) }.bind(clientWrapper) /** From 1f46695f7876bce337b035ebb11051e984161d55 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Wed, 3 Apr 2024 16:51:31 -0400 Subject: [PATCH 30/51] Connect to new self-hosted qa ES for testing --- config/qa-new-domain.env | 24 ++++++++++++++++++++++++ config/qa.env | 6 +++--- package-lock.json | 4 ++-- 3 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 config/qa-new-domain.env diff --git a/config/qa-new-domain.env b/config/qa-new-domain.env new file mode 100644 index 00000000..ca39bb93 --- /dev/null +++ b/config/qa-new-domain.env @@ -0,0 +1,24 @@ +# Greg built self-hosted domain: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= + +ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ +ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= + +NYPL_API_BASE_URL=https://qa-platform.nypl.org/api/v0.1/ +NYPL_OAUTH_URL=https://isso.nypl.org/ +ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== +ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= + +NYPL_CORE_VERSION=v2.14 + +LOG_LEVEL=debug +FEATURES=on-site-edd + +SEARCH_ITEMS_SIZE=100 +PORT=8082 + +HIDE_NYPL_SOURCE= + +BIB_HAS_VOLUMES_THRESHOLD=0.8 +BIB_HAS_DATES_THRESHOLD=0.8 diff --git a/config/qa.env b/config/qa.env index db47087d..ca39bb93 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ -# Currently, this is our ES 5.3 for QA: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAALswgbgGCSqGSIb3DQEHBqCBqjCBpwIBADCBoQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWLvUSzA/IAQCHl0MCARCAdNpF/Z1VJESwJ7hcwo/BqZz2mTDPA9NAPQ4zuPLsItz9A2lfHaP03bPuo9nq8VP5AKLOa4zPL0VoBmwEjj9qCCb+LSpQ3m+OoyM3BxG98/qYEcwXXOa8+0fH1x5asVrup/YICJdeD6jOewxttzzxCCGXEklL -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMK4A48qmN1m/MwZWgIBEIAvuuag76L0g0c2C+Jm4wiX3bLNpix2m4IPuEQLTgQ/eitS1QDpDFRaU9rGSccdvGQ= +# Greg built self-hosted domain: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= diff --git a/package-lock.json b/package-lock.json index 06a22a0b..bcce3e8d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "discovery-api", - "version": "1.1.2", + "version": "1.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "discovery-api", - "version": "1.1.2", + "version": "1.1.3", "license": "MIT", "dependencies": { "@aws-sdk/client-kms": "^3.533.0", From 4e4ad73991bc6be2615d0b01274d99f3c6e28002 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Wed, 3 Apr 2024 17:13:42 -0400 Subject: [PATCH 31/51] Connect to new old qa ES for testing --- config/qa.env | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/qa.env b/config/qa.env index ca39bb93..db47087d 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ -# Greg built self-hosted domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= +# Currently, this is our ES 5.3 for QA: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAALswgbgGCSqGSIb3DQEHBqCBqjCBpwIBADCBoQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWLvUSzA/IAQCHl0MCARCAdNpF/Z1VJESwJ7hcwo/BqZz2mTDPA9NAPQ4zuPLsItz9A2lfHaP03bPuo9nq8VP5AKLOa4zPL0VoBmwEjj9qCCb+LSpQ3m+OoyM3BxG98/qYEcwXXOa8+0fH1x5asVrup/YICJdeD6jOewxttzzxCCGXEklL +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMK4A48qmN1m/MwZWgIBEIAvuuag76L0g0c2C+Jm4wiX3bLNpix2m4IPuEQLTgQ/eitS1QDpDFRaU9rGSccdvGQ= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= From 13c383a7dfba6eaf12bd0476668eba1e9c6ad948 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 11 Apr 2024 13:19:11 -0400 Subject: [PATCH 32/51] Update SEARCH_ITEMS_SIZE to match EB deployments --- config/production.env | 2 +- config/qa-new-domain.env | 2 +- config/qa.env | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/production.env b/config/production.env index 2716979b..3803c575 100644 --- a/config/production.env +++ b/config/production.env @@ -15,7 +15,7 @@ NYPL_CORE_VERSION=v2.14 LOG_LEVEL=info FEATURES=on-site-edd -SEARCH_ITEMS_SIZE=100 +SEARCH_ITEMS_SIZE=3 PORT=8082 HIDE_NYPL_SOURCE= diff --git a/config/qa-new-domain.env b/config/qa-new-domain.env index ca39bb93..b63be49e 100644 --- a/config/qa-new-domain.env +++ b/config/qa-new-domain.env @@ -15,7 +15,7 @@ NYPL_CORE_VERSION=v2.14 LOG_LEVEL=debug FEATURES=on-site-edd -SEARCH_ITEMS_SIZE=100 +SEARCH_ITEMS_SIZE=3 PORT=8082 HIDE_NYPL_SOURCE= diff --git a/config/qa.env b/config/qa.env index db47087d..bd74139f 100644 --- a/config/qa.env +++ b/config/qa.env @@ -15,7 +15,7 @@ NYPL_CORE_VERSION=v2.14 LOG_LEVEL=debug FEATURES=on-site-edd -SEARCH_ITEMS_SIZE=100 +SEARCH_ITEMS_SIZE=3 PORT=8082 HIDE_NYPL_SOURCE= From 89a3b536bbda41790160c9fb8f02fedc7d431530 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 12 Apr 2024 12:10:43 -0400 Subject: [PATCH 33/51] Switch to new ES domain --- config/qa.env | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/qa.env b/config/qa.env index bd74139f..b63be49e 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ -# Currently, this is our ES 5.3 for QA: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAALswgbgGCSqGSIb3DQEHBqCBqjCBpwIBADCBoQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWLvUSzA/IAQCHl0MCARCAdNpF/Z1VJESwJ7hcwo/BqZz2mTDPA9NAPQ4zuPLsItz9A2lfHaP03bPuo9nq8VP5AKLOa4zPL0VoBmwEjj9qCCb+LSpQ3m+OoyM3BxG98/qYEcwXXOa8+0fH1x5asVrup/YICJdeD6jOewxttzzxCCGXEklL -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMK4A48qmN1m/MwZWgIBEIAvuuag76L0g0c2C+Jm4wiX3bLNpix2m4IPuEQLTgQ/eitS1QDpDFRaU9rGSccdvGQ= +# Greg built self-hosted domain: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= From 42b1d444eda12af53f3e0dac7a427623a5780572 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 12 Apr 2024 12:44:41 -0400 Subject: [PATCH 34/51] Fix URI for new ES cluster --- config/qa.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/qa.env b/config/qa.env index b63be49e..5bd5ac01 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,5 +1,5 @@ # Greg built self-hosted domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJYwgZMGCSqGSIb3DQEHBqCBhTCBggIBADB9BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKsvXp48LdO266HHvQIBEIBQugc/B4kPZMg33aLNMIo+yYK2FMPeRHgy8XbqXZKJqdJQBPDgImLd+y37Dcg7nISwA51WBYlIi/Y+OtVt0MpokbUq46gQIOJeK7ceWdZiaeQ= ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ From be89e1d27f5565ce63f0dd18e2901f5ca39c6145 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 16 Apr 2024 09:23:30 -0400 Subject: [PATCH 35/51] Fix v8 ES IP --- config/qa-new-domain.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/qa-new-domain.env b/config/qa-new-domain.env index b63be49e..5bd5ac01 100644 --- a/config/qa-new-domain.env +++ b/config/qa-new-domain.env @@ -1,5 +1,5 @@ # Greg built self-hosted domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJgwgZUGCSqGSIb3DQEHBqCBhzCBhAIBADB/BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDCxC3qeBv9AR85VT0AIBEIBSIz3EXDTPVzM43QJ8DfS4/cw3Mq2Sg9uLltQedZosCcSgmk33ZswF7uUQt7WWN/OijtCrgspWZEqPtug0gwG25u/zxi0ONQm3cGy3NC/tVo8EbA== +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJYwgZMGCSqGSIb3DQEHBqCBhTCBggIBADB9BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKsvXp48LdO266HHvQIBEIBQugc/B4kPZMg33aLNMIo+yYK2FMPeRHgy8XbqXZKJqdJQBPDgImLd+y37Dcg7nISwA51WBYlIi/Y+OtVt0MpokbUq46gQIOJeK7ceWdZiaeQ= ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ From 4cc4bf1e761a0e2c9d5fa863dc0a89d10dfb0883 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Wed, 8 May 2024 11:57:51 -0400 Subject: [PATCH 36/51] Make app robust to scsb api issues Ensure that, if connecting to the SCSB API raises an error or responds unexpectedly when querying for item statuses, we set offsite item statuses to 'Not available' and proceed with other work. Includes light refactoring to improve readability https://jira.nypl.org/browse/SCC-4050 --- lib/availability_resolver.js | 67 ++-- lib/delivery-locations-resolver.js | 34 ++- test/availability_resolver.test.js | 372 ++++++++++++++--------- test/delivery-locations-resolver.test.js | 37 ++- 4 files changed, 335 insertions(+), 175 deletions(-) diff --git a/lib/availability_resolver.js b/lib/availability_resolver.js index 14fab431..8f2b7eb7 100644 --- a/lib/availability_resolver.js +++ b/lib/availability_resolver.js @@ -22,6 +22,22 @@ class AvailabilityResolver { this.barcodes = this._parseBarCodesFromESResponse() } + /** + * Given a map relating status strings to arrays of barcodes, + * returns a map relating each barcode to a status string. + */ + static invertBarcodeByStatusMapping (barcodesByStatus) { + if (!barcodesByStatus || typeof barcodesByStatus !== 'object') { + return {} + } + return Object.keys(barcodesByStatus) + .reduce((h, status) => { + const barcodeToStatusPairs = barcodesByStatus[status] + .map((barcode) => ({ [barcode]: status })) + return Object.assign(h, ...barcodeToStatusPairs) + }, {}) + } + // returns an updated elasticSearchResponse with the newest availability info from SCSB responseWithUpdatedAvailability (options = {}) { // If this serialization is a result of a hold request initializing, we want @@ -30,12 +46,21 @@ class AvailabilityResolver { ? () => this._checkScsbForRecapCustomerCode() : () => Promise.resolve() + // When options.recapBarcodesByStatus is set, we can use it in place of + // re-querying status by barcode: + const barcodeToStatusMap = async () => { + if (options.recapBarcodesByStatus) { + // Invert mapping to map barcodes to statuses: + return AvailabilityResolver.invertBarcodeByStatusMapping(options.recapBarcodesByStatus) + } else { + return this._createSCSBBarcodeAvailbilityMapping(this.barcodes) + } + } + // Get 1) barcode-availability mapping and 2) customer code query in // parallel because they don't depend on each other: return Promise.all([ - // TODO: When options.recapBarcodesByStatus is set, we should be able to - // use it in place of re-querying status by barcode: - this._createSCSBBarcodeAvailbilityMapping(this.barcodes), + barcodeToStatusMap(), updateRecapCustomerCodes() ]) .then((barcodeMappingAndCustomerCodeResult) => { @@ -181,22 +206,30 @@ class AvailabilityResolver { /** * Given an array of barcodes, returns a hash mapping barcode to SCSB availability */ - _createSCSBBarcodeAvailbilityMapping (barcodes) { + async _createSCSBBarcodeAvailbilityMapping (barcodes) { if (barcodes.length === 0) { - return Promise.resolve({}) + return {} } - return scsbClient.getItemsAvailabilityForBarcodes(this.barcodes) - .then((itemsStatus) => { - if (!Array.isArray(itemsStatus)) { - logger.warn(`Got bad itemAvailabilityStatus response from SCSB for barcodes (${barcodes}): ${JSON.stringify(itemsStatus)}`) - return {} - } - const barcodesAndAvailability = {} - itemsStatus.forEach((statusEntry) => { - barcodesAndAvailability[statusEntry.itemBarcode] = statusEntry.itemAvailabilityStatus - }) - return barcodesAndAvailability - }) + let itemsStatus + try { + itemsStatus = await scsbClient.getItemsAvailabilityForBarcodes(this.barcodes) + } catch (e) { + logger.warn(`Error retrieving SCSB statuses for barcodes: ${e}`) + return {} + } + + if (!Array.isArray(itemsStatus)) { + logger.warn(`Got bad itemAvailabilityStatus response from SCSB for barcodes (${barcodes}): ${JSON.stringify(itemsStatus)}`) + return {} + } + + // Convert SCSB API response into barcode => status map: + return itemsStatus + // Verify the entries have the properties we expect: + .filter((entry) => entry.itemBarcode && entry.itemAvailabilityStatus) + .reduce((h, entry) => { + return Object.assign(h, { [entry.itemBarcode]: entry.itemAvailabilityStatus }) + }, {}) } _parseBarCodesFromESResponse () { diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 7c6f7ec7..1521ff07 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -7,15 +7,20 @@ const onsiteEddCriteria = require('../data/onsite-edd-criteria.json') const { isItemNyplOwned } = require('./ownership_determination') class DeliveryLocationsResolver { + static nyplCoreLocation (locationCode) { + return sierraLocations[locationCode] + } + static requestableBasedOnHoldingLocation (item) { - // Is this not requestable because of its holding location? - try { - const holdingLocationSierraCode = item.holdingLocation[0].id.split(':').pop() - return sierraLocations[holdingLocationSierraCode].requestable - } catch (e) { - logger.warn('There is an item in the index with missing or malformed holdingLocation', item) + const locationCode = this.extractLocationCode(item) + + if (!DeliveryLocationsResolver.nyplCoreLocation(locationCode)) { + logger.warn(`DeliveryLocationsResolver: Unrecognized holdingLocation for ${item.uri}: ${locationCode}`) return false } + + // Is this not requestable because of its holding location? + return DeliveryLocationsResolver.nyplCoreLocation(locationCode).requestable } // Currently, there is no physical delivery requests for onsite items through Discovery API @@ -24,11 +29,11 @@ class DeliveryLocationsResolver { // If holdingLocation given, strip code from @id for lookup: const locationCode = holdingLocation && holdingLocation.id ? holdingLocation.id.replace(/^loc:/, '') : null // Is Sierra location code mapped? - if (sierraLocations[locationCode] && sierraLocations[locationCode].sierraDeliveryLocations) { + if (DeliveryLocationsResolver.nyplCoreLocation(locationCode)?.sierraDeliveryLocations) { // It's mapped, but the sierraDeliveryLocation entities only have `code` and `label` // Do a second lookup to populate `deliveryLocationTypes` - return sierraLocations[locationCode].sierraDeliveryLocations.map((deliveryLocation) => { - deliveryLocation.deliveryLocationTypes = sierraLocations[deliveryLocation.code].deliveryLocationTypes + return DeliveryLocationsResolver.nyplCoreLocation(locationCode).sierraDeliveryLocations.map((deliveryLocation) => { + deliveryLocation.deliveryLocationTypes = DeliveryLocationsResolver.nyplCoreLocation(deliveryLocation.code).deliveryLocationTypes return deliveryLocation }) // Either holdingLocation is null or code not matched; Fall back on mocked data: @@ -141,11 +146,12 @@ class DeliveryLocationsResolver { } static extractLocationCode (item) { - try { - return item.holdingLocation[0].id.split(':').pop() - } catch (e) { - logger.warn('There is an item in the index with missing or malformed holdingLocation', item) + if (!Array.isArray(item.holdingLocation)) { + logger.warn(`DeliveryLocationsResolver#extractLocationCode: Item missing holdingLocation: ${item.uri}`) + return false } + + return item.holdingLocation[0]?.id?.split(':').pop() } static sortPosition (location) { @@ -224,7 +230,7 @@ class DeliveryLocationsResolver { deliveryLocation: [] } const holdingLocationCode = this.extractLocationCode(item) - const sierraData = sierraLocations[holdingLocationCode] + const sierraData = DeliveryLocationsResolver.nyplCoreLocation(holdingLocationCode) if (!sierraData) { // This case is mainly to satisfy a test which wants eddRequestable = false // for a made up location code. diff --git a/test/availability_resolver.test.js b/test/availability_resolver.test.js index 28d317a2..2ca4a3f8 100644 --- a/test/availability_resolver.test.js +++ b/test/availability_resolver.test.js @@ -52,184 +52,186 @@ const itemAvailabilityResponse = [ ] describe('Response with updated availability', function () { - beforeEach(() => { - sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') - .callsFake(() => Promise.resolve(itemAvailabilityResponse)) - - sinon.stub(scsbClient, 'recapCustomerCodeByBarcode') - .callsFake(() => Promise.resolve('NC')) - }) - - afterEach(() => { - scsbClient.getItemsAvailabilityForBarcodes.restore() - scsbClient.recapCustomerCodeByBarcode.restore() - }) - - it('will change an items status to "Available" if ElasticSearch says it\'s unavailable but SCSB says it is Available', function () { - const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + describe('responseWithUpdatedAvailability', () => { + beforeEach(() => { + sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') + .callsFake(() => Promise.resolve(itemAvailabilityResponse)) - const indexedAsUnavailableURI = 'i10283664' + sinon.stub(scsbClient, 'recapCustomerCodeByBarcode') + .callsFake(() => Promise.resolve('NC')) + }) - const indexedAsUnavailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { - return item.uri === indexedAsUnavailableURI + afterEach(() => { + scsbClient.getItemsAvailabilityForBarcodes.restore() + scsbClient.recapCustomerCodeByBarcode.restore() }) - // Test that it's unavailable at first - expect(indexedAsUnavailable.status[0].id).to.equal('status:na') - expect(indexedAsUnavailable.status[0].label).to.equal('Not available') + it('will change an items status to "Available" if ElasticSearch says it\'s unavailable but SCSB says it is Available', function () { + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - return availabilityResolver.responseWithUpdatedAvailability() - .then((modifiedResponse) => { - const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { - return item.uri === indexedAsUnavailableURI - }) + const indexedAsUnavailableURI = 'i10283664' - // Test AvailabilityResolver munges it into availability - expect(theItem.status[0].id).to.equal('status:a') - expect(theItem.status[0].label).to.equal('Available') + const indexedAsUnavailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + return item.uri === indexedAsUnavailableURI }) - }) - - it('will change an items status to "Unavailable" if ElasticSearch says it\'s Available but SCSB says it is Unvailable', function () { - const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - const indexedAsAvailableURI = 'i102836649' - const indexedAsAvailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { - return item.uri === indexedAsAvailableURI - }) + // Test that it's unavailable at first + expect(indexedAsUnavailable.status[0].id).to.equal('status:na') + expect(indexedAsUnavailable.status[0].label).to.equal('Not available') - // Test that it's available at first - expect(indexedAsAvailable.status[0].id).to.equal('status:a') - expect(indexedAsAvailable.status[0].label).to.equal('Available') + return availabilityResolver.responseWithUpdatedAvailability() + .then((modifiedResponse) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + return item.uri === indexedAsUnavailableURI + }) - return availabilityResolver.responseWithUpdatedAvailability() - .then((modifiedResponse) => { - const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { - return item.uri === indexedAsAvailableURI + // Test AvailabilityResolver munges it into availability + expect(theItem.status[0].id).to.equal('status:a') + expect(theItem.status[0].label).to.equal('Available') }) - - // Test AvailabilityResolver munges it into temporarily unavailable - expect(theItem.status[0].id).to.equal('status:na') - expect(theItem.status[0].label).to.equal('Not available') - }) - }) - - it('will return the original ElasticSearchResponse\'s status for the item if the SCSB can\'t find an item with the barcode', function () { - const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - - const indexedButNotAvailableInSCSBURI = 'i22566485' - const indexedButNotAvailableInSCSB = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { - return item.uri === indexedButNotAvailableInSCSBURI }) - expect(indexedButNotAvailableInSCSB.status[0].id).to.equal('status:a') - expect(indexedButNotAvailableInSCSB.status[0].label).to.equal('Available') - - return availabilityResolver.responseWithUpdatedAvailability() - .then((modifiedResponse) => { - const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { - return item.uri === indexedButNotAvailableInSCSBURI - }) + it('will change an items status to "Unavailable" if ElasticSearch says it\'s Available but SCSB says it is Unvailable', function () { + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) - // As this item is not available in SCSB, the elasticSearchResponse's availability for the item was returned - expect(theItem.status[0].id).to.equal('status:a') - expect(theItem.status[0].label).to.equal('Available') + const indexedAsAvailableURI = 'i102836649' + const indexedAsAvailable = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + return item.uri === indexedAsAvailableURI }) - }) - it('includes the latest availability status of items', function () { - const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + // Test that it's available at first + expect(indexedAsAvailable.status[0].id).to.equal('status:a') + expect(indexedAsAvailable.status[0].label).to.equal('Available') - return availabilityResolver.responseWithUpdatedAvailability() - .then((response) => { - const items = response.hits.hits[0]._source.items + return availabilityResolver.responseWithUpdatedAvailability() + .then((modifiedResponse) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + return item.uri === indexedAsAvailableURI + }) - // A ReCAP item with Discovery status 'Available', but SCSB - // status 'Not Available' should be made 'Not Available' - const unavailableItem = items.find((item) => { - return item.uri === 'i102836649' + // Test AvailabilityResolver munges it into temporarily unavailable + expect(theItem.status[0].id).to.equal('status:na') + expect(theItem.status[0].label).to.equal('Not available') }) - expect(unavailableItem.status[0].id).to.equal('status:na') - expect(unavailableItem.status[0].label).to.equal('Not available') + }) - // A ReCAP item with Discovery status 'Not Avaiable', but SCSB - // status 'Available' should be made available: - const availableItem = items.find((item) => { - return item.uri === 'i10283664' - }) - expect(availableItem.status[0].id).to.equal('status:a') - expect(availableItem.status[0].label).to.equal('Available') + it('will return the original ElasticSearchResponse\'s status for the item if the SCSB can\'t find an item with the barcode', function () { + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + + const indexedButNotAvailableInSCSBURI = 'i22566485' + const indexedButNotAvailableInSCSB = elasticSearchResponse.fakeElasticSearchResponseNyplItem().hits.hits[0]._source.items.find((item) => { + return item.uri === indexedButNotAvailableInSCSBURI }) - }) - describe('CUL item', function () { - let availabilityResolver = null + expect(indexedButNotAvailableInSCSB.status[0].id).to.equal('status:a') + expect(indexedButNotAvailableInSCSB.status[0].label).to.equal('Available') - before(function () { - availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseCulItem()) - }) - - it('marks CUL item Available when SCSB API indicates it is so', function () { return availabilityResolver.responseWithUpdatedAvailability() - .then((response) => { - const items = response.hits.hits[0]._source.items + .then((modifiedResponse) => { + const theItem = modifiedResponse.hits.hits[0]._source.items.find((item) => { + return item.uri === indexedButNotAvailableInSCSBURI + }) - const availableItem = items.find((item) => item.uri === 'ci1455504') - expect(availableItem.requestable[0]).to.equal(true) - expect(availableItem.status[0].label).to.equal('Available') + // As this item is not available in SCSB, the elasticSearchResponse's availability for the item was returned + expect(theItem.status[0].id).to.equal('status:a') + expect(theItem.status[0].label).to.equal('Available') }) }) - it('marks CUL item not avilable when SCSB API indicates it is so', function () { + it('includes the latest availability status of items', function () { + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + return availabilityResolver.responseWithUpdatedAvailability() .then((response) => { const items = response.hits.hits[0]._source.items - const notAvailableItem = items.find((item) => item.uri === 'ci14555049999') - expect(notAvailableItem.status[0].label).to.equal('Not available') - }) - }) - }) + // A ReCAP item with Discovery status 'Available', but SCSB + // status 'Not Available' should be made 'Not Available' + const unavailableItem = items.find((item) => { + return item.uri === 'i102836649' + }) + expect(unavailableItem.status[0].id).to.equal('status:na') + expect(unavailableItem.status[0].label).to.equal('Not available') - describe('checks recapCustomerCodes when options specifies', () => { - let availabilityResolver = null - it('logs an error when item\'s code does not match SCSB', () => { - availabilityResolver = new AvailabilityResolver(recapScsbQueryMismatch()) - const loggerSpy = sinon.spy(logger, 'error') - return availabilityResolver.responseWithUpdatedAvailability({ queryRecapCustomerCode: true }) - .then(() => { - expect(loggerSpy.calledOnce).to.equal(true) - logger.error.restore() + // A ReCAP item with Discovery status 'Not Avaiable', but SCSB + // status 'Available' should be made available: + const availableItem = items.find((item) => { + return item.uri === 'i10283664' + }) + expect(availableItem.status[0].id).to.equal('status:a') + expect(availableItem.status[0].label).to.equal('Available') }) }) - it('updates recapCustomerCode when item\'s code does not match SCSB', () => { - return availabilityResolver.responseWithUpdatedAvailability() - .then((response) => { - const items = response.hits.hits[0]._source.items - // A ReCAP item with customer code XX - const queryItem = items.find((item) => { - return item.uri === 'i10283667' + describe('CUL item', function () { + let availabilityResolver = null + + before(function () { + availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseCulItem()) + }) + + it('marks CUL item Available when SCSB API indicates it is so', function () { + return availabilityResolver.responseWithUpdatedAvailability() + .then((response) => { + const items = response.hits.hits[0]._source.items + + const availableItem = items.find((item) => item.uri === 'ci1455504') + expect(availableItem.requestable[0]).to.equal(true) + expect(availableItem.status[0].label).to.equal('Available') }) - expect(queryItem.recapCustomerCode[0]).to.equal('NC') - }) - }) + }) - it('does nothing when current recapCustomerCode and SCSB code are a match', () => { - availabilityResolver = new AvailabilityResolver(recapScsbQueryMatch()) - const loggerSpy = sinon.spy(logger, 'error') - return availabilityResolver.responseWithUpdatedAvailability() - .then(() => { - expect(loggerSpy.notCalled).to.equal(true) - logger.error.restore() - }) + it('marks CUL item not avilable when SCSB API indicates it is so', function () { + return availabilityResolver.responseWithUpdatedAvailability() + .then((response) => { + const items = response.hits.hits[0]._source.items + + const notAvailableItem = items.find((item) => item.uri === 'ci14555049999') + expect(notAvailableItem.status[0].label).to.equal('Not available') + }) + }) }) - it('does not query SCSB unless specified in options', () => { - return availabilityResolver.responseWithUpdatedAvailability() - .then(() => { - expect(scsbClient.recapCustomerCodeByBarcode.notCalled).to.equal(true) - }) + describe('checks recapCustomerCodes when options specifies', () => { + let availabilityResolver = null + it('logs an error when item\'s code does not match SCSB', () => { + availabilityResolver = new AvailabilityResolver(recapScsbQueryMismatch()) + const loggerSpy = sinon.spy(logger, 'error') + return availabilityResolver.responseWithUpdatedAvailability({ queryRecapCustomerCode: true }) + .then(() => { + expect(loggerSpy.calledOnce).to.equal(true) + logger.error.restore() + }) + }) + + it('updates recapCustomerCode when item\'s code does not match SCSB', () => { + return availabilityResolver.responseWithUpdatedAvailability() + .then((response) => { + const items = response.hits.hits[0]._source.items + // A ReCAP item with customer code XX + const queryItem = items.find((item) => { + return item.uri === 'i10283667' + }) + expect(queryItem.recapCustomerCode[0]).to.equal('NC') + }) + }) + + it('does nothing when current recapCustomerCode and SCSB code are a match', () => { + availabilityResolver = new AvailabilityResolver(recapScsbQueryMatch()) + const loggerSpy = sinon.spy(logger, 'error') + return availabilityResolver.responseWithUpdatedAvailability() + .then(() => { + expect(loggerSpy.notCalled).to.equal(true) + logger.error.restore() + }) + }) + + it('does not query SCSB unless specified in options', () => { + return availabilityResolver.responseWithUpdatedAvailability() + .then(() => { + expect(scsbClient.recapCustomerCodeByBarcode.notCalled).to.equal(true) + }) + }) }) }) @@ -374,4 +376,98 @@ describe('Response with updated availability', function () { }) }) }) + + describe('SCSB outage', () => { + before(() => { + sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') + .callsFake(() => { + throw new Error('oh no!') + }) + }) + + after(() => { + scsbClient.getItemsAvailabilityForBarcodes.restore() + }) + + it('makes recap items na when scsb is out', async () => { + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + + const modifiedResponse = await availabilityResolver.responseWithUpdatedAvailability() + + // Just examine items in rc locations: + const recapItems = modifiedResponse.hits.hits[0]._source.items + .filter((item) => item.holdingLocation && item.holdingLocation[0] && /^loc:rc/.test(item.holdingLocation[0].id)) + + expect(recapItems).to.have.lengthOf(3) + + // Assert that all recap items are Not available: + recapItems.forEach((item) => { + // Test AvailabilityResolver munges it into availability + expect(item.status[0].id).to.equal('status:na') + expect(item.status[0].label).to.equal('Not available') + }) + }) + }) + + describe('SCSB bad responses', () => { + // Imagine some unexpected responses: + ; [ + // Unexpected status string: + [{ itemBarcode: '10005468369', itemAvailabilityStatus: 'fladeedle' }], + // An entry without a barcode: + [{ itemAvailabilityStatus: 'Available' }], + // Truthy but useless: + [{ }], + // Some kind of error response: + { error: 'some other error' }, + // HTML! + 'oh no html { + it(`makes recap items "na" when scsb returns unexpected responses (#${index})`, async () => { + // Stub the scsb client to return the bad response: + sinon.stub(scsbClient, 'getItemsAvailabilityForBarcodes') + .callsFake(() => Promise.resolve(badResponse)) + + const availabilityResolver = new AvailabilityResolver(elasticSearchResponse.fakeElasticSearchResponseNyplItem()) + const modifiedResponse = await availabilityResolver.responseWithUpdatedAvailability() + + // Get the single item for which we've mocked the bad scsb response above: + const item = modifiedResponse.hits.hits[0]._source.items + .find((item) => item.identifier && item.identifier[0] === 'urn:barcode:10005468369') + + // Expect the item's Available status to have been flipped to 'na' even + // through scsb api returned a weird response: + expect(item.status[0].id).to.equal('status:na') + expect(item.status[0].label).to.equal('Not available') + + // Restore the client method: + scsbClient.getItemsAvailabilityForBarcodes.restore() + }) + }) + }) + + describe('invertBarcodeByStatusMapping', () => { + it('returns empty map if invalid input given', () => { + ;[null, false, true, 'fladeedle'].forEach((badValue) => { + expect(AvailabilityResolver.invertBarcodeByStatusMapping(badValue)).to.deep.eq({}) + }) + }) + + it('inverts a status to barcode map', () => { + const map = AvailabilityResolver.invertBarcodeByStatusMapping({ + Available: ['b1', 'b2'], + 'Not available': ['b3', 'b4'] + }) + expect(map).to.deep.eq({ + b1: 'Available', + b2: 'Available', + b3: 'Not available', + b4: 'Not available' + }) + }) + }) }) diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index 57da2765..21672f5d 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -1,3 +1,5 @@ +const sinon = require('sinon') + const DeliveryLocationsResolver = require('../lib/delivery-locations-resolver') const sampleItems = { @@ -149,13 +151,36 @@ function takeThisPartyPartiallyOffline () { describe('Delivery-locations-resolver', function () { before(takeThisPartyPartiallyOffline) - it('will hide "Scholar" deliveryLocation for LPA or SC only deliverable items, patron is scholar type', function () { - return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteOnlySchomburg], 'mala').then((items) => { - expect(items[0].deliveryLocation).to.not.have.lengthOf(0) + describe('SC delivery locations', () => { + before(() => { + // Override NYPL-Core lookup for scff3 to make it requestable: + sinon.stub(DeliveryLocationsResolver, 'nyplCoreLocation').callsFake(() => { + return { + sierraDeliveryLocations: [ + { + code: 'sc', + label: 'Schomburg Center - Research and Reference Division', + locationsApiSlug: 'schomburg', + deliveryLocationTypes: ['Research'] + } + ], + requestable: true + } + }) + }) - // Confirm the known scholar rooms are not included: - scholarRooms.forEach((scholarRoom) => { - expect(items[0].deliveryLocation).to.not.include(scholarRoom) + after(() => { + DeliveryLocationsResolver.nyplCoreLocation.restore() + }) + + it('will hide "Scholar" deliveryLocation for LPA or SC only deliverable items, patron is scholar type', function () { + return DeliveryLocationsResolver.attachDeliveryLocationsAndEddRequestability([sampleItems.onsiteOnlySchomburg], 'mala').then((items) => { + expect(items[0].deliveryLocation).to.not.have.lengthOf(0) + + // Confirm the known scholar rooms are not included: + scholarRooms.forEach((scholarRoom) => { + expect(items[0].deliveryLocation).to.not.include(scholarRoom) + }) }) }) }) From 39fa504c099e7675ad58a0686174f6a1d150de95 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 24 May 2024 13:30:58 -0400 Subject: [PATCH 37/51] Use v8 prod index for testing --- config/qa.env | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/qa.env b/config/qa.env index 5bd5ac01..06d7fd15 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ -# Greg built self-hosted domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAJYwgZMGCSqGSIb3DQEHBqCBhTCBggIBADB9BgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDKsvXp48LdO266HHvQIBEIBQugc/B4kPZMg33aLNMIo+yYK2FMPeRHgy8XbqXZKJqdJQBPDgImLd+y37Dcg7nISwA51WBYlIi/Y+OtVt0MpokbUq46gQIOJeK7ceWdZiaeQ= -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHTQSgIcKoLOPFzVvgIBEIAv4+WtxKMeahIFRtdB64DfQAdAtN7DyujwxRBnrhdAqX5RBMXqGpfvUheXMoWlVN4= +# Greg built self-hosted production domain: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHgwdgYJKoZIhvcNAQcGoGkwZwIBADBiBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDIYpOz/BbRlJZUul7gIBEIA1idumQ6fdf/j5/pzF4t96MGGH/eV1gD4WCyLUnScgNYqtRNK0ajRO6XVroswsrJtgCwUerDM= +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDDHuuuG/vsNVvjm2BgIBEIAvNe+XrgVv1D1W1WLqvsTWrCET7oK3/LlvfcQwFWIW0W4dONlDbU9UXrlufonpJ5M= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= From 45dc7cac9bf5ba936af621932e42eac109a562e0 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 24 May 2024 13:51:55 -0400 Subject: [PATCH 38/51] Fix bug extracting totalResults --- lib/jsonld_serializers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index a64c421a..5517223b 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -401,7 +401,7 @@ class ResourceResultsSerializer extends SearchResultsSerializer { static serialize (resp, opts) { const results = resp.hits.hits.map((h) => ({ score: h._score, record: ResourceSerializer.serialize(h._source) })) - opts = Object.assign({ extraRootProperties: { totalResults: resp.hits.total } }, opts) + opts = Object.assign({ extraRootProperties: { totalResults: resp.hits.total?.value || resp.hits.total } }, opts) return (new ResourceResultsSerializer(results, opts)).format() } } From ef3d5a0454fc3d48a71bdc85784d6435c9b161f1 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 24 May 2024 14:01:11 -0400 Subject: [PATCH 39/51] Fix bug extracting totalResults --- lib/jsonld_serializers.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index 5517223b..de4c759a 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -401,7 +401,8 @@ class ResourceResultsSerializer extends SearchResultsSerializer { static serialize (resp, opts) { const results = resp.hits.hits.map((h) => ({ score: h._score, record: ResourceSerializer.serialize(h._source) })) - opts = Object.assign({ extraRootProperties: { totalResults: resp.hits.total?.value || resp.hits.total } }, opts) + const totalResults = typeof resp.hits.total?.value === 'number' ? resp.hits.total.value : resp.hits.total + opts = Object.assign({ extraRootProperties: { totalResults } }, opts) return (new ResourceResultsSerializer(results, opts)).format() } } From e4aa063ed2b18f212748b9b1a1a2f4bfad973b9f Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Tue, 18 Jun 2024 21:19:05 -0400 Subject: [PATCH 40/51] Update qa-node20 branch with upstream changes. --- README.md | 1 + config/qa.env | 6 +- data/onsite-edd-criteria.json | 9 +- lib/delivery-locations-resolver.js | 11 +- lib/requestability_resolver.js | 13 +- lib/resources.js | 6 +- test/delivery-locations-resolver.test.js | 24 +- test/fixtures/no_recap_response.js | 808 ++++++++++++++++++ ...uery-0ac2d4be36677658e58b21fac9368305.json | 17 - ...code-1f8ce439dff513362111cf43901b9f10.json | 22 - ...code-4a86f5100c2412aa6c747b6a4980a8b8.json | 502 ----------- ...code-4eb3fad2438146c7e687a865179ebc89.json | 502 ----------- ...code-68ce5c58a3564375af1881bf50830494.json | 7 - ...code-6d9bc4ccfec5900d645ec91611d139ee.json | 502 ----------- ...code-920faf2b789b32c7661692d9155560ff.json | 22 - ...code-9ca059b8418a8cc7ed13bafc739bffd4.json | 7 - ...code-a522b2198195ab55442d41136a902254.json | 7 - ...code-aa04b0e8383fc73d48d88403eea37e2c.json | 7 - ...code-b4ab79b5bce17604bea7d6e8569a05d0.json | 7 - ...code-d9e8022a9e991935d867b23b15546742.json | 12 - ...code-de2b279b21a808f0b0ca151f03968031.json | 17 - ...code-f7449c752a123dd05ff2d438b7def61e.json | 7 - ...code-ff5b8e7ea9a28bf4a8c8409597bbf6df.json | 7 - test/location_label_updater.test.js | 4 +- test/requestability_resolver.test.js | 19 + 25 files changed, 877 insertions(+), 1669 deletions(-) create mode 100644 test/fixtures/no_recap_response.js delete mode 100644 test/fixtures/query-0ac2d4be36677658e58b21fac9368305.json delete mode 100644 test/fixtures/scsb-by-barcode-1f8ce439dff513362111cf43901b9f10.json delete mode 100644 test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json delete mode 100644 test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json delete mode 100644 test/fixtures/scsb-by-barcode-68ce5c58a3564375af1881bf50830494.json delete mode 100644 test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json delete mode 100644 test/fixtures/scsb-by-barcode-920faf2b789b32c7661692d9155560ff.json delete mode 100644 test/fixtures/scsb-by-barcode-9ca059b8418a8cc7ed13bafc739bffd4.json delete mode 100644 test/fixtures/scsb-by-barcode-a522b2198195ab55442d41136a902254.json delete mode 100644 test/fixtures/scsb-by-barcode-aa04b0e8383fc73d48d88403eea37e2c.json delete mode 100644 test/fixtures/scsb-by-barcode-b4ab79b5bce17604bea7d6e8569a05d0.json delete mode 100644 test/fixtures/scsb-by-barcode-d9e8022a9e991935d867b23b15546742.json delete mode 100644 test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json delete mode 100644 test/fixtures/scsb-by-barcode-f7449c752a123dd05ff2d438b7def61e.json delete mode 100644 test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json diff --git a/README.md b/README.md index 97f031f8..275d3063 100644 --- a/README.md +++ b/README.md @@ -206,3 +206,4 @@ There is currently one feature flag in this app, which is 'no-on-site-edd'. When NB: numAvailable and numItem*Parsed counts do not **exclude** the e-item, but these items are not indexed with statuses, volumes, or date ranges, and are therefore not actually included in this count. NB: As the table above indicates, there is a mismatch between what the front end and API regard as "electronic items". As far as the API is concerned, there is only at most ONE electronic item, which can have many electronic locator values. `numElectronicResources` counts these locator values, but the other item count values treat all the electronic resources as a single item. + diff --git a/config/qa.env b/config/qa.env index 06d7fd15..848e89ee 100644 --- a/config/qa.env +++ b/config/qa.env @@ -1,6 +1,6 @@ -# Greg built self-hosted production domain: -ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHgwdgYJKoZIhvcNAQcGoGkwZwIBADBiBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDIYpOz/BbRlJZUul7gIBEIA1idumQ6fdf/j5/pzF4t96MGGH/eV1gD4WCyLUnScgNYqtRNK0ajRO6XVroswsrJtgCwUerDM= -ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDDHuuuG/vsNVvjm2BgIBEIAvNe+XrgVv1D1W1WLqvsTWrCET7oK3/LlvfcQwFWIW0W4dONlDbU9UXrlufonpJ5M= +# Currently, this is our ES 5.3 for QA: +ENCRYPTED_ELASTICSEARCH_URI=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAALswgbgGCSqGSIb3DQEHBqCBqjCBpwIBADCBoQYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWLvUSzA/IAQCHl0MCARCAdNpF/Z1VJESwJ7hcwo/BqZz2mTDPA9NAPQ4zuPLsItz9A2lfHaP03bPuo9nq8VP5AKLOa4zPL0VoBmwEjj9qCCb+LSpQ3m+OoyM3BxG98/qYEcwXXOa8+0fH1x5asVrup/YICJdeD6jOewxttzzxCCGXEklL +ENCRYPTED_RESOURCES_INDEX=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAHIwcAYJKoZIhvcNAQcGoGMwYQIBADBcBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDI88/9macimvmLyWCAIBEIAvMUOAtF2Miq+8u7/A9fzBz57LavqkeLJmv8dd7WQzdA9lhqPkjUK0pzYtxsPe6Nk= ENCRYPTED_SCSB_URL=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAH8wfQYJKoZIhvcNAQcGoHAwbgIBADBpBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDBKllElmWYLxGOGopQIBEIA8JJyKde/8m8iCJGKR5D8HoTJhXHeyvw9eIDeuUNKiXLfJwoVz+PDAZSxkCQtM9O91zGhXbe3l6Bk1RlYJ ENCRYPTED_SCSB_API_KEY=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGMwYQYJKoZIhvcNAQcGoFQwUgIBADBNBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDNw8KXkyN8HvtjAX0gIBEIAgX+XG2fxTj6kSchrd/dfHB05KU5pkT0LtPxUTuNCXoLc= diff --git a/data/onsite-edd-criteria.json b/data/onsite-edd-criteria.json index 233ed669..21ff7b04 100644 --- a/data/onsite-edd-criteria.json +++ b/data/onsite-edd-criteria.json @@ -34,19 +34,15 @@ "maf", "maf82", "maf92", - "maff1", "maff3", "mag", "mag82", "mag92", - "magg1", "magg2", "magg3", - "magh1", "mai", "mai82", "mai92", - "maii1", "maii2", "maii3", "maj92", @@ -57,13 +53,11 @@ "mal72", "mal82", "mal92", - "mall1", "malm2", "malv2", "map", "map82", "map92", - "mapp1", "mapp2", "mapp3", "mas62", @@ -71,7 +65,9 @@ "mas92", "pad22", "pad32", + "pam22", "pah", + "pah22", "pah32", "pam", "pam32", @@ -80,7 +76,6 @@ "pat22", "pat32", "scf", - "scff1", "scff2", "scff3" ] diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 1521ff07..78ee2bf4 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -214,7 +214,16 @@ class DeliveryLocationsResolver { // location is not requestable: let deliveryLocation let eddRequestable - if (!isItemNyplOwned(item) || this.requestableBasedOnHoldingLocation(item)) { + const hasRecapCustomerCode = item.recapCustomerCode && item.recapCustomerCode[0] + const nyplItem = isItemNyplOwned(item) + if (!hasRecapCustomerCode) { + const requestableBasedOnHoldingLocation = nyplItem ? this.requestableBasedOnHoldingLocation(item) : true + // the length of the list of delivery locations is checked later to determine physical requestability + // In case of an offsite item with no recap customer code, we want this to be based on holding location + // so we put a placeholder '' in case it is requestable based on holding location + deliveryLocation = requestableBasedOnHoldingLocation ? [''] : [] + eddRequestable = requestableBasedOnHoldingLocation + } else if (!nyplItem || this.requestableBasedOnHoldingLocation(item)) { deliveryLocation = this.deliveryLocationsByRecapCustomerCode(item.recapCustomerCode[0]) eddRequestable = this.__eddRequestableByCustomerCode(item.recapCustomerCode[0]) } else { diff --git a/lib/requestability_resolver.js b/lib/requestability_resolver.js index 1bc7daa3..0b192d6c 100644 --- a/lib/requestability_resolver.js +++ b/lib/requestability_resolver.js @@ -12,15 +12,14 @@ class RequestabilityResolver { const itemIsInRecap = isInRecap(item) let physRequestableCriteria const hasRecapCustomerCode = item.recapCustomerCode && item.recapCustomerCode[0] - if (itemIsInRecap && !hasRecapCustomerCode) { + if (itemIsInRecap) { // recap items missing codes should default to true for phys and edd - // requestable. - physRequestableCriteria = 'Missing customer code' - deliveryInfo = { eddRequestable: true, deliveryLocation: [''] } - } else if (itemIsInRecap && hasRecapCustomerCode) { + // requestable, unless it has a non-requestable holding location deliveryInfo = DeliveryLocationsResolver.getRecapDeliveryInfo(item) - physRequestableCriteria = `${(deliveryInfo.deliveryLocation && - deliveryInfo.deliveryLocation.length) || 0} delivery locations.` + physRequestableCriteria = hasRecapCustomerCode + ? `${(deliveryInfo.deliveryLocation && + deliveryInfo.deliveryLocation.length) || 0} delivery locations.` + : 'Missing customer code' } else if (!itemIsInRecap) { deliveryInfo = DeliveryLocationsResolver.getOnsiteDeliveryInfo(item) physRequestableCriteria = `${(deliveryInfo.deliveryLocation && diff --git a/lib/resources.js b/lib/resources.js index efce2583..986ffc28 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -83,7 +83,8 @@ const SEARCH_SCOPES = { 'parallelPublisher', 'uniformTitle.folded', 'parallelUniformTitle', - 'formerTitle' + 'formerTitle', + 'addedAuthorTitle' ] }, title: { @@ -102,7 +103,8 @@ const SEARCH_SCOPES = { 'parallelTitleAlt.folded', 'parallelCreatorLiteral.folded', 'parallelUniformTitle', - 'formerTitle' + 'formerTitle', + 'addedAuthorTitle' ] }, contributor: { diff --git a/test/delivery-locations-resolver.test.js b/test/delivery-locations-resolver.test.js index 21672f5d..dd0b055a 100644 --- a/test/delivery-locations-resolver.test.js +++ b/test/delivery-locations-resolver.test.js @@ -11,7 +11,7 @@ const sampleItems = { ], holdingLocation: [ { - id: 'loc:scff3', + id: 'loc:scff2', prefLabel: 'Schomburg Center - Research & Reference - Desk' } ], @@ -46,7 +46,7 @@ const sampleItems = { uri: 'i12227153', holdingLocation: [ { - id: 'loc:scff1', + id: 'loc:scf', label: 'Schomburg Center - Research & Reference' } ], @@ -530,4 +530,24 @@ describe('Delivery-locations-resolver', function () { ).to.equal(true) }) }) + describe('getRecapDeliveryInfo', function () { + it('returns empty deliveryLocation and eddRequestable false based on holding location when missing recapCustomerCode', function () { + const resolved = DeliveryLocationsResolver.getRecapDeliveryInfo({ + holdingLocation: [{ id: 'loc:rccd8' }], + uri: 'i14747243' + }) + expect(resolved.deliveryLocation.length).to.equal(0) + expect(resolved.eddRequestable).to.equal(false) + }) + + it('returns empty string delivery location and eddRequestable true based on holding location when missing recapCustomerCode', function () { + const resolved = DeliveryLocationsResolver.getRecapDeliveryInfo({ + holdingLocation: [{ id: 'loc:rcpm2' }], + uri: 'i14747243' + }) + expect(resolved.deliveryLocation.length).to.equal(1) + expect(resolved.deliveryLocation[0]).to.equal('') + expect(resolved.eddRequestable).to.equal(true) + }) + }) }) diff --git a/test/fixtures/no_recap_response.js b/test/fixtures/no_recap_response.js new file mode 100644 index 00000000..18ee781c --- /dev/null +++ b/test/fixtures/no_recap_response.js @@ -0,0 +1,808 @@ +exports.fakeElasticSearchResponseNyplItem = () => { + return { + _shards: { + failed: 0, + successful: 1, + total: 1 + }, + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ + { + _id: 'b10980129', + _source: { + numItems: [ + 4 + ], + createdString: [ + '1989' + ], + issuance: [ + { + label: 'monograph/item', + id: 'urn:biblevel:m' + } + ], + creatorLiteral: [ + 'Maḥfūẓ, Najīb, 1911-2006.' + ], + creator_sort: [ + 'maḥfūẓ, najīb, 1911-2006.' + ], + level: 'debug', + items: [ + { + uri: 'i22566485', + identifier: [ + 'urn:barcode:33433058338470' + ], + status: [ + { + label: 'Available', + id: 'status:a' + } + ] + }, + { + uri: 'i22566489' + }, + { + holdingLocation_packed: [ + 'loc:scff2||Schomburg Center - Research & Reference' + ], + suppressed: [ + false + ], + shelfMark: [ + 'Sc D 90-863' + ], + accessMessage_packed: [ + 'accessMessage:1||USE IN LIBRARY' + ], + uri: 'i10283665', + accessMessage: [ + { + label: 'USE IN LIBRARY', + id: 'accessMessage:1' + } + ], + catalogItemType: [ + { + id: 'catalogItemType:2', + label: 'book non-circ' + } + ], + deliveryLocation_packed: [ + 'loc:sc||Schomburg Center' + ], + owner: [ + { + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' + } + ], + deliveryLocation: [ + { + label: 'Schomburg Center', + id: 'loc:sc' + } + ], + identifier: [ + 'urn:barcode:32101071572406' + ], + requestable: [ + true + ], + owner_packed: [ + 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + ], + status: [ + { + label: 'Available', + id: 'status:a' + } + ], + holdingLocation: [ + { + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' + } + ], + status_packed: [ + 'status:a||Available' + ] + }, + { + holdingLocation_packed: [ + 'loc:scff2||Schomburg Center - Research & Reference' + ], + suppressed: [ + false + ], + shelfMark: [ + 'Sc D 90-863' + ], + accessMessage_packed: [ + 'accessMessage:1||USE IN LIBRARY' + ], + uri: 'i10283665777', + accessMessage: [ + { + label: 'USE IN LIBRARY', + id: 'accessMessage:1' + } + ], + catalogItemType: [ + { + id: 'catalogItemType:2', + label: 'book non-circ' + } + ], + deliveryLocation_packed: [ + 'loc:sc||Schomburg Center' + ], + owner: [ + { + label: 'Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division', + id: 'orgs:1114' + } + ], + deliveryLocation: [ + { + label: 'Schomburg Center', + id: 'loc:sc' + } + ], + identifier: [ + 'urn:barcode:32101071572406777' + ], + requestable: [ + true + ], + owner_packed: [ + 'orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division' + ], + status: [ + { + label: 'Not Available', + id: 'status:na' + } + ], + holdingLocation: [ + { + label: 'Schomburg Center - Research & Reference', + id: 'loc:scff2' + } + ], + status_packed: [ + 'status:na||Not Available' + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' + } + ], + status_packed: [ + 'status:na||Not Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i10283664', + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:na', + label: 'Not available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:1000546836' + ], + holdingLocation_packed: [ + 'loc:rc2ma||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:rc2ma' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i102836649', + recapCustomerCode: [], + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:rc2ma||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance', + id: 'loc:dya0f' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + deliveryLocation: [ + { + id: 'loc:mala', + label: 'SASB - Allen Scholar Room' + } + ], + deliveryLocation_packed: [ + 'loc:mala||SASB - Allen Scholar Room' + ], + uri: 'i102836659', + recapCustomerCode: [], + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:dya0f||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + }, + { + holdingLocation: [ + { + label: 'OFFSITE - Request in Advance (unrequestable location)', + id: 'loc:rcpd8' + } + ], + status_packed: [ + 'status:a||Available' + ], + owner: [ + { + id: 'orgs:1000', + label: 'Stephen A. Schwarzman Building' + } + ], + uri: 'i102836649-unrequestable', + accessMessage_packed: [ + 'accessMessage:2||ADV REQUEST' + ], + accessMessage: [ + { + id: 'accessMessage:2', + label: 'ADV REQUEST' + } + ], + status: [ + { + id: 'status:a', + label: 'Available' + } + ], + owner_packed: [ + 'orgs:1000||Stephen A. Schwarzman Building' + ], + requestable: [ + false + ], + identifier: [ + 'urn:barcode:10005468369' + ], + holdingLocation_packed: [ + 'loc:rcpd8||OFFSITE - Request in Advance' + ], + shelfMark: [ + '*OFC 90-2649 2' + ], + suppressed: [ + false + ] + } + ], + message: 'ResourceSerializer#serialize', + materialType_packed: [ + 'resourcetypes:txt||Text' + ], + suppressed: [ + 'false' + ], + placeOfPublication: [ + 'New York :' + ], + dateEndString: [ + '1984' + ], + title_sort: [ + 'the thief and the dogs' + ], + uris: [ + 'b11293188', + 'b11293188-i22566485', + 'b11293188-i22566489', + 'b11293188-i10283665', + 'b11293188-i10283664' + ], + language: [ + { + id: 'lang:eng', + label: 'English' + } + ], + dateString: [ + '1989' + ], + identifier: [ + 'urn:bnum:11293188', + 'urn:oclc:12248278', + 'urn:lcc:PJ7846.A46', + 'urn:lccCoarse:PJ7695.8-7976' + ], + publisher: [ + 'Doubleday,' + ], + type: [ + 'nypl:Item' + ], + createdYear: [ + 1989 + ], + contributor_sort: [ + 'badawī, muḥammad muṣṭafá.' + ], + materialType: [ + { + id: 'resourcetypes:txt', + label: 'Text' + } + ], + numAvailable: [ + 2 + ], + dimensions: [ + '22 cm.' + ], + carrierType_packed: [ + 'carriertypes:nc||volume' + ], + note: [ + 'Translation of: al-Liṣṣ wa-al-kilāb.' + ], + dateStartYear: [ + 1989 + ], + shelfMark: [ + '*OFC 90-2649' + ], + idOwi: [ + 'urn:owi:58201773' + ], + mediaType: [ + { + label: 'unmediated', + id: 'mediatypes:n' + } + ], + title: [ + 'The thief and the dogs', + 'The thief and the dogs /' + ], + titleAlt: [ + 'Liṣṣ wa-al-kilāb.' + ], + language_packed: [ + 'lang:eng||English' + ], + mediaType_packed: [ + 'mediatypes:n||unmediated' + ], + titleDisplay: [ + 'The thief and the dogs / Naguib Mahfouz ; translated by Trevor Le Gassick, M.M. Badawi ; revised by John Rodenbeck.' + ], + uri: 'b11293188', + extent: [ + '158 p. ;' + ], + carrierType: [ + { + id: 'carriertypes:nc', + label: 'volume' + } + ], + issuance_packed: [ + 'urn:biblevel:m||monograph/item' + ], + contributorLiteral: [ + 'Badawī, Muḥammad Muṣṭafá.', + 'Le Gassick, Trevor.', + 'Rodenbeck, John.' + ], + dateEndYear: [ + 1984 + ] + }, + _type: 'resource', + _index: 'resources-2017-06-13', + _score: 154.93451 + } + ] + }, + timed_out: false + } +} + +exports.fakeElasticSearchResponseCulItem = () => { + return { + _shards: { + failed: 0, + successful: 1, + total: 1 + }, + took: 1, + hits: { + total: 1, + max_score: 1.3862944, + hits: [ + { + _type: 'resource', + _id: 'cb1000077', + _source: { + extent: [ + 'iii, 332 leaves, bound.' + ], + note: [ + { + noteType: 'Thesis', + label: 'Thesis (Ph. D.)--Columbia University, 1989.', + type: 'bf:Note' + }, + { + noteType: 'Bibliography', + label: 'Includes bibliographical references (leaves 314-332).', + type: 'bf:Note' + } + ], + language: [ + { + label: 'English', + id: 'lang:eng' + } + ], + createdYear: [ + 1989 + ], + title: [ + 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' + ], + type: [ + 'nypl:Item' + ], + createdString: [ + '1989' + ], + creatorLiteral: [ + 'Cappetti, Carla Sofia.' + ], + materialType_packed: [ + 'resourcetypes:txt||Text' + ], + language_packed: [ + 'lang:eng||English' + ], + dateStartYear: [ + 1989 + ], + identifierV2: [ + { + type: 'nypl:Bnumber', + value: '1000077' + } + ], + carrierType_packed: [ + 'carriertypes:nc||volume' + ], + creator_sort: [ + 'cappetti, carla sofia.' + ], + issuance_packed: [ + 'urn:biblevel:m||monograph/item' + ], + updatedAt: 1523471203726, + publicationStatement: [ + '1989.' + ], + mediaType_packed: [ + 'mediatypes:n||unmediated' + ], + identifier: [ + 'urn:bnum:1000077' + ], + materialType: [ + { + label: 'Text', + id: 'resourcetypes:txt' + } + ], + carrierType: [ + { + label: 'volume', + id: 'carriertypes:nc' + } + ], + dateString: [ + '1989' + ], + title_sort: [ + 'urbanism as a way of writing : chicago urban sociology and chicago urban literat' + ], + mediaType: [ + { + label: 'unmediated', + id: 'mediatypes:n' + } + ], + titleDisplay: [ + 'Urbanism as a way of writing : Chicago urban sociology and Chicago urban literature, 1915-1945 / Carla Sofia Cappetti.' + ], + uri: 'cb1000077', + numItems: [ + 1 + ], + numAvailable: [ + 1 + ], + uris: [ + 'cb1000077', + 'cb1000077-ci1455504' + ], + issuance: [ + { + label: 'monograph/item', + id: 'urn:biblevel:m' + } + ], + items: [ + { + owner: [ + { + label: 'Columbia University Libraries', + id: 'orgs:0002' + } + ], + accessMessage_packed: [ + 'accessMessage:1||Use in library' + ], + identifier: [ + 'urn:barcode:1000020117' + ], + catalogItemType_packed: [ + 'catalogItemType:1||non-circ' + ], + accessMessage: [ + { + label: 'Use in library', + id: 'accessMessage:1' + } + ], + status_packed: [ + 'status:a||Available ' + ], + shelfMark: [ + 'LD1237.5D 1989 .C166' + ], + uri: 'ci1455504', + recapCustomerCode: [], + identifierV2: [ + { + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166' + }, + { + type: 'bf:Barcode', + value: '1000020117' + } + ], + idBarcode: [ + '1000020117' + ], + owner_packed: [ + 'orgs:0002||Columbia University Libraries' + ], + requestable: [ + true + ], + catalogItemType: [ + { + label: 'non-circ', + id: 'catalogItemType:1' + } + ], + status: [ + { + label: 'Available ', + id: 'status:a' + } + ] + }, + { + owner: [ + { + label: 'Columbia University Libraries', + id: 'orgs:0002' + } + ], + accessMessage_packed: [ + 'accessMessage:1||Use in library' + ], + identifier: [ + 'urn:barcode:10000201179999' + ], + catalogItemType_packed: [ + 'catalogItemType:1||non-circ' + ], + accessMessage: [ + { + label: 'Use in library', + id: 'accessMessage:1' + } + ], + status_packed: [ + 'status:a||Available ' + ], + shelfMark: [ + 'LD1237.5D 1989 .C166 9999' + ], + uri: 'ci14555049999', + identifierV2: [ + { + type: 'bf:ShelfMark', + value: 'LD1237.5D 1989 .C166 9999' + }, + { + type: 'bf:Barcode', + value: '10000201179999' + } + ], + idBarcode: [ + '10000201179999' + ], + owner_packed: [ + 'orgs:0002||Columbia University Libraries' + ], + requestable: [ + true + ], + catalogItemType: [ + { + label: 'non-circ', + id: 'catalogItemType:1' + } + ], + status: [ + { + label: 'Available ', + id: 'status:a' + } + ] + } + ] + } + } + ] + } + } +} diff --git a/test/fixtures/query-0ac2d4be36677658e58b21fac9368305.json b/test/fixtures/query-0ac2d4be36677658e58b21fac9368305.json deleted file mode 100644 index 770eea7a..00000000 --- a/test/fixtures/query-0ac2d4be36677658e58b21fac9368305.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "body": { - "took": 30, - "timed_out": false, - "_shards": { - "total": 3, - "successful": 3, - "failed": 0 - }, - "hits": { - "total": 0, - "max_score": null, - "hits": [] - } - }, - "statusCode": 200 -} \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-1f8ce439dff513362111cf43901b9f10.json b/test/fixtures/scsb-by-barcode-1f8ce439dff513362111cf43901b9f10.json deleted file mode 100644 index 768707ea..00000000 --- a/test/fixtures/scsb-by-barcode-1f8ce439dff513362111cf43901b9f10.json +++ /dev/null @@ -1,22 +0,0 @@ -[ - { - "itemBarcode": "33433088646033", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433096425198", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433088646041", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433097964930", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json b/test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json deleted file mode 100644 index 81aa0cef..00000000 --- a/test/fixtures/scsb-by-barcode-4a86f5100c2412aa6c747b6a4980a8b8.json +++ /dev/null @@ -1,502 +0,0 @@ -[ - { - "itemBarcode": "33433136742412", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742438", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742420", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742404", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033313", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033339", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033297", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033305", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033321", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119872095", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119872087", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611091", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611075", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099610945", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611109", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611083", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099610952", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611133", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611117", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611141", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611125", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099612925", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611174", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611190", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611182", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611166", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064214", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064172", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063976", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063950", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064008", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063992", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064198", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063968", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064206", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064180", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063943", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063984", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240583", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240542", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240567", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240559", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240575", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240500", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240534", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240492", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240518", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240526", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240484", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080028222", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078508037", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240468", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240476", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240419", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240435", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240450", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240401", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240427", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240443", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240351", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240377", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240393", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240344", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240369", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240385", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240310", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240336", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240302", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433079991612", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240328", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080426707", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240278", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078639105", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240294", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240286", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240260", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240237", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240229", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240252", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240245", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240211", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240195", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078660671", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240203", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080030616", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658113", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658105", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433081121117", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078530031", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658063", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658097", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078626128", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658071", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658089", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240187", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658030", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658055", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240179", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658022", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078658048", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json b/test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json deleted file mode 100644 index 6c9ad16c..00000000 --- a/test/fixtures/scsb-by-barcode-4eb3fad2438146c7e687a865179ebc89.json +++ /dev/null @@ -1,502 +0,0 @@ -[ - { - "itemBarcode": "33433076133762", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133770", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133788", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133796", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133804", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133812", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133820", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133838", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133846", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133853", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133861", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133879", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133887", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133895", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133903", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133911", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133929", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133937", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133945", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133952", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133960", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133978", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133986", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076133994", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134000", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134018", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134026", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134034", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134042", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134059", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134067", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134075", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134083", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134091", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134109", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134117", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134125", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134133", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134141", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134158", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134166", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134174", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134182", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134190", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134208", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134216", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134224", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134232", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134240", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134257", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134265", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134273", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134281", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134299", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134307", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134315", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134323", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134331", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134349", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134356", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134364", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134372", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134380", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134398", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134406", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134414", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134422", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134430", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134448", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134455", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134463", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134471", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134489", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134497", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134505", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134513", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134521", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134539", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134547", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134554", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134562", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134570", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134588", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134596", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134604", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134612", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134620", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134638", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134646", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134653", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134661", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134679", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134687", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134695", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134703", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134711", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134729", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134737", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134745", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433076134752", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-68ce5c58a3564375af1881bf50830494.json b/test/fixtures/scsb-by-barcode-68ce5c58a3564375af1881bf50830494.json deleted file mode 100644 index e07b5de6..00000000 --- a/test/fixtures/scsb-by-barcode-68ce5c58a3564375af1881bf50830494.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433103848853", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json b/test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json deleted file mode 100644 index f1227a68..00000000 --- a/test/fixtures/scsb-by-barcode-6d9bc4ccfec5900d645ec91611d139ee.json +++ /dev/null @@ -1,502 +0,0 @@ -[ - { - "itemBarcode": "33433136742412", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742438", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742420", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433136742404", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033313", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033339", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033297", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033305", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433130033321", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433128200973", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128200965", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128201302", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128201310", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433128201161", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121911097", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121911246", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121911105", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433121911253", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119892333", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119872103", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119872095", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433119855561", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119892341", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119892317", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119855579", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433119872087", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433114102084", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - }, - { - "itemBarcode": "33433114101987", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433114102134", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762741", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433114102043", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762733", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762717", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762725", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762691", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433110762709", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433108528377", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433108528401", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433108528385", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433108528393", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433099611091", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611075", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099610945", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611109", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611083", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099610952", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611133", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611117", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611141", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611125", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099612925", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611174", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611190", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611182", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433099611166", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064214", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064172", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063976", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063950", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064008", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063992", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064198", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063968", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064206", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085064180", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063943", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433085063984", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240583", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240542", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240567", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240559", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240575", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240500", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240534", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240492", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240518", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240526", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240484", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080028222", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433078508037", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240468", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240476", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240419", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240435", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240450", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240401", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240427", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240443", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240351", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240377", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240393", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240344", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240369", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240385", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240310", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240336", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240302", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433079991612", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433084240328", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433080426707", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-920faf2b789b32c7661692d9155560ff.json b/test/fixtures/scsb-by-barcode-920faf2b789b32c7661692d9155560ff.json deleted file mode 100644 index d71c5e24..00000000 --- a/test/fixtures/scsb-by-barcode-920faf2b789b32c7661692d9155560ff.json +++ /dev/null @@ -1,22 +0,0 @@ -[ - { - "itemBarcode": "33433057532339", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067332555", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, - { - "itemBarcode": "33433057532081", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433067332548", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-9ca059b8418a8cc7ed13bafc739bffd4.json b/test/fixtures/scsb-by-barcode-9ca059b8418a8cc7ed13bafc739bffd4.json deleted file mode 100644 index 17e5c037..00000000 --- a/test/fixtures/scsb-by-barcode-9ca059b8418a8cc7ed13bafc739bffd4.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433001892276", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-a522b2198195ab55442d41136a902254.json b/test/fixtures/scsb-by-barcode-a522b2198195ab55442d41136a902254.json deleted file mode 100644 index c73122a1..00000000 --- a/test/fixtures/scsb-by-barcode-a522b2198195ab55442d41136a902254.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433080108636", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-aa04b0e8383fc73d48d88403eea37e2c.json b/test/fixtures/scsb-by-barcode-aa04b0e8383fc73d48d88403eea37e2c.json deleted file mode 100644 index e14999ce..00000000 --- a/test/fixtures/scsb-by-barcode-aa04b0e8383fc73d48d88403eea37e2c.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "HS65164695", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-b4ab79b5bce17604bea7d6e8569a05d0.json b/test/fixtures/scsb-by-barcode-b4ab79b5bce17604bea7d6e8569a05d0.json deleted file mode 100644 index 188722c4..00000000 --- a/test/fixtures/scsb-by-barcode-b4ab79b5bce17604bea7d6e8569a05d0.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433102812199", - "itemAvailabilityStatus": "Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-d9e8022a9e991935d867b23b15546742.json b/test/fixtures/scsb-by-barcode-d9e8022a9e991935d867b23b15546742.json deleted file mode 100644 index 5690b73e..00000000 --- a/test/fixtures/scsb-by-barcode-d9e8022a9e991935d867b23b15546742.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "itemBarcode": "33433065651741", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433060936147", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json b/test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json deleted file mode 100644 index 9f5df717..00000000 --- a/test/fixtures/scsb-by-barcode-de2b279b21a808f0b0ca151f03968031.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "itemBarcode": "33433035187214", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433015873411", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - }, - { - "itemBarcode": "33433034124614", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-f7449c752a123dd05ff2d438b7def61e.json b/test/fixtures/scsb-by-barcode-f7449c752a123dd05ff2d438b7def61e.json deleted file mode 100644 index 4057146e..00000000 --- a/test/fixtures/scsb-by-barcode-f7449c752a123dd05ff2d438b7def61e.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433097964930", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json b/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json deleted file mode 100644 index 3041df63..00000000 --- a/test/fixtures/scsb-by-barcode-ff5b8e7ea9a28bf4a8c8409597bbf6df.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "itemBarcode": "33433114102084", - "itemAvailabilityStatus": "Not Available", - "errorMessage": null - } -] \ No newline at end of file diff --git a/test/location_label_updater.test.js b/test/location_label_updater.test.js index c9576596..f7495075 100644 --- a/test/location_label_updater.test.js +++ b/test/location_label_updater.test.js @@ -10,7 +10,7 @@ describe('Location LabelUpdater', function () { _id: 'b10980129', _source: { items: [{ - holdingLocation: [{ id: 'mai87', label: 'Some disgusting room' }] + holdingLocation: [{ id: 'mai82', label: 'Some disgusting room' }] }] } }] @@ -18,7 +18,7 @@ describe('Location LabelUpdater', function () { } const updatedResponse = new LocationLabelUpdater(fakeESResponse).responseWithUpdatedLabels() - expect(updatedResponse.hits.hits[0]._source.items[0].holdingLocation[0].label).to.equal('Schwarzman Building - Periodicals and Microforms Room 119') + expect(updatedResponse.hits.hits[0]._source.items[0].holdingLocation[0].label).to.equal('Schwarzman Building - Microforms Room 315') }) it('will overwrite an ElasticSearch Response\'s holdings record location label', function () { diff --git a/test/requestability_resolver.test.js b/test/requestability_resolver.test.js index 0a348373..ccd50855 100644 --- a/test/requestability_resolver.test.js +++ b/test/requestability_resolver.test.js @@ -3,6 +3,7 @@ const elasticSearchResponse = require('./fixtures/elastic_search_response.js') const specRequestableElasticSearchResponse = require('./fixtures/specRequestable-es-response') const eddElasticSearchResponse = require('./fixtures/edd_elastic_search_response') const noBarcodeResponse = require('./fixtures/no_barcode_es_response') +const noRecapResponse = require('./fixtures/no_recap_response') describe('RequestabilityResolver', () => { describe('fixItemRequestability', function () { @@ -203,4 +204,22 @@ describe('RequestabilityResolver', () => { expect(nonEddItem.eddRequestable).to.equal(false) }) }) + + describe('Missing recapCustomerCode', function () { + const response = noRecapResponse.fakeElasticSearchResponseNyplItem() + const resolved = RequestabilityResolver.fixItemRequestability(response) + it('marks edd and physical requestability correctly', function () { + const items = resolved.hits.hits[0]._source.items + const firstItem = items.find((item) => { + return item.uri === 'i102836649' + }) + const secondItem = items.find((item) => { + return item.uri === 'i102836659' + }) + expect(firstItem.physRequestable).to.equal(true) + expect(firstItem.eddRequestable).to.equal(true) + expect(secondItem.physRequestable).to.equal(false) + expect(secondItem.eddRequestable).to.equal(false) + }) + }) }) From 040a5281672bdcfaf665a11c15093c5a2d6fc5e0 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 15 Jul 2024 16:51:28 -0400 Subject: [PATCH 41/51] Reestablish production-node20 branch w/out es-tuning --- .github/workflows/test-and-deploy.yml | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 0027f500..90746116 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -50,3 +50,37 @@ jobs: - name: Force ECS Update run: | aws ecs update-service --cluster discovery-api-qa --service discovery-api-qa --force-new-deployment + deploy-production: + permissions: + id-token: write + contents: read + runs-on: ubuntu-latest + needs: tests + if: github.ref == 'refs/heads/production-node20' + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + role-to-assume: arn:aws:iam::946183545209:role/GithubActionsDeployerRole + aws-region: us-east-1 + + - name: Log in to ECR + id: login-ecr + uses: aws-actions/amazon-ecr-login@v1 + + - name: Build, tag, and push image to Amazon ECR + env: + ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} + ECR_REPOSITORY: discovery-api + IMAGE_TAG: ${{ github.sha }} + run: | + docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . + docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG + docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:production-latest + docker push $ECR_REGISTRY/$ECR_REPOSITORY:production-latest + - name: Force ECS Update + run: | + aws ecs update-service --cluster discovery-api-production --service discovery-api-production --force-new-deployment From 68ec38040cffa4633b7c2ac97ef5fd5d5101adde Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 15 Jul 2024 16:52:31 -0400 Subject: [PATCH 42/51] Trivial --- lib/es-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/es-client.js b/lib/es-client.js index 09c239cd..7dd4b618 100644 --- a/lib/es-client.js +++ b/lib/es-client.js @@ -19,7 +19,7 @@ clientWrapper.esClient = function () { port, auth: { username, password } } - logger.debug(`Connecting to ES at ${host}:${port} ${username && password ? 'with creds' : 'w/out creds'}`) + logger.info(`Connecting to ES at ${host}:${port} ${username && password ? 'with creds' : 'w/out creds'}`) this._esClient = new elasticsearch.Client(options) } return this._esClient From 884a9b2901ef5e0420f69e845ef774424ad0ca2d Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 19 Jul 2024 20:58:50 -0400 Subject: [PATCH 43/51] Fix bug looking up customer code --- lib/delivery-locations-resolver.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 78ee2bf4..86ac983d 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -138,10 +138,11 @@ class DeliveryLocationsResolver { const ellapsed = ((new Date()) - __startAll) logger.debug({ message: `HTC searchByParam API across ${barcodes.length} barcodes took ${ellapsed}ms total`, metric: 'searchByParam-barcode-multiple', timeMs: ellapsed }) - // Filter out anything `undefined` and make sure at least one is valid: - const validPairs = [{}].concat(scsbResponses.filter((r) => r)) - // Merge array of hashes into one big lookup hash: - return Object.assign.apply(null, validPairs) + // Build barcode-customerCode map: + return barcodes.reduce((h, barcode, ind) => { + if (scsbResponses[ind]) h[barcode] = scsbResponses[ind] + return h + }, {}) }) } From dbfb6f06e6a1f928f34d97caf9d3f4583d47afb7 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 19 Jul 2024 21:11:44 -0400 Subject: [PATCH 44/51] Use nypl-core 2.19 --- config/production.env | 2 +- config/qa.env | 2 +- package-lock.json | 133 +++++++++++++++++++++++++++++++++++++++++- package.json | 2 + 4 files changed, 134 insertions(+), 5 deletions(-) diff --git a/config/production.env b/config/production.env index 3803c575..5e68b96a 100644 --- a/config/production.env +++ b/config/production.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.14 +NYPL_CORE_VERSION=v2.19 LOG_LEVEL=info FEATURES=on-site-edd diff --git a/config/qa.env b/config/qa.env index 848e89ee..cca09a9e 100644 --- a/config/qa.env +++ b/config/qa.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.14 +NYPL_CORE_VERSION=v2.19 LOG_LEVEL=debug FEATURES=on-site-edd diff --git a/package-lock.json b/package-lock.json index bcce3e8d..2fd9bdb3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,6 +23,8 @@ "axios": "^0.27.2", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", + "csv-parse": "^5.5.6", + "git-diff": "^2.0.6", "md5": "^2.2.1", "minimist": "^1.2.5", "mocha": "^10.3.0", @@ -2514,15 +2516,21 @@ "integrity": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==" }, "node_modules/csv-parse": { - "version": "4.16.3", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz", - "integrity": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" + "version": "5.5.6", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", + "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==", + "dev": true }, "node_modules/csv-stringify": { "version": "5.6.5", "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.6.5.tgz", "integrity": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==" }, + "node_modules/csv/node_modules/csv-parse": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz", + "integrity": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==" + }, "node_modules/cycle": { "version": "1.0.3", "engines": { @@ -3959,6 +3967,78 @@ "assert-plus": "^1.0.0" } }, + "node_modules/git-diff": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/git-diff/-/git-diff-2.0.6.tgz", + "integrity": "sha512-/Iu4prUrydE3Pb3lCBMbcSNIf81tgGt0W1ZwknnyF62t3tHmtiJTRj0f+1ZIhp3+Rh0ktz1pJVoa7ZXUCskivA==", + "dev": true, + "dependencies": { + "chalk": "^2.3.2", + "diff": "^3.5.0", + "loglevel": "^1.6.1", + "shelljs": "^0.8.1", + "shelljs.exec": "^1.1.7" + }, + "engines": { + "node": ">= 4.8.0" + } + }, + "node_modules/git-diff/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-diff/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-diff/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/git-diff/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-diff/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/glob": { "version": "7.2.3", "dev": true, @@ -4259,6 +4339,15 @@ "node": ">= 0.4" } }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/ipaddr.js": { "version": "1.9.1", "license": "MIT", @@ -5918,6 +6007,18 @@ "node": ">=8.10.0" } }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/reflect.getprototypeof": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", @@ -6299,6 +6400,32 @@ "node": ">=8" } }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shelljs.exec": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/shelljs.exec/-/shelljs.exec-1.1.8.tgz", + "integrity": "sha512-vFILCw+lzUtiwBAHV8/Ex8JsFjelFMdhONIsgKNLgTzeRckp2AOYRQtHJE/9LhNvdMmE27AGtzWx0+DHpwIwSw==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/should": { "version": "7.1.1", "dev": true, diff --git a/package.json b/package.json index e550d726..c9a8523c 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,8 @@ "axios": "^0.27.2", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", + "csv-parse": "^5.5.6", + "git-diff": "^2.0.6", "md5": "^2.2.1", "minimist": "^1.2.5", "mocha": "^10.3.0", From 6fddf67a05a7a1770fb27f36df498bd4c133fcb8 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 22 Jul 2024 10:55:21 -0400 Subject: [PATCH 45/51] Debug nypl-core issue --- lib/delivery-locations-resolver.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 86ac983d..51381140 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -1,6 +1,7 @@ const { itemHasRecapHoldingLocation, barcodeFromItem } = require('./util') const scsbClient = require('./scsb-client') const recapCustomerCodes = require('@nypl/nypl-core-objects')('by-recap-customer-code') +console.log('Using nypl-core version: ', process.env.NYPL_CORE_VERSION ? process.env.NYPL_CORE_VERSION : 'master') const sierraLocations = require('@nypl/nypl-core-objects')('by-sierra-location') const logger = require('./logger') const onsiteEddCriteria = require('../data/onsite-edd-criteria.json') @@ -50,6 +51,7 @@ class DeliveryLocationsResolver { // Fetch Sierra delivery locations by recap code static deliveryLocationsByRecapCustomerCode (customerCode) { + console.log('deliveryLocationsByRecapCustomerCode: ' + customerCode) if (recapCustomerCodes[customerCode] && recapCustomerCodes[customerCode].sierraDeliveryLocations) { return recapCustomerCodes[customerCode].sierraDeliveryLocations } From 5e6c36c43c66b752dc0cdd9ef94ce9b89cf55b3f Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 22 Jul 2024 11:07:50 -0400 Subject: [PATCH 46/51] Override env vars set by stale task definitions --- lib/load-config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/load-config.js b/lib/load-config.js index 4db11668..10941372 100644 --- a/lib/load-config.js +++ b/lib/load-config.js @@ -13,8 +13,9 @@ module.exports.loadConfig = async () => { : 'production' const envPath = `config/${env}.env` - // Load env vars: - dotenv.config({ path: envPath }) + // Load env vars + // Override any env vars that are already set (e.g. by ECS task definition) + dotenv.config({ path: envPath, override: true }) // Now that we've loaded env vars, which may include LOG_LEVEL, instantiate logger: logger.setLevel(process.env.LOG_LEVEL) From 2eab70e87f0527c22ba8b486413db287e53374d8 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 22 Jul 2024 11:17:17 -0400 Subject: [PATCH 47/51] Remove debugging logs --- lib/delivery-locations-resolver.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/delivery-locations-resolver.js b/lib/delivery-locations-resolver.js index 51381140..86ac983d 100644 --- a/lib/delivery-locations-resolver.js +++ b/lib/delivery-locations-resolver.js @@ -1,7 +1,6 @@ const { itemHasRecapHoldingLocation, barcodeFromItem } = require('./util') const scsbClient = require('./scsb-client') const recapCustomerCodes = require('@nypl/nypl-core-objects')('by-recap-customer-code') -console.log('Using nypl-core version: ', process.env.NYPL_CORE_VERSION ? process.env.NYPL_CORE_VERSION : 'master') const sierraLocations = require('@nypl/nypl-core-objects')('by-sierra-location') const logger = require('./logger') const onsiteEddCriteria = require('../data/onsite-edd-criteria.json') @@ -51,7 +50,6 @@ class DeliveryLocationsResolver { // Fetch Sierra delivery locations by recap code static deliveryLocationsByRecapCustomerCode (customerCode) { - console.log('deliveryLocationsByRecapCustomerCode: ' + customerCode) if (recapCustomerCodes[customerCode] && recapCustomerCodes[customerCode].sierraDeliveryLocations) { return recapCustomerCodes[customerCode].sierraDeliveryLocations } From b1c35247d842020017dbe88839e640b10ea90b38 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Mon, 22 Jul 2024 11:53:58 -0400 Subject: [PATCH 48/51] Update packages --- package-lock.json | 289 +++++++++++++++++++++++++--------------------- package.json | 4 +- test/fixtures.js | 6 +- 3 files changed, 164 insertions(+), 135 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2fd9bdb3..97897610 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,8 +12,8 @@ "@aws-sdk/client-kms": "^3.533.0", "@elastic/elasticsearch": "~7.12.0", "@nypl/nypl-core-objects": "2.3.2", - "@nypl/nypl-data-api-client": "^1.0.5", - "@nypl/scsb-rest-client": "2.0.0", + "@nypl/nypl-data-api-client": "^2.0.0", + "@nypl/scsb-rest-client": "3.0.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^16.4.5", "express": "^4.18.3", @@ -642,13 +642,6 @@ "tslib": "^2.3.1" } }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "license": "MIT", - "engines": { - "node": ">=0.1.90" - } - }, "node_modules/@dabh/diagnostics": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", @@ -951,44 +944,62 @@ "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" }, "node_modules/@nypl/nypl-data-api-client": { - "version": "1.0.5", - "license": "ISC", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@nypl/nypl-data-api-client/-/nypl-data-api-client-2.0.0.tgz", + "integrity": "sha512-bvo96Gx4BbtcTCyJFXnL5K5n9Qvm3qpVBHz+XcNyBZs04M5UK1mhoQ8my1a9Fu7ZgJqCWYjEtM8KdneqmsdxUg==", "dependencies": { - "avsc": "^5.0.2", - "colors": "^1.1.2", + "@nypl/nypl-core-objects": "^3.0.0", + "avsc": "^5.7.7", "diff": "^3.5.0", - "dotenv": "^4.0.0", - "loglevel": "^1.4.1", + "dotenv": "^16.4.5", + "loglevel": "^1.9.1", "loglevel-plugin-prefix": "^0.5.3", - "minimist": "^1.2.5", - "node-cache": "^4.1.1", - "oauth": "^0.9.15", - "prompt": "^1.0.0", - "request": "^2.88.2" + "minimist": "^1.2.8", + "node-cache": "^5.1.2", + "oauth": "^0.10.0" }, "bin": { "nypl-data-api": "bin/nypl-data-api.js" } }, - "node_modules/@nypl/nypl-data-api-client/node_modules/colors": { - "version": "1.4.0", - "license": "MIT", - "engines": { - "node": ">=0.1.90" + "node_modules/@nypl/nypl-data-api-client/node_modules/@nypl/nypl-core-objects": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@nypl/nypl-core-objects/-/nypl-core-objects-3.0.0.tgz", + "integrity": "sha512-chFXev9uMpL0mU+y5BTvC2/4mOwhXNicTVfIqnasAqNWbOClEHhS/fIPod/q1TjdkD5jqbTlMVxsW/JjE3UjFg==", + "dependencies": { + "axios": "^1.6.8", + "csv": "^5.3.2", + "csv-stringify": "^5.6.0", + "just-flatten": "^1.0.0" } }, - "node_modules/@nypl/nypl-data-api-client/node_modules/dotenv": { + "node_modules/@nypl/nypl-data-api-client/node_modules/axios": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/@nypl/nypl-data-api-client/node_modules/form-data": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz", - "integrity": "sha512-XcaMACOr3JMVcEv0Y/iUM2XaOsATRZ3U1In41/1jjK6vJZ2PZbQ1bzCG8uvaByfaBpl9gqc9QWJovpUGBXLLYQ==", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=4.6.0" + "node": ">= 6" } }, "node_modules/@nypl/scsb-rest-client": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@nypl/scsb-rest-client/-/scsb-rest-client-2.0.0.tgz", - "integrity": "sha512-vR/cPtltT9D4O5vEp8qyaSOSTCwhRhBdOBg7R/w/0eFdc4J85MO22LwLY/VQnLwYhH1Py7vSPX1ZEQuiMBJkug==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@nypl/scsb-rest-client/-/scsb-rest-client-3.0.0.tgz", + "integrity": "sha512-7EhOir8p97MGH7G5sj4Ery2M+zaON7sSs4VZzcIOs9ZBEYPCnvba2nZg/B5dBBDdVVAa+4R6AlnQpXESGhVwjw==", "dependencies": { "axios": "^0.27.2", "axios-concurrency": "^1.0.4" @@ -1646,6 +1657,7 @@ }, "node_modules/ajv": { "version": "6.12.6", + "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -1907,14 +1919,18 @@ }, "node_modules/asn1": { "version": "0.2.6", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert-plus": { "version": "1.0.0", + "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=0.8" } @@ -1971,14 +1987,18 @@ }, "node_modules/aws-sign2": { "version": "0.7.0", + "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.12.0", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/axios": { "version": "0.27.2", @@ -2023,7 +2043,9 @@ }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", + "dev": true, "license": "BSD-3-Clause", + "peer": true, "dependencies": { "tweetnacl": "^0.14.3" } @@ -2097,12 +2119,12 @@ } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -2326,7 +2348,8 @@ }, "node_modules/clone": { "version": "2.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", "engines": { "node": ">=0.8" } @@ -2445,8 +2468,9 @@ } }, "node_modules/cookie": { - "version": "0.5.0", - "license": "MIT", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "engines": { "node": ">= 0.6" } @@ -2539,7 +2563,9 @@ }, "node_modules/dashdash": { "version": "1.14.1", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "assert-plus": "^1.0.0" }, @@ -2707,7 +2733,9 @@ }, "node_modules/ecc-jsbn": { "version": "0.1.2", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" @@ -3552,16 +3580,16 @@ } }, "node_modules/express": { - "version": "4.18.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.3.tgz", - "integrity": "sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw==", + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -3625,14 +3653,18 @@ }, "node_modules/extend": { "version": "3.0.2", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/extsprintf": { "version": "1.3.0", + "dev": true, "engines": [ "node >=0.6.0" ], - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/eyes": { "version": "0.1.8", @@ -3642,10 +3674,12 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", + "dev": true, "license": "MIT" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", + "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { @@ -3702,9 +3736,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" @@ -3775,9 +3809,9 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "funding": [ { "type": "individual", @@ -3803,7 +3837,9 @@ }, "node_modules/forever-agent": { "version": "0.6.1", + "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": "*" } @@ -3962,7 +3998,9 @@ }, "node_modules/getpass": { "version": "0.1.7", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "assert-plus": "^1.0.0" } @@ -4123,14 +4161,18 @@ }, "node_modules/har-schema": { "version": "2.0.0", + "dev": true, "license": "ISC", + "peer": true, "engines": { "node": ">=4" } }, "node_modules/har-validator": { "version": "5.1.5", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" @@ -4256,7 +4298,9 @@ }, "node_modules/http-signature": { "version": "1.2.0", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", @@ -4689,7 +4733,9 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/is-unicode-supported": { "version": "0.1.0", @@ -4788,7 +4834,9 @@ }, "node_modules/jsbn": { "version": "0.1.1", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/json-buffer": { "version": "3.0.1", @@ -4804,10 +4852,13 @@ }, "node_modules/json-schema": { "version": "0.4.0", - "license": "(AFL-2.1 OR BSD-3-Clause)" + "dev": true, + "license": "(AFL-2.1 OR BSD-3-Clause)", + "peer": true }, "node_modules/json-schema-traverse": { "version": "0.4.1", + "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { @@ -4818,7 +4869,9 @@ }, "node_modules/json-stringify-safe": { "version": "5.0.1", - "license": "ISC" + "dev": true, + "license": "ISC", + "peer": true }, "node_modules/json5": { "version": "1.0.2", @@ -4834,7 +4887,9 @@ }, "node_modules/jsprim": { "version": "1.4.2", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -5009,8 +5064,9 @@ } }, "node_modules/loglevel": { - "version": "1.8.1", - "license": "MIT", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz", + "integrity": "sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==", "engines": { "node": ">= 0.6.0" }, @@ -5329,10 +5385,6 @@ "version": "2.1.3", "license": "MIT" }, - "node_modules/mute-stream": { - "version": "0.0.8", - "license": "ISC" - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -5366,14 +5418,14 @@ "dev": true }, "node_modules/node-cache": { - "version": "4.2.1", - "license": "MIT", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz", + "integrity": "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==", "dependencies": { - "clone": "2.x", - "lodash": "^4.17.15" + "clone": "2.x" }, "engines": { - "node": ">= 0.4.6" + "node": ">= 8.0.0" } }, "node_modules/normalize-path": { @@ -5386,12 +5438,15 @@ } }, "node_modules/oauth": { - "version": "0.9.15", - "license": "MIT" + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/oauth/-/oauth-0.10.0.tgz", + "integrity": "sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q==" }, "node_modules/oauth-sign": { "version": "0.9.0", + "dev": true, "license": "Apache-2.0", + "peer": true, "engines": { "node": "*" } @@ -5656,7 +5711,9 @@ }, "node_modules/performance-now": { "version": "2.1.0", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/pg": { "version": "7.4.3", @@ -5819,48 +5876,6 @@ "asap": "~2.0.3" } }, - "node_modules/prompt": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "@colors/colors": "1.5.0", - "async": "3.2.3", - "read": "1.0.x", - "revalidator": "0.1.x", - "winston": "2.x" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/prompt/node_modules/async": { - "version": "3.2.3", - "license": "MIT" - }, - "node_modules/prompt/node_modules/winston": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz", - "integrity": "sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==", - "dependencies": { - "async": "^2.6.4", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/prompt/node_modules/winston/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dependencies": { - "lodash": "^4.17.14" - } - }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", @@ -5883,8 +5898,14 @@ "node": ">= 0.10" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "node_modules/psl": { "version": "1.9.0", + "dev": true, "license": "MIT" }, "node_modules/pump": { @@ -5898,6 +5919,7 @@ }, "node_modules/punycode": { "version": "2.3.0", + "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -5972,16 +5994,6 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, - "node_modules/read": { - "version": "1.0.7", - "license": "ISC", - "dependencies": { - "mute-stream": "~0.0.4" - }, - "engines": { - "node": ">=0.8" - } - }, "node_modules/readable-stream": { "version": "2.3.8", "license": "MIT", @@ -6073,7 +6085,9 @@ "node_modules/request": { "version": "2.88.2", "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -6133,11 +6147,15 @@ }, "node_modules/request/node_modules/caseless": { "version": "0.12.0", - "license": "Apache-2.0" + "dev": true, + "license": "Apache-2.0", + "peer": true }, "node_modules/request/node_modules/qs": { "version": "6.5.3", + "dev": true, "license": "BSD-3-Clause", + "peer": true, "engines": { "node": ">=0.6" } @@ -6187,13 +6205,6 @@ "node": ">=0.10.0" } }, - "node_modules/revalidator": { - "version": "0.1.8", - "license": "Apache 2.0", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", @@ -6526,7 +6537,9 @@ }, "node_modules/sshpk": { "version": "1.17.0", + "dev": true, "license": "MIT", + "peer": true, "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -6854,6 +6867,7 @@ }, "node_modules/tough-cookie": { "version": "2.5.0", + "dev": true, "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.28", @@ -6890,7 +6904,9 @@ }, "node_modules/tunnel-agent": { "version": "0.6.0", + "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "safe-buffer": "^5.0.1" }, @@ -6900,7 +6916,9 @@ }, "node_modules/tweetnacl": { "version": "0.14.5", - "license": "Unlicense" + "dev": true, + "license": "Unlicense", + "peer": true }, "node_modules/type-check": { "version": "0.4.0", @@ -7046,6 +7064,7 @@ }, "node_modules/uri-js": { "version": "4.4.1", + "dev": true, "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" @@ -7065,7 +7084,9 @@ "node_modules/uuid": { "version": "3.4.0", "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, "license": "MIT", + "peer": true, "bin": { "uuid": "bin/uuid" } @@ -7079,10 +7100,12 @@ }, "node_modules/verror": { "version": "1.10.0", + "dev": true, "engines": [ "node >=0.6.0" ], "license": "MIT", + "peer": true, "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -7091,7 +7114,9 @@ }, "node_modules/verror/node_modules/core-util-is": { "version": "1.0.2", - "license": "MIT" + "dev": true, + "license": "MIT", + "peer": true }, "node_modules/version-guard": { "version": "1.1.1", diff --git a/package.json b/package.json index c9a8523c..2344e0c9 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "@aws-sdk/client-kms": "^3.533.0", "@elastic/elasticsearch": "~7.12.0", "@nypl/nypl-core-objects": "2.3.2", - "@nypl/nypl-data-api-client": "^1.0.5", - "@nypl/scsb-rest-client": "2.0.0", + "@nypl/nypl-data-api-client": "^2.0.0", + "@nypl/scsb-rest-client": "3.0.0", "discovery-store-models": "git+https://github.com/NYPL-discovery/discovery-store-models.git#v1.3.2", "dotenv": "^16.4.5", "express": "^4.18.3", diff --git a/test/fixtures.js b/test/fixtures.js index a7af4164..bacc2afa 100644 --- a/test/fixtures.js +++ b/test/fixtures.js @@ -281,7 +281,11 @@ function enableDataApiFixtures (pathToFixtureMap) { const requestPath = new url.URL(requestOptions.uri).pathname.replace('/api/v0.1/', '') if (pathToFixtureMap[requestPath]) { const content = fs.readFileSync(path.join('./test/fixtures/', pathToFixtureMap[requestPath]), 'utf8') - return Promise.resolve(JSON.parse(content)) + // The data-api-client uses `fetch`, so emulate a Response object: + return Promise.resolve({ + json: () => Promise.resolve(JSON.parse(content)), + body: content + }) } throw new Error('No fixture for ' + requestPath) From 73bb5dae7a2ce2a85e03ff7caa4a2de4137bf459 Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Fri, 2 Aug 2024 21:26:25 -0400 Subject: [PATCH 49/51] Add missing fixture --- .../query-6ba55bf03f545e4ed0d50a48c55c94b9.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/fixtures/query-6ba55bf03f545e4ed0d50a48c55c94b9.json diff --git a/test/fixtures/query-6ba55bf03f545e4ed0d50a48c55c94b9.json b/test/fixtures/query-6ba55bf03f545e4ed0d50a48c55c94b9.json new file mode 100644 index 00000000..11d3decf --- /dev/null +++ b/test/fixtures/query-6ba55bf03f545e4ed0d50a48c55c94b9.json @@ -0,0 +1,17 @@ +{ + "body": { + "took": 21, + "timed_out": false, + "_shards": { + "total": 3, + "successful": 3, + "failed": 0 + }, + "hits": { + "total": 0, + "max_score": null, + "hits": [] + } + }, + "statusCode": 200 +} \ No newline at end of file From 7035d6046d60bd1d57448d80b563c23b6f9f405a Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 8 Aug 2024 11:23:38 -0400 Subject: [PATCH 50/51] Update CI/CD for qa, qa2, and production ECS deployments --- .github/workflows/test-and-deploy.yml | 39 +++++++++++++++++++++++++-- README.md | 7 +++++ 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 90746116..a755389f 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -21,7 +21,7 @@ jobs: contents: read runs-on: ubuntu-latest needs: tests - if: github.ref == 'refs/heads/qa-node20' + if: github.ref == 'refs/heads/qa' steps: - name: Checkout repo uses: actions/checkout@v3 @@ -50,13 +50,48 @@ jobs: - name: Force ECS Update run: | aws ecs update-service --cluster discovery-api-qa --service discovery-api-qa --force-new-deployment + deploy-qa2: + permissions: + id-token: write + contents: read + runs-on: ubuntu-latest + needs: tests + if: github.ref == 'refs/heads/qa2' + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + role-to-assume: arn:aws:iam::946183545209:role/GithubActionsDeployerRole + aws-region: us-east-1 + + - name: Log in to ECR + id: login-ecr + uses: aws-actions/amazon-ecr-login@v1 + + - name: Build, tag, and push image to Amazon ECR + env: + ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} + ECR_REPOSITORY: discovery-api + IMAGE_TAG: ${{ github.sha }} + run: | + docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . + docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG + docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:qa2-latest + docker push $ECR_REGISTRY/$ECR_REPOSITORY:qa2-latest + + - name: Force ECS Update + run: | + aws ecs update-service --cluster discovery-api-qa2 --service discovery-api-qa2 --force-new-deployment deploy-production: permissions: id-token: write contents: read runs-on: ubuntu-latest needs: tests - if: github.ref == 'refs/heads/production-node20' + if: github.ref == 'refs/heads/production' steps: - name: Checkout repo uses: actions/checkout@v3 diff --git a/README.md b/README.md index 275d3063..23dbcb45 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,13 @@ This app uses a [PRs Target Main, Merge to Deployment Branches](https://github.c 1. Confirm app deploys to QA and run appropriate testing 1. Merge `main` > `production` +### Deploying + +App deploys through [GH Actions](./.github/workflows/test-and-deploy.yml) to ECS when updates are made to deployment branches: + - `qa`: discovery-api-qa.nypl.org + - `qa2`: discovery-api-qa2.nypl.org + - `production`: discovery-api-production.nypl.org + ## Testing Run all tests: From c1ba363d9b0cfeea8308ca937e57e07ba74ece7e Mon Sep 17 00:00:00 2001 From: Paul Beaudoin Date: Thu, 8 Aug 2024 13:28:11 -0400 Subject: [PATCH 51/51] Update to latest NYPL-core --- config/production.env | 2 +- config/qa.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/production.env b/config/production.env index 5e68b96a..5ef68a24 100644 --- a/config/production.env +++ b/config/production.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.19 +NYPL_CORE_VERSION=v2.20 LOG_LEVEL=info FEATURES=on-site-edd diff --git a/config/qa.env b/config/qa.env index cca09a9e..1c4723b2 100644 --- a/config/qa.env +++ b/config/qa.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.19 +NYPL_CORE_VERSION=v2.20 LOG_LEVEL=debug FEATURES=on-site-edd